From cb8e044d761507fbc7263c225ab695b9650fcdb9 Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Fri, 13 May 2022 13:01:31 +0300 Subject: [PATCH 01/13] RED-4036 - improved report service performance, added some logs --- redaction-report-service-image-v1/pom.xml | 4 +- redaction-report-service-v1/pom.xml | 2 +- .../pom.xml | 4 +- .../v1/server/model/MultiFileDocument.java | 8 +- .../v1/server/model/MultiFileWorkbook.java | 1 + .../v1/server/model/PlaceholderModel.java | 20 ++ .../ExcelTemplateReportGenerationService.java | 82 ++------ .../service/GeneratePlaceholderService.java | 95 ++++++++++ .../service/ReportGenerationService.java | 111 +++++++---- .../service/WordReportGenerationService.java | 178 +++++------------- .../RedactionReportIntegrationTest.java | 59 +++--- 11 files changed, 287 insertions(+), 277 deletions(-) create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java diff --git a/redaction-report-service-image-v1/pom.xml b/redaction-report-service-image-v1/pom.xml index b114f2a..67fcb73 100644 --- a/redaction-report-service-image-v1/pom.xml +++ b/redaction-report-service-image-v1/pom.xml @@ -5,7 +5,7 @@ com.iqser.red platform-docker-dependency - 1.1.0 + 1.2.0 4.0.0 @@ -41,7 +41,7 @@ docker-maven-plugin - + diff --git a/redaction-report-service-v1/pom.xml b/redaction-report-service-v1/pom.xml index 3bf35d7..7bd3ccf 100644 --- a/redaction-report-service-v1/pom.xml +++ b/redaction-report-service-v1/pom.xml @@ -27,7 +27,7 @@ com.iqser.red platform-commons-dependency - 1.11.0 + 1.13.0 import pom diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml b/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml index 888cc17..7d2a881 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml +++ b/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml @@ -14,8 +14,8 @@ 1.0-SNAPSHOT - 1.160.0 - 3.108.0 + 1.169.0 + 3.109.0 diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java index 4d81a54..96d4341 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java @@ -1,13 +1,8 @@ package com.iqser.red.service.redaction.report.v1.server.model; -import java.util.List; - -import org.apache.poi.xwpf.usermodel.XWPFDocument; - -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; - import lombok.AllArgsConstructor; import lombok.Data; +import org.apache.poi.xwpf.usermodel.XWPFDocument; @Data @AllArgsConstructor @@ -15,5 +10,6 @@ public class MultiFileDocument { private XWPFDocument document; private String templateId; + private String templateName; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java index 6b9f01f..e874193 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java @@ -10,5 +10,6 @@ public class MultiFileWorkbook { private XSSFWorkbook workbook; private String templateId; + private String templateName; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java new file mode 100644 index 0000000..51b3ea9 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java @@ -0,0 +1,20 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + + +import lombok.AllArgsConstructor; +import lombok.Data; + +import java.util.List; +import java.util.Map; + +@Data +@AllArgsConstructor +public class PlaceholderModel { + + private List placeholders; + private List imagePlaceholders; + private Map dossierAttributesPlaceholder; + private Map fileAttributePlaceHolders; + + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index fdd2c0f..5cfc643 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -37,6 +37,7 @@ import java.util.regex.Pattern; import javax.imageio.ImageIO; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.ClientAnchor; import org.apache.poi.ss.usermodel.CreationHelper; @@ -67,94 +68,40 @@ import lombok.extern.slf4j.Slf4j; @RequiredArgsConstructor public class ExcelTemplateReportGenerationService { - private final DossierAttributesClient dossierAttributesClient; - private final DossierAttributesConfigClient dossierAttributesConfigClient; - private final FileAttributesConfigClient fileAttributesClient; - - - public void generateReport(List reportEntries, String dossierTemplateId, + public void generateReport(List reportEntries, + PlaceholderModel placeholderModel, + String reportTemplateName, XSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile) { - List placeholders = getDefaultPlaceholders(); - List imagePlaceholders = new ArrayList<>(); - - var dossierAttributes = dossierAttributesClient.getDossierAttributes(dossier.getId()); - var dossierAttributesConfig = dossierAttributesConfigClient.getDossierAttributes(dossierTemplateId); - - Map dossierAttributesPlaceholder = new HashMap<>(); //KEY:placeholder, VALUE:value - - for (DossierAttributeConfig attributeConfig : dossierAttributesConfig) { - for (DossierAttribute dossierAttribute : dossierAttributes) { - if (dossierAttribute.getDossierAttributeConfigId().equals(attributeConfig.getId())) { - if (attributeConfig.getType().equals(DossierAttributeType.IMAGE)) { - - if (dossierAttribute.getValue() != null) { - if (dossierAttribute.getValue().startsWith("data:")) { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() - .decode(dossierAttribute.getValue().split(",")[1]))); - } else { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() - .decode(dossierAttribute.getValue()))); - } - } - } else { - if (dossierAttribute.getValue() == null) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } else { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), dossierAttribute.getValue()); - } - } - } - } - if (!dossierAttributesPlaceholder.containsKey(attributeConfig.getPlaceholder())) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } - } - - Map fileAttributePlaceholders = getFileAttributePlaceholders(dossierTemplateId); - placeholders.addAll(fileAttributePlaceholders.keySet()); - placeholders.addAll(dossierAttributesPlaceholder.keySet()); + long start = System.currentTimeMillis(); try { for (Sheet sheet : workbook) { addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile); - for (ImagePlaceholder imagePlaceholder : imagePlaceholders) { + for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); } - for (String placeholder : placeholders) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, fileAttributePlaceholders, dossierAttributesPlaceholder); + for (String placeholder : placeholderModel.getPlaceholders()) { + String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder()); if (placeholderValue != null) { replacePlaceholdersForTextPlaceholder(sheet, placeholder, placeholderValue); } } } - } catch (IOException e) { - throw new RuntimeException(e); + + long end = System.currentTimeMillis(); + + log.info("Report Generation took: {} for file with id {}, pageCount: {}, redactionLogEntryCount: {}, reportName: {}, className: {}", end - start, + fileStatus.getId(), fileStatus.getNumberOfPages(), reportEntries.size(), reportTemplateName, getClass().getSimpleName()); + } catch (Exception e) { throw new RuntimeException(e); } } - private List getDefaultPlaceholders() { - List defPlaceholders = new ArrayList<>(); - defPlaceholders.addAll(Arrays.asList(FILE_NAME_PLACEHOLDER, FORMAT_DATE_ISO_PLACEHOLDER, FORMAT_DATE_GER_PLACEHOLDER, FORMAT_DATE_ENG_PLACEHOLDER, FORMAT_TIME_ISO_PLACEHOLDER, DOSSIER_NAME_PLACEHOLDER)); - return defPlaceholders; - } - - - private Map getFileAttributePlaceholders(String dossierTemplateId) { - - Map fileAttributePlaceholders = new HashMap<>(); - - var fileAttributesConfig = fileAttributesClient.getFileAttributeConfigs(dossierTemplateId); - fileAttributesConfig.forEach(fileAttributeConfig -> { - fileAttributePlaceholders.put(fileAttributeConfig.getPlaceholder(), fileAttributeConfig.getId()); - }); - return fileAttributePlaceholders; - } private void addEntryRows(Sheet sheet, List reportEntries, String filename, @@ -386,4 +333,5 @@ public class ExcelTemplateReportGenerationService { } } + } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java new file mode 100644 index 0000000..2ce0e68 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java @@ -0,0 +1,95 @@ +package com.iqser.red.service.redaction.report.v1.server.service; + +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttributeType; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; +import lombok.RequiredArgsConstructor; +import org.springframework.stereotype.Service; + +import java.util.*; + +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.*; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.DOSSIER_NAME_PLACEHOLDER; + +@Service +@RequiredArgsConstructor +public class GeneratePlaceholderService { + + private final FileAttributesConfigClient fileAttributesClient; + private final DossierAttributesClient dossierAttributesClient; + private final DossierAttributesConfigClient dossierAttributesConfigClient; + + + public PlaceholderModel buildPlaceholders(Dossier dossier){ + + + var dossierAttributes = dossierAttributesClient.getDossierAttributes(dossier.getId()); + var dossierAttributesConfig = dossierAttributesConfigClient.getDossierAttributes(dossier.getDossierTemplateId()); + var fileAttributePlaceHolders = getFileAttributePlaceholders(dossier.getDossierTemplateId()); + + List placeholders = getDefaultPlaceholders(); + List imagePlaceholders = new ArrayList<>(); + + + Map dossierAttributesPlaceholder = new HashMap<>(); //KEY:placeholder, VALUE:value + + for (DossierAttributeConfig attributeConfig : dossierAttributesConfig) { + for (DossierAttribute dossierAttribute : dossierAttributes) { + if (dossierAttribute.getDossierAttributeConfigId().equals(attributeConfig.getId())) { + if (attributeConfig.getType().equals(DossierAttributeType.IMAGE)) { + + if (dossierAttribute.getValue() != null) { + if (dossierAttribute.getValue().startsWith("data:")) { + imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() + .decode(dossierAttribute.getValue().split(",")[1]))); + } else { + imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder().decode(dossierAttribute.getValue()))); + } + } + } else { + if (dossierAttribute.getValue() == null) { + dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); + } else { + dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), dossierAttribute.getValue()); + } + } + } + } + if (!dossierAttributesPlaceholder.containsKey(attributeConfig.getPlaceholder())) { + dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); + } + } + + placeholders.addAll(fileAttributePlaceHolders.keySet()); + placeholders.addAll(dossierAttributesPlaceholder.keySet()); + + return new PlaceholderModel(placeholders,imagePlaceholders,dossierAttributesPlaceholder,fileAttributePlaceHolders); + } + + + private List getDefaultPlaceholders() { + + List defPlaceholders = new ArrayList<>(); + defPlaceholders.addAll(Arrays.asList(FILE_NAME_PLACEHOLDER, FORMAT_DATE_ISO_PLACEHOLDER, FORMAT_DATE_GER_PLACEHOLDER, FORMAT_DATE_ENG_PLACEHOLDER, FORMAT_TIME_ISO_PLACEHOLDER, DOSSIER_NAME_PLACEHOLDER, IUCLID_FUNCTION_PLACEHOLDER, SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER, SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)); + return defPlaceholders; + } + + + + private Map getFileAttributePlaceholders(String dossierTemplateId) { + + Map fileAttributePlaceholders = new HashMap<>(); + + var fileAttributesConfig = fileAttributesClient.getFileAttributeConfigs(dossierTemplateId); + fileAttributesConfig.forEach(fileAttributeConfig -> { + fileAttributePlaceholders.put(fileAttributeConfig.getPlaceholder(), fileAttributeConfig.getId()); + }); + return fileAttributePlaceholders; + } +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 8a27c51..9a113f3 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -3,6 +3,7 @@ package com.iqser.red.service.redaction.report.v1.server.service; import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; import com.iqser.red.service.redaction.report.v1.api.model.ReportRequestMessage; import com.iqser.red.service.redaction.report.v1.api.model.ReportType; import com.iqser.red.service.redaction.report.v1.api.model.StoredFileInformation; @@ -12,6 +13,7 @@ import com.iqser.red.service.redaction.report.v1.server.client.RedactionLogClien import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateClient; import com.iqser.red.service.redaction.report.v1.server.model.MultiFileDocument; import com.iqser.red.service.redaction.report.v1.server.model.MultiFileWorkbook; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; import com.iqser.red.service.redaction.v1.model.ManualChange; @@ -22,13 +24,17 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import java.io.ByteArrayInputStream; import java.io.IOException; import java.util.ArrayList; +import java.util.Collections; import java.util.Iterator; import java.util.List; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; @Slf4j @Service @@ -43,13 +49,16 @@ public class ReportGenerationService { private final ReportTemplateClient reportTemplateClient; private final RedactionLogClient redactionLogClient; private final ExcelTemplateReportGenerationService excelTemplateReportGenerationService; + private final GeneratePlaceholderService generatePlaceholderService; + @Value("${redaction-report-service.numberOfReportGenerationThreads:4}") + private int numberOfReportGenerationThreads; public List generateReport(ReportRequestMessage reportMessage) { - List storedFileInformation = new ArrayList<>(); + List storedFileInformation = Collections.synchronizedList(new ArrayList<>()); - Dossier project = dossierClient.getDossierById(reportMessage.getDossierId(), true,false); + Dossier dossier = dossierClient.getDossierById(reportMessage.getDossierId(), true, false); List singleFilesTemplates = new ArrayList<>(); List multiFileWorkbooks = new ArrayList<>(); @@ -58,11 +67,11 @@ public class ReportGenerationService { try { ReportTemplate reportTemplate = reportTemplateClient.getReportTemplate(reportMessage.getDossierTemplateId(), templateId); if (reportTemplate.isMultiFileReport()) { - if(reportTemplate.getFileName().endsWith(".xlsx")) { + if (reportTemplate.getFileName().endsWith(".xlsx")) { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { XSSFWorkbook workbook = new XSSFWorkbook(is); - MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(workbook, templateId); + MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(workbook, templateId, reportTemplate.getFileName()); multiFileWorkbooks.add(multiFileWorkbook); } catch (IOException e) { throw new RuntimeException("Could not generate multifile excel report."); @@ -71,7 +80,7 @@ public class ReportGenerationService { byte[] wordTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(wordTemplate)) { XWPFDocument doc = new XWPFDocument(is); - MultiFileDocument multiFileDocument = new MultiFileDocument(doc, templateId); + MultiFileDocument multiFileDocument = new MultiFileDocument(doc, templateId, reportTemplate.getFileName()); multiFileDocuments.add(multiFileDocument); } catch (IOException e) { throw new RuntimeException("Could not generate multifile word report."); @@ -85,6 +94,9 @@ public class ReportGenerationService { } } + + var placeholderModel = generatePlaceholderService.buildPlaceholders(dossier); + int i = 1; for (int j = 0; j < reportMessage.getFileIds().size(); j++) { @@ -96,41 +108,30 @@ public class ReportGenerationService { List reportEntries = getReportEntries(reportMessage.getDossierId(), reportMessage.getFileIds() .get(j), fileStatus.isExcluded()); - for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { - excelTemplateReportGenerationService.generateReport(reportEntries, reportMessage.getDossierTemplateId(), multiFileWorkbook.getWorkbook(), fileStatus, project, j == reportMessage.getFileIds() - .size() - 1); - } + ExecutorService executor = Executors.newFixedThreadPool(numberOfReportGenerationThreads); + + var isLastFile = j == reportMessage.getFileIds() + .size() - 1; + + for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) + executor.submit(() -> excelTemplateReportGenerationService.generateReport(reportEntries, + placeholderModel, multiFileWorkbook.getTemplateName(), + multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile)); + for (MultiFileDocument multiFileDocument : multiFileDocuments) { - wordReportGenerationService.generateReport(ReportType.WORD_TEMPLATE_MULTI_FILE, reportEntries, reportMessage.getDossierTemplateId(), multiFileDocument.getDocument(), fileStatus, project, j == reportMessage.getFileIds() - .size() - 1); + executor.submit(() -> + wordReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileDocument.getTemplateName(), multiFileDocument.getDocument(), fileStatus, dossier, isLastFile) + ); } + for (ReportTemplate reportTemplate : singleFilesTemplates) { - if (reportTemplate.getFileName().endsWith(".xlsx")) { - byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); - try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { - XSSFWorkbook workbook = new XSSFWorkbook(is); - excelTemplateReportGenerationService.generateReport(reportEntries, reportMessage.getDossierTemplateId(), workbook, fileStatus, project, true); - byte[] template = excelTemplateReportGenerationService.toByteArray(workbook); - String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); - storedFileInformation.add(new StoredFileInformation(reportMessage.getFileIds() - .get(j), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId())); - } catch (IOException e) { - throw new RuntimeException("Could not generate singlefile excel report."); - } - } else { - byte[] wordTemplate= reportStorageService.getReportTemplate(reportTemplate.getStorageId()); - try (ByteArrayInputStream is = new ByteArrayInputStream(wordTemplate)) { - XWPFDocument doc = new XWPFDocument(is); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, reportMessage.getDossierTemplateId(), doc, fileStatus, project, true); - byte[] template = wordReportGenerationService.toByteArray(doc); - String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); - storedFileInformation.add(new StoredFileInformation(reportMessage.getFileIds().get(j), storageId, ReportType.WORD_SINGLE_FILE, reportTemplate.getTemplateId())); - } catch (IOException e) { - throw new RuntimeException("Could not generate singlefile word report."); - } - } + executor.submit(() -> + storedFileInformation.add(createReportFromTemplate(dossier, fileStatus, placeholderModel, reportTemplate.getFileName(), reportMessage.getDownloadId(), reportEntries, reportTemplate)) + ); } + executor.shutdown(); + long end = System.currentTimeMillis(); log.info("Successfully processed {}/{} fileIds for downloadId {}, took {}", i, reportMessage.getFileIds() .size(), reportMessage.getDownloadId(), end - start); @@ -146,13 +147,44 @@ public class ReportGenerationService { for (MultiFileDocument multiFileDocument : multiFileDocuments) { byte[] template = wordReportGenerationService.toByteArray(multiFileDocument.getDocument()); String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); - storedFileInformation.add(new StoredFileInformation( null, storageId, ReportType.WORD_TEMPLATE_MULTI_FILE, multiFileDocument.getTemplateId())); + storedFileInformation.add(new StoredFileInformation(null, storageId, ReportType.WORD_TEMPLATE_MULTI_FILE, multiFileDocument.getTemplateId())); } return storedFileInformation; } + private StoredFileInformation createReportFromTemplate(Dossier dossier, FileModel fileStatus, + PlaceholderModel placeholderModel, + String templateName, + String downloadId, + List reportEntries, ReportTemplate reportTemplate) { + if (reportTemplate.getFileName().endsWith(".xlsx")) { + byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); + try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { + XSSFWorkbook workbook = new XSSFWorkbook(is); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, workbook, fileStatus, dossier, true); + byte[] template = excelTemplateReportGenerationService.toByteArray(workbook); + String storageId = reportStorageService.storeObject(downloadId, template); + return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId()); + } catch (IOException e) { + throw new RuntimeException("Could not generate singlefile excel report."); + } + } else { + byte[] wordTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); + try (ByteArrayInputStream is = new ByteArrayInputStream(wordTemplate)) { + XWPFDocument doc = new XWPFDocument(is); + wordReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, doc, fileStatus, dossier, true); + byte[] template = wordReportGenerationService.toByteArray(doc); + String storageId = reportStorageService.storeObject(downloadId, template); + return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.WORD_SINGLE_FILE, reportTemplate.getTemplateId()); + } catch (IOException e) { + throw new RuntimeException("Could not generate singlefile word report."); + } + } + } + + private List getReportEntries(String dossierId, String fileId, boolean isExcluded) { if (isExcluded) { @@ -165,10 +197,10 @@ public class ReportGenerationService { //filter DECLINED redactions out, they should not be in reports Iterator iter = redactionLog.getRedactionLogEntry().iterator(); - while(iter.hasNext()) { + while (iter.hasNext()) { RedactionLogEntry redactionLogEntry = iter.next(); - for(ManualChange manualChange : redactionLogEntry.getManualChanges()) { - if(manualChange.getAnnotationStatus().equals(AnnotationStatus.DECLINED)) { + for (ManualChange manualChange : redactionLogEntry.getManualChanges()) { + if (manualChange.getAnnotationStatus().equals(AnnotationStatus.DECLINED)) { iter.remove(); } } @@ -181,4 +213,5 @@ public class ReportGenerationService { return redactionLogConverterService.convertAndSort(redactionLog, legalBasisMappings); } + } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java index 662981b..cebcf97 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java @@ -1,157 +1,83 @@ package com.iqser.red.service.redaction.report.v1.server.service; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.DOSSIER_NAME_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.EXCERPT_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FILE_NAME_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ENG; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ENG_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_GER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_GER_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.IUCLID_FUNCTION_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_PARAGRAPH_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_REASON_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_TEXT_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.PAGE_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.PARAGRAPH_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.REDACTION_VALUE_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; +import com.iqser.red.service.redaction.report.v1.server.model.ColoredText; +import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; +import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; +import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; +import org.apache.poi.openxml4j.exceptions.InvalidFormatException; +import org.apache.poi.util.Dimension2DDouble; +import org.apache.poi.util.Units; +import org.apache.poi.xwpf.usermodel.*; +import org.springframework.stereotype.Service; +import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Base64; -import java.util.Comparator; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.SortedSet; -import java.util.TreeSet; +import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; -import javax.imageio.ImageIO; - -import org.apache.commons.lang3.StringUtils; -import org.apache.poi.openxml4j.exceptions.InvalidFormatException; -import org.apache.poi.util.Dimension2DDouble; -import org.apache.poi.util.Units; -import org.apache.poi.xwpf.usermodel.XWPFDocument; -import org.apache.poi.xwpf.usermodel.XWPFParagraph; -import org.apache.poi.xwpf.usermodel.XWPFRun; -import org.apache.poi.xwpf.usermodel.XWPFTable; -import org.apache.poi.xwpf.usermodel.XWPFTableCell; -import org.apache.poi.xwpf.usermodel.XWPFTableRow; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRow; -import org.springframework.stereotype.Service; - -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttributeType; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; -import com.iqser.red.service.redaction.report.v1.api.model.ReportType; -import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; -import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; -import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; -import com.iqser.red.service.redaction.report.v1.server.model.ColoredText; -import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; -import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; -import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; - -import lombok.RequiredArgsConstructor; -import lombok.SneakyThrows; -import lombok.extern.slf4j.Slf4j; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.*; @Slf4j @Service @RequiredArgsConstructor public class WordReportGenerationService { - private final FileAttributesConfigClient fileAttributesClient; - private final DossierAttributesClient dossierAttributesClient; - private final DossierAttributesConfigClient dossierAttributesConfigClient; + private final IuclidFunctionService iuclidFunctionService; - public XWPFDocument generateReport(ReportType reportType, List reportEntries, String dossierTemplateId, XWPFDocument doc, FileModel fileStatus, - Dossier dossier, boolean isLastFile) { - - List placeholders = getDefaultPlaceholders(); - List imagePlaceholders = new ArrayList<>(); - - var dossierAttributes = dossierAttributesClient.getDossierAttributes(dossier.getId()); - var dossierAttributesConfig = dossierAttributesConfigClient.getDossierAttributes(dossierTemplateId); - - Map dossierAttributesPlaceholder = new HashMap<>(); //KEY:placeholder, VALUE:value - - for (DossierAttributeConfig attributeConfig : dossierAttributesConfig) { - for (DossierAttribute dossierAttribute : dossierAttributes) { - if (dossierAttribute.getDossierAttributeConfigId().equals(attributeConfig.getId())) { - if (attributeConfig.getType().equals(DossierAttributeType.IMAGE)) { - - if (dossierAttribute.getValue() != null) { - if (dossierAttribute.getValue().startsWith("data:")) { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() - .decode(dossierAttribute.getValue().split(",")[1]))); - } else { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder().decode(dossierAttribute.getValue()))); - } - } - } else { - if (dossierAttribute.getValue() == null) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } else { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), dossierAttribute.getValue()); - } - } - } - } - if (!dossierAttributesPlaceholder.containsKey(attributeConfig.getPlaceholder())) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } - } - - Map fileAttributePlaceholders = getFileAttributePlaceholders(dossierTemplateId); - placeholders.addAll(fileAttributePlaceholders.keySet()); - placeholders.addAll(dossierAttributesPlaceholder.keySet()); + public XWPFDocument generateReport(List reportEntries, + PlaceholderModel placeholderModel, + String reportTemplateName, + XWPFDocument doc, FileModel fileStatus, + Dossier dossier, boolean isLastFile) { + long start = System.currentTimeMillis(); try { - for (ImagePlaceholder imagePlaceholder : imagePlaceholders) { + for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()) { replaceImagePlaceholders(doc, imagePlaceholder); } XWPFTable table = getRedactionTable(doc); Map placeholderCellPos = computePlaceholderPos(table); - addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, fileAttributePlaceholders, placeholderCellPos); - for (String placeholder : placeholders) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, fileAttributePlaceholders, dossierAttributesPlaceholder, reportEntries); + addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderCellPos); + for (String placeholder : placeholderModel.getPlaceholders()) { + String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder(), reportEntries); if (placeholderValue != null) { replaceTextPlaceholders(doc, placeholder, placeholderValue); } } - if(!isLastFile) { + if (!isLastFile) { readdPlaceholders(table, placeholderCellPos); } + + + long end = System.currentTimeMillis(); + + log.info("Report Generation took: {} for file with id {}, pageCount: {}, redactionLogEntryCount: {}, reportName: {}, className: {}", end - start, + fileStatus.getId(), fileStatus.getNumberOfPages(), reportEntries.size(), reportTemplateName, getClass().getSimpleName()); + return doc; } catch (Exception e) { log.error(e.getMessage() + " in file: " + fileStatus.getFilename()); throw new RuntimeException(e); } + + } @@ -168,26 +94,6 @@ public class WordReportGenerationService { } - private List getDefaultPlaceholders() { - - List defPlaceholders = new ArrayList<>(); - defPlaceholders.addAll(Arrays.asList(FILE_NAME_PLACEHOLDER, FORMAT_DATE_ISO_PLACEHOLDER, FORMAT_DATE_GER_PLACEHOLDER, FORMAT_DATE_ENG_PLACEHOLDER, FORMAT_TIME_ISO_PLACEHOLDER, DOSSIER_NAME_PLACEHOLDER, IUCLID_FUNCTION_PLACEHOLDER, SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER, SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)); - return defPlaceholders; - } - - - private Map getFileAttributePlaceholders(String dossierTemplateId) { - - Map fileAttributePlaceholders = new HashMap<>(); - - var fileAttributesConfig = fileAttributesClient.getFileAttributeConfigs(dossierTemplateId); - fileAttributesConfig.forEach(fileAttributeConfig -> { - fileAttributePlaceholders.put(fileAttributeConfig.getPlaceholder(), fileAttributeConfig.getId()); - }); - return fileAttributePlaceholders; - } - - private String getPlaceholderValue(String placeholder, Dossier project, FileModel fileStatus, Map fileAttributePlaceholders, Map dossierAttributesPlaceholders, List reportRedactionEntries) { @@ -326,7 +232,7 @@ public class WordReportGenerationService { private Map computePlaceholderPos(XWPFTable table) { Map placeholderCellPos = new HashMap<>(); - if(table != null) { + if (table != null) { int placeholderRow = -1; for (int j = 0; j < table.getRows().size(); j++) { for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) { @@ -378,7 +284,7 @@ public class WordReportGenerationService { private void readdPlaceholders(XWPFTable table, Map placeholderCellPos) { XWPFTableRow newRow = table.createRow(); - for(int i = 0; i < table.getRow(0).getTableCells().size(); i++) { + for (int i = 0; i < table.getRow(0).getTableCells().size(); i++) { String placeholder = placeholderCellPos.get(i); setText(newRow.getCell(i), placeholder); } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index 16203b9..7d85564 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -12,7 +12,6 @@ import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.do import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileAttributeType; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.legalbasis.LegalBasis; -import com.iqser.red.service.redaction.report.v1.api.model.ReportType; import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; @@ -20,6 +19,7 @@ import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateCli import com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration; import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; import com.iqser.red.service.redaction.report.v1.server.service.ExcelTemplateReportGenerationService; +import com.iqser.red.service.redaction.report.v1.server.service.GeneratePlaceholderService; import com.iqser.red.service.redaction.report.v1.server.service.RedactionLogConverterService; import com.iqser.red.service.redaction.report.v1.server.service.WordReportGenerationService; import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; @@ -86,6 +86,9 @@ public class RedactionReportIntegrationTest { @Autowired private ExcelTemplateReportGenerationService excelTemplateReportGenerationService; + @Autowired + private GeneratePlaceholderService generatePlaceholderService; + @Test public void testWordReportGeneration() throws IOException { @@ -159,7 +162,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("FileABCD").fileAttributes(Map.of("3e9b9569-5d2e-4619-848b-dd0a3e96527f", "Test")).build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -170,8 +173,9 @@ public class RedactionReportIntegrationTest { ClassPathResource templateResource = new ClassPathResource("templates/Seeds - New Justification Form.docx"); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileStatus, project, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template_wrg.docx")) { @@ -226,8 +230,10 @@ public class RedactionReportIntegrationTest { .storageId(storageId) .build()); - excelTemplateReportGenerationService.generateReport(reportEntries, "dossierTemplateId", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook, fileModel2, dossier, true); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/test_report_excel_template.xlsx")) { @@ -281,7 +287,7 @@ public class RedactionReportIntegrationTest { FileModel fileModel = FileModel.builder().filename("filename").fileAttributes(attributeIdToValue).build(); FileModel fileModel2 = FileModel.builder().filename("other file").fileAttributes(attributeIdToValue).build(); - Dossier dossier = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); when(reportTemplateClient.getReportTemplate(dossierTemplateId, templateId)).thenReturn(ReportTemplate.builder() .dossierTemplateId(dossierTemplateId) @@ -290,15 +296,17 @@ public class RedactionReportIntegrationTest { ClassPathResource wordTemplateResource = new ClassPathResource("templates/Justification Appendix A1.docx"); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + XWPFDocument doc = new XWPFDocument(wordTemplateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileModel, dossier, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true); byte[] wordReport = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template1.docx")) { fileOutputStream.write(wordReport); } doc = new XWPFDocument(wordTemplateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries2, dossierTemplateId, doc, fileModel2, dossier, true); + wordReportGenerationService.generateReport(reportEntries2, placeholders, "test", doc, fileModel2, dossier, true); byte[] wordReport2 = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template2.docx")) { fileOutputStream.write(wordReport2); @@ -306,20 +314,20 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries, "dossierTemplateId", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook, fileModel2, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template.xlsx")) { fileOutputStream.write(excelTemplateReport); } XSSFWorkbook workbook2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries, "dossierTemplateId", workbook2, fileModel, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true); byte[] excelTemplateReport2 = excelTemplateReportGenerationService.toByteArray(workbook2); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template2.xlsx")) { fileOutputStream.write(excelTemplateReport2); } XSSFWorkbook workbook3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook3, fileModel2, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(workbook3); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template3.xlsx")) { fileOutputStream.write(excelTemplateReport3); @@ -368,7 +376,7 @@ public class RedactionReportIntegrationTest { attributeIdToValue.put("3e9b9569-5d2e-4619-848b-dd0a3e96527f", "Test"); FileModel fileModel = FileModel.builder().filename("filename").fileAttributes(attributeIdToValue).build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -378,9 +386,9 @@ public class RedactionReportIntegrationTest { .build()); ClassPathResource templateResource = new ClassPathResource("templates/6464 appendix_b EFSA dRAR justification.docx"); - + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileModel, project, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template13.docx")) { @@ -416,7 +424,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("VV123456").build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -434,9 +442,9 @@ public class RedactionReportIntegrationTest { .storageId("storageId") .uploadDate(OffsetDateTime.now()) .build(); - + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileStatus, project, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/iuclid_report_2.docx")) { @@ -490,7 +498,7 @@ public class RedactionReportIntegrationTest { FileModel fileModel = FileModel.builder().filename("filename").fileAttributes(attributeIdToValue).build(); FileModel fileModel2 = FileModel.builder().filename("other file").fileAttributes(attributeIdToValue).build(); - Dossier dossier = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); when(reportTemplateClient.getReportTemplate(dossierTemplateId, templateId)).thenReturn(ReportTemplate.builder() .dossierTemplateId(dossierTemplateId) @@ -499,8 +507,9 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(emptyReportEntries, "dossierTemplateId", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook, fileModel2, dossier, true); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_templateAAA.xlsx")) { fileOutputStream.write(excelTemplateReport); @@ -533,7 +542,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("VV123456").build(); FileModel fileStatus2 = FileModel.builder().filename("second file").build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -545,8 +554,10 @@ public class RedactionReportIntegrationTest { ClassPathResource templateResource = new ClassPathResource("templates/Seeds-NewJustificationForm.docx"); when(reportStorageService.getReportTemplate(storageId)).thenReturn(IOUtils.toByteArray(templateResource.getInputStream())); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - doc = wordReportGenerationService.generateReport(ReportType.WORD_TEMPLATE_MULTI_FILE, reportEntries, dossierTemplateId, doc, fileStatus, project, false); - doc = wordReportGenerationService.generateReport(ReportType.WORD_TEMPLATE_MULTI_FILE, reportEntries2, dossierTemplateId, doc, fileStatus2, project, true); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + + doc = wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, false); + doc = wordReportGenerationService.generateReport(reportEntries2, placeholders, "test", doc, fileStatus2, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/seedsReport.docx")) { From 81febade142d460a357de25215386cd4c4acebdc Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Fri, 13 May 2022 15:35:54 +0300 Subject: [PATCH 02/13] RED-4036 - improved report service performance, added some logs --- .../v1/server/model/PlaceholderInput.java | 9 + .../v1/server/model/TextPlaceholderInput.java | 13 ++ .../service/WordReportGenerationService.java | 195 ++++++++++-------- .../server/realdata/RealDataServiceTest.java | 132 ++++++++++++ .../realdata/Justification Appendix A2.docx | Bin 0 -> 90305 bytes .../resources/realdata/redaction-log.json | 1 + 6 files changed, 269 insertions(+), 81 deletions(-) create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/Justification Appendix A2.docx create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/redaction-log.json diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java new file mode 100644 index 0000000..34aef14 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java @@ -0,0 +1,9 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import java.util.List; +import java.util.Map; + +public interface PlaceholderInput { + + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java new file mode 100644 index 0000000..ee79c84 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java @@ -0,0 +1,13 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor +public class TextPlaceholderInput implements PlaceholderInput { + + private String filename; + private ReportRedactionEntry entry; + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java index cebcf97..a97b7c5 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java @@ -1,12 +1,8 @@ package com.iqser.red.service.redaction.report.v1.server.service; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; -import com.iqser.red.service.redaction.report.v1.server.model.ColoredText; -import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; -import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; -import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; +import com.iqser.red.service.redaction.report.v1.server.model.*; import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; @@ -24,6 +20,7 @@ import java.io.ByteArrayOutputStream; import java.io.IOException; import java.time.OffsetDateTime; import java.util.*; +import java.util.function.Function; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; @@ -52,19 +49,24 @@ public class WordReportGenerationService { for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()) { replaceImagePlaceholders(doc, imagePlaceholder); } + + long t1 = System.currentTimeMillis(); XWPFTable table = getRedactionTable(doc); - Map placeholderCellPos = computePlaceholderPos(table); - addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderCellPos); - for (String placeholder : placeholderModel.getPlaceholders()) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder(), reportEntries); - if (placeholderValue != null) { - replaceTextPlaceholders(doc, placeholder, placeholderValue); - } - } - if (!isLastFile) { - readdPlaceholders(table, placeholderCellPos); + var placeholderFunctions = computePlaceholderPos(table); + addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderFunctions); + long t2 = System.currentTimeMillis(); + log.warn("Table time: {}", (t2 - t1)); + + t1 = System.currentTimeMillis(); + replaceTextPlaceholders(doc, placeholderModel, dossier, fileStatus, table); + + if (isLastFile) { + removePlaceholdersRow(table); } + t2 = System.currentTimeMillis(); + log.warn("Text time: {}", (t2 - t1)); + long end = System.currentTimeMillis(); @@ -80,6 +82,18 @@ public class WordReportGenerationService { } + private void removePlaceholdersRow(XWPFTable table) { + for (int j = 0; j < table.getRows().size(); j++) { + for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) { + XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i); + if (containsRedactionPlaceholder(cell.getText())) { + table.removeRow(j); + return; + } + } + } + } + private void replaceImagePlaceholders(XWPFDocument doc, ImagePlaceholder imagePlaceholder) { @@ -157,53 +171,70 @@ public class WordReportGenerationService { } - public void replaceTextPlaceholders(XWPFDocument doc, String search, String replace) { + public void replaceTextPlaceholders(XWPFDocument doc, PlaceholderModel placeholderModel, Dossier dossier, FileModel fileModel, XWPFTable tableToSkip) { - replacePlaceholderInParagraph(doc.getParagraphs(), search, replace); + Map placeHolderValueMap = new HashMap<>(); + for (String placeholder : placeholderModel.getPlaceholders()) { + String placeholderValue = getPlaceholderValue(placeholder, dossier, fileModel, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder(), new ArrayList<>()); + placeHolderValueMap.put(placeholder, placeholderValue); + } + + replacePlaceholderInParagraph(doc.getParagraphs(), placeHolderValueMap); for (XWPFTable tbl : doc.getTables()) { + if (tableToSkip == tbl) { + // already processed for redactionLog Entries + continue; + } for (XWPFTableRow row : tbl.getRows()) { for (XWPFTableCell cell : row.getTableCells()) { - replacePlaceholderInParagraph(cell.getParagraphs(), search, replace); + replacePlaceholderInParagraph(cell.getParagraphs(), placeHolderValueMap); } } } } - private void replacePlaceholderInParagraph(List paragraphs, String search, String replace) { + private void replacePlaceholderInParagraph(List paragraphs, Map placeholderValueMap) { for (XWPFParagraph p : paragraphs) { String paragraphText = p.getText(); - if (paragraphText.contains(search)) { - String escapedSearch = Pattern.quote(search); - String escapedReplace = Matcher.quoteReplacement(replace); - try { - paragraphText = paragraphText.replaceAll(escapedSearch, escapedReplace); - XWPFRun run = p.getRuns().get(0); - run.setText(paragraphText, 0); - } catch (Exception e) { - log.error("Could not replace {} with {}", escapedSearch, escapedReplace); - throw new RuntimeException(String.format("Could not replace %s with %s", escapedSearch, escapedReplace), e); - } - int size = p.getRuns().size(); - for (int i = 1; i <= size; i++) { - // 0th run has to stay for placeholders without "\n", because it contains the value of the placeholder - p.removeRun(1); - } - if (paragraphText.contains("\n")) { - p.removeRun(0); - String[] stringsOnNewLines = paragraphText.split("\n"); - for (int i = 0; i < stringsOnNewLines.length; i++) { - p.insertNewRun(i); - XWPFRun newRun = p.getRuns().get(i); - String textForLine = stringsOnNewLines[i]; - ColoredText coloredText = getColor(textForLine); - newRun.setText(coloredText.getText()); - if (coloredText.getColor() != null) { - newRun.setTextHighlightColor(coloredText.getColor()); - } - newRun.addCarriageReturn(); + for (var entry : placeholderValueMap.entrySet()) { + + var search = entry.getKey(); + var replace = entry.getValue(); + + if (paragraphText.contains(search)) { + String escapedSearch = Pattern.quote(search); + String escapedReplace = Matcher.quoteReplacement(replace); + try { + paragraphText = paragraphText.replaceAll(escapedSearch, escapedReplace); + XWPFRun run = p.getRuns().get(0); + run.setText(paragraphText, 0); + } catch (Exception e) { + log.error("Could not replace {} with {}", escapedSearch, escapedReplace); + throw new RuntimeException(String.format("Could not replace %s with %s", escapedSearch, escapedReplace), e); + } + int size = p.getRuns().size(); + for (int i = 1; i <= size; i++) { + // 0th run has to stay for placeholders without "\n", because it contains the value of the placeholder + p.removeRun(1); + } + if (paragraphText.contains("\n")) { + p.removeRun(0); + String[] stringsOnNewLines = paragraphText.split("\n"); + for (int i = 0; i < stringsOnNewLines.length; i++) { + p.insertNewRun(i); + XWPFRun newRun = p.getRuns().get(i); + String textForLine = stringsOnNewLines[i]; + ColoredText coloredText = getColor(textForLine); + newRun.setText(coloredText.getText()); + if (coloredText.getColor() != null) { + newRun.setTextHighlightColor(coloredText.getColor()); + } + newRun.addCarriageReturn(); + + } } } } @@ -229,28 +260,30 @@ public class WordReportGenerationService { } - private Map computePlaceholderPos(XWPFTable table) { - Map placeholderCellPos = new HashMap<>(); + private Map> computePlaceholderPos(XWPFTable table) { + Map> placeholderCellPos = new HashMap<>(); if (table != null) { - int placeholderRow = -1; for (int j = 0; j < table.getRows().size(); j++) { for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) { XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i); if (containsRedactionPlaceholder(cell.getText())) { - placeholderCellPos.put(i, cell.getText()); - placeholderRow = j; + placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getText())); } else if (cell.getText().isEmpty()) { - placeholderCellPos.put(i, ""); + placeholderCellPos.put(i, (input) -> ""); } } } - table.removeRow(placeholderRow); } return placeholderCellPos; } - private void addTableRows(XWPFTable table, List reportEntries, String filename, FileModel fileStatus, Map fileAttributePlaceholders, Map placeholderCellPos) { + private void addTableRows(XWPFTable table, + List reportEntries, + String filename, + FileModel fileStatus, + Map fileAttributePlaceholders, + Map> placeholderCellPos) { if (table == null) { return; @@ -260,23 +293,22 @@ public class WordReportGenerationService { var redactionsPerJustification = getRedactionsPerJustification(reportEntries); for (Map.Entry> entry : redactionsPerJustification.entrySet()) { XWPFTableRow row = table.createRow(); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - if (!entry1.getValue().isEmpty()) { - setText(row.getCell(entry1.getKey()), replaceSeedsPlaceholder(entry, filename, entry1.getValue(), fileStatus, fileAttributePlaceholders)); - } else { - setText(row.getCell(entry1.getKey()), ""); - } - } +// for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { +// +// setText(row.getCell(entry1.getKey()), replaceSeedsPlaceholder(entry, filename, entry1.getValue(), fileStatus, fileAttributePlaceholders)); +// +// if (!entry1.getValue().isEmpty()) { +// +// } else { +// setText(row.getCell(entry1.getKey()), ""); +// } +// } } } else { reportEntries.forEach(entry -> { XWPFTableRow row = table.createRow(); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - if (!entry1.getValue().isEmpty()) { - setText(row.getCell(entry1.getKey()), replaceTextPlaceholderWithEntries(entry, filename, entry1.getValue())); - } else { - setText(row.getCell(entry1.getKey()), ""); - } + for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { + setText(row.getCell(entry1.getKey()), entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); } }); } @@ -291,39 +323,40 @@ public class WordReportGenerationService { } - private String replaceTextPlaceholderWithEntries(ReportRedactionEntry entry, String filename, String placeholder) { + private Function getFunctionForPlaceHolder(String placeholder) { if (placeholder.equals(FILE_NAME_PLACEHOLDER)) { - return filename; + return TextPlaceholderInput::getFilename; } if (placeholder.equals(PAGE_PLACEHOLDER)) { - return String.valueOf(entry.getPage()); + return (input) -> String.valueOf(input.getEntry().getPage()); } if (placeholder.equals(PARAGRAPH_PLACEHOLDER)) { - return entry.getSection(); + return (input) -> input.getEntry().getSection(); } if (placeholder.equals(JUSTIFICATION_PLACEHOLDER)) { - return entry.getJustification(); + return (input) -> input.getEntry().getJustification(); } if (placeholder.equals(JUSTIFICATION_PARAGRAPH_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_REASON_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_TEXT_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(EXCERPT_PLACEHOLDER)) { - return entry.getExcerpt(); + return (input) -> input.getEntry().getExcerpt(); } if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) { - return entry.getValue() != null ? entry.getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; + return (input) -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; } - throw new RuntimeException("invalid placeholder"); + // TODO in case placeholder is invalid -> do not replace with empty string but throw previus exception + return (input) -> ""; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java new file mode 100644 index 0000000..637e47b --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java @@ -0,0 +1,132 @@ +package com.iqser.red.service.redaction.report.v1.server.realdata; + + +import com.amazonaws.services.s3.AmazonS3; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttributeType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileAttributeConfig; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileAttributeType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.legalbasis.LegalBasis; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateClient; +import com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration; +import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; +import com.iqser.red.service.redaction.report.v1.server.service.ExcelTemplateReportGenerationService; +import com.iqser.red.service.redaction.report.v1.server.service.GeneratePlaceholderService; +import com.iqser.red.service.redaction.report.v1.server.service.RedactionLogConverterService; +import com.iqser.red.service.redaction.report.v1.server.service.WordReportGenerationService; +import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; +import com.iqser.red.service.redaction.v1.model.RedactionLog; +import com.iqser.red.storage.commons.service.StorageService; +import org.apache.commons.io.IOUtils; +import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.core.io.ClassPathResource; +import org.springframework.test.context.junit4.SpringRunner; + +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.Arrays; +import java.util.Base64; +import java.util.List; +import java.util.Map; + +import static com.iqser.red.service.redaction.report.v1.server.utils.OsUtils.getTemporaryDirectory; +import static org.mockito.Mockito.when; +import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT; + +@RunWith(SpringRunner.class) +@SpringBootTest(webEnvironment = RANDOM_PORT) +public class RealDataServiceTest { + + @Autowired + private ObjectMapper objectMapper; + + @MockBean + private StorageService storageService; + + @MockBean + private ReportStorageService reportStorageService; + + @MockBean + private ReportTemplateClient reportTemplateClient; + + @MockBean + private FileAttributesConfigClient fileAttributesConfigClient; + + @MockBean + private AmazonS3 s3Client; + + @Autowired + private WordReportGenerationService wordReportGenerationService; + + @MockBean + private MessagingConfiguration messagingConfiguration; + + @Autowired + private RedactionLogConverterService redactionLogConverterService; + + @MockBean + private DossierAttributesConfigClient dossierAttributesConfigClient; + + @MockBean + private DossierAttributesClient dossierAttributesClient; + + @Autowired + private ExcelTemplateReportGenerationService excelTemplateReportGenerationService; + + @Autowired + private GeneratePlaceholderService generatePlaceholderService; + + @Test + public void testWordReportGeneration() throws IOException { + + String dossierTemplateId = "dossierTemplateId"; + + ClassPathResource redactionLogResource = new ClassPathResource("realdata/redaction-log.json"); + + RedactionLog redactionLog = objectMapper.readValue(redactionLogResource.getInputStream(), RedactionLog.class); + + ClassPathResource legalBasisMappingResource = new ClassPathResource("files/legalBasisMapping.json"); + + List legalBasisMapping = objectMapper.readValue(legalBasisMappingResource.getInputStream(), new TypeReference<>() { + }); + + List reportEntries = redactionLogConverterService.convertAndSort(redactionLog, legalBasisMapping); + + + FileModel fileStatus = FileModel.builder().filename("FileABCD").fileAttributes(Map.of("3e9b9569-5d2e-4619-848b-dd0a3e96527f", "Test")).build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); + + String templateId = "templateId"; + String storageId = "storageId"; + when(reportTemplateClient.getReportTemplate(dossierTemplateId, templateId)).thenReturn(ReportTemplate.builder() + .dossierTemplateId(dossierTemplateId) + .storageId(storageId) + .build()); + + ClassPathResource templateResource = new ClassPathResource("realdata/Justification Appendix A2.docx"); + + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); + + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, true); + byte[] report = wordReportGenerationService.toByteArray(doc); + + try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template_wrg.docx")) { + fileOutputStream.write(report); + } + } +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/Justification Appendix A2.docx b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/Justification Appendix A2.docx new file mode 100644 index 0000000000000000000000000000000000000000..1cf176e67b8f59d036fdd5bf1b59d959b71fa1b5 GIT binary patch literal 90305 zcmeFY1CuRHw=LYZZQC|>+qP}nwsza*Zg=mtZQHhO-hR$|&x!Yb_r&)H&drEgE2`G4 zT9uV!&M`CRD0wMh5EK9~00;m8073veo*?{rKmdR|C;$Lt008*73B5Fm;?0H7cH|JVKpKY@vqaocqU1d(UZJ9wbx01T{|J;pcLDc|DqbU?C^}Ds>e&>_b3!U%|aD*JB$X! z`3)ewygI+dOI;)2$TE1Q@al2T^oG|UlZEA}%(w%&R7s6Gd=5mC1`K_+^WW{aVrDs>tGWat$}ZZ+pP2GQAle=J#llxBI-09Ju6O#1giW zp9l$KD5+E@B7L}qbG%xTA@CP>GUtV)qr)o(1fPPq`{gut3}2?dcn!*{$_Q*HQA>{y zUQn9s)&=f6m$}DffAa)%pu2`n5)EwNn~cnth8hkl2Hd_erXnjsh=>B?v1?}AK0G&= zYmCGpSmJwZ9TPK>H}D)smPFuZvg5;M)ZArFK62VT&_y(VR~|FpR|O}=YIFntckTj% zniSvh<4D3k)QJNC0qADuXiWbvpE0&GaNf=Th5?Yi5V$clcEId3IJVH`cTE8FL=dkmn=Rb-q(-{N6+?j=TtKgiiYsR96{fD(q6| zknKD^FoBIarb$g-lWS``44+1|SZCO{2Sp{sIMJxQo%)y{rool5F6R~$t3BY``r%lV7&wfy zn0UFJ%DOS+DR@A^^EE%1-5C)?vDiDaRJ z>yhZZE(_i}-4(BJ#IjIF&wL?AgmzX*5#K!Ib@l@Z`7vKp;SuQ+FeMB~aSpdb0t`Q$ zIRrLxyqBk(7HM!3fv{$Hu!`c|P*D<|eWRfGS|q}*Wk^B?ZgIvC<+_4kMbg40MMOnX z!zD#k+Pw2(Pa#Iw!4ZdKiL9t>;`-Kt#FgnSB_R%XI{zIozZVgUM=`#?hY`6+=>qA-ab2HFA{Wip?HqB@rz%FDNbz^%ks2;G+zxu>8Vr z^^_&zxPIFUJ|@+=y#M$}2pOKD8Ig4JtT+HI=HGb_+8i0@Nl?gTBkGbonP%{U60e`W z#+`G3xyUyd05RtIX1uQlV3zG$P2#--e-^m4o+52^J4IavX<5odKbfq^_p6Kj=9FU2 zEe(G{!|B2J*hS)r5%-|OaRpJJm68OwpD}9blFm{Yf%e zT?j4@%?X=zhuLW%+G~xKa-~KWJZtAe)bP3*yBB?0Ke6*?;CbgJY}9V0JKH!!*jR+tk|xJ~b$gE{mBGYArRQ06 zXFC*>HB}u}7AlZ4qFiC5oC|q2rX3%5icr-oHB!WM~5t7Dr4X)C}?&R8EXzH#9x5lZua6f>nC7p~5vUP5ekEb7^Mx zethS?k0Z@Se*Q%MO~W`8pG~n;v&qt;tytZhJb3(?MUxHYcj)#zdn$V_I7^yeo(*xo z#oYizA|lpQ80=J9%bvG>OZ#XH6q@B^Hl*d?s*G-uunafFNi$N!9TXEK&&jVvmbItJ zV3|VwcKN5BV=}=42}e%6g=V{w5SiCE*}Oara(rQh3s28;C1ORDxi8(_hIO>uiuA zs=y%`%@su@(hFT7N633OQ?Nl}LmwgP%k=6d|J5y{J;K@BRvZZjew~ zoO?LpH=L5xfr~;RlWrUkK@+I>45W6G%TJyGyRb?3Hc|{91X#~XVKs& z3Th0V_j~KvR2G2;H+I6GI`tt~m(dOm`P3{6moy8TBO;gA!Qs~%p|t3wQC3_&m(SVb z0Eb@L8yxt`WCF#*=Ck(2h9O;+K=qBgG4$u`vK_m!zQbM^!68!NMtjH&F`0KuX4fB3 z9im4P_YCS2mqFd_K7559pBT7-MNek;uxZ}6i)r7;9L&Y;ha!458w*T8g<=*NJbp3YpPsO;3(9tD0vF%yMC z&Srd4JXv)Rj6u*%p32>xK*CnZ*tB9rlNJR8M7(#lk8xbau{!fM;DDkHhFJN2T?Jjw zCJynujTC1l{29d+I#fqfjR6`4h&yJ@@1exRg0h=7vStb2X&D1neLV_~M2Ry{uXle+ zs`S7HeW^AmYQrgsZ?-|QL@bt?GE0BL79&*nI(>>?@_ ziRc$N&$L`us0t4@djpBI8_B}w3m{x>Rn)pJ%cAheai*)~tqZJ@z!E7ayD}atQt6kO zPwY`ukL!KwCj=N6uSTBhRu8rbn`$s!-3?%}wKf9FvwgE|TbEUyT92$;;?(mrd~iB2 z>E6Vn-iF#)M19yU%P+1&y3He8bNC>rP_g_gF% z@xR|51+^eoQx@3QD^Jg|{HTw&(^~7!zrMT%k9!0QxmRKh(>Nh9GWe%exRngm`TaEU zzAnPt`2C0izA44asUpP3>LQqw$a$hz1h0CjKF;+1s-yBk@k*F2yO z&KYwdo$VOYX0Z(99*$&2{$;xpO{gZ8n2Sr13Yh)Y@}Ss~?ly(zC-UvKd;l}Lh_Z_2w{HnNy}<5VbNt=8ZV8!a)>j>sScWe;YM1vrL02+XY4AlU%TezZ*i8lnWl7j6>ZPfu#e+aiQQMc+{)Cz@ zN^Q^H{mo}ZUqMB{VsbsR()RxESlLj2Hx#-xO@LfgZ=K5Gr72L#5>c>KkYz!YR)QsM z?CcgyxkO;3b-l_~wNRrBHTXM|LB-k4sY-wh>R^E7z0^C!Xh|6Yzh?Wi4!E@))QY3g zI&xDPunZo-!-Qu0{vg{{lXJ+m8{&F??c|!HUrQ$-HWG@iK7#5}tzfNe-t}*{9#;ze zb*S7P{U(4vtr=qh(7U5?mu5hz`=I2>(PZ%vYZv05mB~kL)lViZe##wKNT{5vG#)xL zNO6P_3Gr@CAxEGxDK1hqvgaRwta=TH$!u*KNG(Sx^+HE_ajXh|7yGYY-D$KkD1b59 zkk)LVi<=kpd*|Y8)4X2Cdg9qy$i8)UufX^w0VNDXTRt>ER0`_rD^{;z@AqN2q+T5W zWtR_zkDu2MhEIj@opwE-&+qpe1n$Gw#e=bd1^!~IZ7LGM>c}U;XwkOXWoXw#b4e-P zXQt}1vu>Aon(DGT}wwsbeq=N(R{*0 zACs?429m3H!(Dy>Y@4JH3LNyf!JX1k-n2FW^fys82%~KpI;L|(=E|G^zi$1y@yFkJ z06q>2UQ=R`(wAFffy(wDzhU`}MD9T(tUqtQQV?PrYT$#Jv*dM|5dNb$ox(=W3 zfZ;NyP%{aX{^`2UX{{G1&94Po3nR9R@<$8 z7Dw$}VWWt$vIfs&eRpn(Hi^icITcAZv~(}B(}sN<`(D{jINCw@+siKR_Qiu#JQ^w@ z8royM)+eazHGLIr&g~zUj(-%duOjJg3k-q!GbpT z+H5q+^`az)&0jSaGDnhGP$2{9j=9U0lJgR4i;+5Ls5__*=%cFW#3rkZA4Apco2e)? zn8DBl-f{Ib$;hK^-VWX1iD zUM*aK-34Ob?hB{U$pZ-@dSJ42>1CDh!F1GW#ppSW@IAYRt(StZHX!6aX6lJj`4EI_ zA=$Z|M@FdIVPs&=w<3%<1rT_>i94lt257R8kRchT%(tTO5q>2T76P)@9@m3{MVhCV zi&l~H<=*%6&S~aAJwzE08{m6xY#&*#Nw9QsI9POrqLNR0W5+6G`6Qvr%%i4@*LgQ` zm;_T9`_aUMhRmlbrBLQZiZ2-Z;vV8RK>USWft&CN1_`c2X z8~3|_M%BJ8v(yp#woaU|z!Cd4qq4EBJJcC3Th(1hJMXekL}J1@+1_7eAP(a|=aueY zi8Fv~dxZIF`CTrLV7n3d4&)`uNmeCA?^U{zb&{X%!uqz;?kV|_fr%W1r8a&@Sml0W z`|ZuGs!@2%ktr;b^b4)Xkc>$%1}A&iscB?(YN5}o0KuF&3qhe$P3;zedJh0xn!937 zM_V%C#2^rto;FywSWu4IIvR+->65@8YbOncVpqr*4_j&OYKE{nZf7F9hp?mGNv0fh ztr$D$CJ-&FxJYV86kd<0<|I4sW1l0v&yEF;em5C-t9$6tE2_^S!8F&N<#5N}Uh*Y> zAp3pVVoKvyd@+2fA_y6^HMKmE+Oc(ShO%HPyeXdesx ze(|P_@f$&WiMF!K)>KYZ)VXQ=f>cBj33WO5;zR`#4YeIwECyCY!~QC+^xbVUxZCwM z-B8|!9@B=s3z~zA+EUNqjbtgU5Q^8s z6LAL|O`z=!>=}cYO1bO`x$|DimlxJ$94As*&L2T65D#kOLU}z@5LN&yFTJ_(l*1Gu z(b};o!p9IvLai^t2Rf5K;7}+M(7}!TxT64~H=>~WL{TH9H-sq3hXkLBDy23ZT>^8a za7?0@%loL zOS!Rnd>Iy(T(`0PFB}aG#4^-tR%Z^!=>IZA^yuGv*K{cCK~z}=Z!*T=;3lf9j96%U z7-8HO59;E=IlUtmuZ0oOnW`fanP*Yrb>^w7qf$Ii$!#Qf{Qg-q{Qka3*Na`_K`L&EavscgRxZ>lpN z?{-$TN+;2EP!jLAM%OA58F2~Lw3vq_cTvpPoG^oTSv7%CBJ z!Xw}2aORl2y6|1>y_XjK4zPYr5l9&7*8JG~o#Jf-ERl}|Rhqs}OskU9k~(3VI09~+ zz|BSyOA@Q{pkcZ!rFZy7{;RFQKx#_8>}ccE71-6cG7#c5Q@1Lig!|NioY$hvYLh@j zMwfBrGXj?mX&S!XV>dX_VSfR=OsG6B~FC3q)U}SWU{YczdG4(cv7=0q1`L)gA;EWS# z;NJYqw4V6)Kt%3j;edzH?*Vd`^bHQj-v7FYY*LKbth={2{^$omg!Xd`XF}G(;mc4w z^wCJV_a?_3|4z6;pPQ3#TwAgGXfWqN8j(cP3oqF@)Y55h#4xHwq*uy$gHkDYGF5Hy zNr=rsm}w~GqEEQulFyc*tU?9qaC8P|#JSn-ZF}k}4-{Jc2!kd1v_f@Wg-M`zU&eDg z1A5jXGPjwtQpLWxHD79R&)pTexcLFMr`_{fz6FlY{?mEO@k5Gu2hKapWf@fd_C^Il-;n#y*1N2*rw2Q znDaQp_&aB5Tuj!N?apZF?C~7CM!eHI9B6k{rxK(4L)QPN5~`Py8ai}}QHBnI~E0k^U zP@qNwduB_4U-7-iZSqm{tYlXaN{tIpbG85n4cV(xGaD12Hn^I0PJ7FS zPa>}&4}fTJmZb*a+i)Y;NUxg?6INqpFA|lW%z$Qlq4uer|GzCv6HJX2q=Nwfkl_OW zApB>o!Q8~a*u;_XpAy@J#=7l38-fr0j32^B&Z16Jhz#0qTynstTr{)wxX+8-MYRiL6$8jtq${KXugB#vW}1%^cSaH`(Dn6G0`# zDOv7rU(DPGu9Ub^X$4s+?==mh*;o6gd%5dWhZINX7AZt}4ac?7BICa{Q6&AKNY_va z_EaazT~g)-^QTE9E4qp~YdQN|o&y{*wFm^3;bWjk*-&&ExS=VI4IrkV7%LK?Edv#> zpp8$VgQfoPjJANURc$=b!Z%?m60x*+|1|JAl1I|ZSVhE4DqhSH61yZrkNhs$RVyD3?e=8F;oz612|r(VCv_sU()A6$hItPsy9Y{D^qM^4 z0Oy}mG!AB6%{Pw%%hZ6abDsi?BC0t}nc%%C=S^M{J;Gq~4=dHn)``cS%oTIa29{M4 zV8ID1t);GCD)NWeg0MZzpgnE_C(Fg^SqBbB^4=LP7&=kGaII_IgbKrPud>8(qJj#u z#yQ7J1IDMS2PIHUHx@td|z8JFBb+BhLwqX)3P(qXN;;E|mn~c*OWVt^OqWJ-`lpG||^OR8c)Wu~f zWsEVKnWFT7q(-;718ZZ{1#aRNNZ{?Wz@MITAXCTY8%)bSQ)oD#4OVpt2Bcn?4TL>u zYxzQ!VMbZ0FXTfyU|MA!N2Px9DDLQ9FgfVaw=+*d($fVF)PVWj(zF`M^18exNu?jN z1F+xx9PIbLO}G`-r~&rb%mXt4cW;YVb&O+B8sYD10YP>g&raWF&5)Y>!*uY;zfdkjV*X zUgO?cjg~59P4W3=G1%)OA~W#cG77t50yQ$qAUfn2k6wj-EL07Sc9c{rzu~j;nSaxL z{PDgig`S*)kelU6wIp}$nBiWAGfIxj{?(4L4SU5jR!qV)oIDlE0K9l_^SI10eOg!d z3waf`+#}6F!j7|ep0>?I8+qt|*pR=o2a9aAc zrRQj-7a!LukXf-r9{r4A%EB>LX5`3R=J>7+CveXbo)VZ(z$}Z{)DUmZxj5Fbnjgz8 zOxI1_W+%x!SFCr?o&|#FP!x^*O`V$7q$+33fyPuBL1kT+)$%uI$QqhwIOc--kmrqs zM~NZChLYT4?e13Z+Z%vX$Z#}q3ML1^J4-ec&Gbg?GHfvWEeMir}d_RaVc>TFh!%2Z##a98#u+Bw-S*imS)YCK9Us zUt0;HV;rrVFFpW;I|qj{7=qC>;1DPT6syGYWNZ#Wg=bM(Nh_t96z8;j$58OV09u(P zPu(x6Vq1ZjJj?nc?{2a;HWX$$U>1zQN(E?9dQob0dx9}jRzNlH{SHg2{-7kNBloAx zc8$F(I_79a1uq|T5jnSqw1eOni5zN3OY2(J4nPXyg9AdPoe3($M;A=Q)jRti{r-!Fn=(QK{FRkW0xJPg&Lu+B95yu0CQdu|KYO4UZXw))p`K61Uc z?eBa(TDE>&Ep7vd|K(A5RSnU_aIKJj%|^c4Up}-UHTGZ=hgKA%I^?oaujiBqfYxeg zz!>@n-UscKijp;;B9Rb}q)jr{WXvu79wSj#_xrs4!>W&%BA@Ou@}{?myB_wfjUNHc5ztMqR}6l zwo|dnbGWI(oWhG2!X?~U#wJ)pI~G^^zWlS9uKV1moanM1x8cv~`-RT8)L|6kHD5m* z-ou;azgJLQYH4a~)0q3};eg)Q)k`$}CPvX^p1QqPG>2w>|E*x;CToAO?T5aIen<}c zKWXe=f)P_YJLmsRX8)lViJtC;>SI6vyV1G9?Ym@K6cEmEMeJ2M1I8I;jbZZ>FIZ`2 z-znJHad-3Xj(ywG?dk!b59~xmqvv@l03dsIH)~T>ha4%NXA=fSqqOJ*1TKVRS{@UqAK9g zDbLTEA4YVpcf6f6)lb>pNXiY6(Q*ukhBD~-u&E7fu4g^e&u6LYKhpXCucS;8W|d(0 z=a-WIyUYK^-~Z9&j=0`PAV!!UY0`r|J=CuAar&Idvd8W(9*(FHwo3A!~`(s@5HXLxA`2B^7SnqOJA z@wx_KU2YkCL0z7EcSV9+dhOH*iNysyi4N|1zAW*yBgb&}&m1(FQbqibuQ!`l=>MHc zf;)S^An8XxfeQU^DhU%?W80tMcKRoEsZ3dSTx0kVRB_L{-JIl%fD;TLj}(m-C9aeC z0EnQeBcC%Q^xQn@VB(ugGY?Us*QtB(f9hUV`*<~@i_{toIg+MQv_UEKkf>m$W|F>r zzOiWJ^>7g}D^iT6ob=GNY59D+YL!TvDsq|v{}Rtk$)HoX%93SlVlfL`q3$hHP_5cT zRROAa%uouIGGW3AQ&695P)O2%e&msh_)}@>5TLVqLv|{ zu1!rG9@K3b1j=}=#S2(V_PhHwupOA8-y?`nyDL^6M3+{8WOXpuibi=TlEjL_GNMVe zr187x@p*2((9g$$SDn#XYvl^8zLUDr%6l?y1$Pr4brXtA2bI-Y9ne8}?nt|NQy{vy z*Kq5XYc8lhdE`--q8PB$rC!zLtvd{^efY=Qg|LJ27bhbWcvgv61D+7cN2gh#@Gmeo z>{zHt3H!o;$v=PtyggZU0rXL!e@ijbTo*4nz4bL%v-Zo};jV$OVJ`yk2eSaIkLo^% zBsT_7z4Z3PWvw%R296Gy)ye_f0g1TtRg>_8#j=7M>l^E`)heR+o1@iV1%1IHe!V8b zV>BXEmeTyKBYrHd83;wd10-%&zy-)RSok*8a_lL2GuLIu3r5pLPema8r}!Rdl7X?8 zB%puy`cqqfXL*rT>VAS5GG>eI^Kgu%qVA~AYSvxmzlPFtU#%g9>d$;XvB+pB5o;n_ z@5`=qZ@U$0XVu-@8v`q>9@0GI>{XT+K5RN$rN zLxS~1^EH%{r9E$25;P$7)BLoh+wSh|2=n!?Mgv8f&l|cMUaD~Ev=!RVZM)3bjpyh= zqTX~A=hNKMTYRKu6j~+$I2^2mg4g;dlVrO>E-Rf_>w`R4S_h- zpgTSFXRX>Hy#IjM#%C)OY(>ns)s2Unx?2_|2(SGVp-~JU(yvB?ayPDbvM)$*9?Ev5 z{#Dt(6gUlO?cPX%@rV>SzN8H|?2)D-(rF8I*g!_VKZp0GJ`JshgiXS(Kv+dP{(cbc z&&oo?Rrmv&!ZYjDfEJ@-dkt!z9PM*?{@K=SW<8Vvfx7)CA;L*;in=1gVH`Mtuh~mRuJ5f z!62wC^1qp0fcw@=+dTAvX5F=YV&iB_clOmcv8f-LZvwUMQ0$2gHk$LaTV_qH`zLF# zk8|da{!rM_7{_}cRPTh^wtZ6YMdd7C!JD^3LNH?qU*?B3#~cPNCv^855B7)f@hLv^58-92QtS0j z^gI-q5}9N{9yOY*#K3++E+7LrRqnA!bq>HhEH*}hS}eIaNQGu_T`EotgS}+ROhGCO z#YLZPBo)*7^x9*or*aK@jVmZE+&WqlHm7qTR9Qyj9>Uexp%NOslqTh52C+FHPo1PG zr(L~}2NjmIDeTA@E0C(m>_}Csn|^6$(ppI)CRdNp0(%p6l;-_1BJVSR6_IfJ9s;WC zvo#B4Z%})TT!Cqn_I1y}Jiv<=fPpkT4I1pwj6R10`et|{K87l+tPSeGD7RrJu+vWL zm^I*tFzKoSg>QdFkW~Z`W_(p4F%hq9nJ@ISvaQ1a`ZaVgc5h0D(D-)PQ>#>jRYxjL zfC-Q#_sHRUQtLECn6$>w?6JroNIH5RVsIEJo~;G+4l)j?UYi8FCytGc!SBEHyMo0> zAs(BM^DSy}pftZ#LFTT3fwm!T*oURRVU-XjeU?MKu%me#R?>#cQCmzd{%Tx-8PO&m z36|HuEP1TZhM&45s#U6|xZ_$MWdhPF{*^;+L1^miKFbNq$?$Nic13k1x?pG%uT9Nr!Y%DIcIc|%dP-OSNW<_vpHgPDPM%}l z?X!!2mc_At^mmQ!^wlu)5DKd3wx;-mdNBzEBIfZc@BkKq+7SXv?ojfC!yg#zcjm`e zmgxB_4gNFN!7C7>)07P^CKr?pp0Ns|n$qM0MPBpm!KEUb%_dr&)~Z4#B9$!0{8LO> zuq%6 z^>PR#$JAj<%F@HwX!#El7h;I%J9n~QK(R7CfbH>G zX#8VGckX?gh1D;p?PKDNc}AlG?`$i2+uxn-wgNKwl^Rli^;ot-_gGE*!K%WWEd|au z%@?6y0?mfta^J>Wn&njQv;9pW&YDX0rZSrNPB)x@V8rast za--pqVZzl4dQZ`uO1aok?r_+CDa?okB`#L6WUvy6vMLX;?CMEbzmB?dFFZ{xbhi z1o*(Y|3+qKW>lW>d;sq+5dmsN-d}FOWASrp^Di)rUV=JCE$RTD`Mk6Bc8YP@9H~Bl zu1z4qkGvwR7~lFmsTY=?+_i*%inm*Hf%mo8a12ZKo#=1tZFjOIBIISoV4<-7ISW=oTv!nR0PvrwTq(p)h6JEzx{3Mo1?Z$G zCJ0bHg>(9|17ap1BLD#KHx~NC;D><#AnnC9oPOTCTl{AO1j%a11_0oZmJk+DcGtb^ z1WnTxdE)!voyONtC$O#!`4k`k5wwS;!*(`EZGk3~6ckK?P}sZ5`5SG#!E}}5;O3Tl z8t zkjFquQTTHh^8fF!VK}p7|CgMAL#F--lVo91nN*FNIYk+TEjf$z_4uZmRYv5hFjQndY$BuNykgmy{dru}YPSra%Bjm} z1U$*`R12{%FV!9;hmg=~49x=BV9&qMfzQ|H7LdD)}0iw>Mt3vv=?m#8Bp#T#%* zbm75P=3sknqV88sTfV={87m7`OpAs}4n=+XB-7c7`l!Rmdjc}Pq^$42$g0B_i&;|# zU#X;#J(v4Rep0;z3d$#p5|d>5Dd85kWQSML!327__BUK|;N%IJGL(x98kNG!b;9aY zvhItl;~Vqn-)9&`$*X2y(P&;Ze3k;y^iQC&L1U2-!kF5x67W)0OA;U%EtxRU!4i4- zG>8)8q&7BWEO=4IBCfmNL~oTt?&_eEq9{dO`AhoBE}=vpEf-_Xr|EuDzq_b8@7Rdn zFi0EIN^NNjHiS zv%`Iwf}(+HUMJlhR5oM5G4fzUOFu(ZHzDigmkQc&js*Z#h%%yC3IA`d&$10W><{*) zQnd0hl-6su0mr$h?|9ueUC&c+-srmQigHNj5^%kS~A^Hke5@6dc(nk3zq6qAJrcoWxqW4NduGzLk>Bj)sbM^ob9cS>o}8X`?hkT_%?5p&wwt*NXT2QbiIPHJrqQ8liyLr$K6Z)rM!h{ zxKUadj|mgL24R)iRl^)8NE{Zy3QS=k8B0_#4Kg~p6=Szb!8l2Q`cvb|CVwa7CYphs zWQZx0O1Kz{+7{1+lvL7l*6=HT+$=(uF>*C&T)Bi}q^2rWQ#t|1SE%EhQ`8mtG(#bw z@cPL-Oeg&eK(serNv*g}0!P^qM5nyq22KJx(~P1>Nf)SmMYSqX^@&F7)b7a}>J z86-`=>)YruWfCD4P$kBaD#n7TGn%Lp#06&E9+uAM%~_c8OIoGVcgddBsXJdf-M`ap znIs)Acum^QC$%EmfYk@b4yJr{*nggRoaVG5YN%UVX^9Zw(Yr6NB?jnV6~o|EuxOP< zjasrWbN)iI#e|$9gRrP|($cxoKzimA*)OA+QWX!t(55vH|5wH2p`LW(?~=R|NaOESPJuJJdDPHR?UZqC zzhsYUl^2`T_YcD7wNeOv$tpCF)DwJB7w3`B?*)SeXvK9-ECb*~z$#SMGOM}dvMI;u z$AqYDW;gz)*Zbe( zP?54H^r8afhXGy)l$6MoZBF-F2p}}%7{w60rHIgJdcg)=kwnU;Q_UNq;sOrTZ?Ouv zXLTGP56#!`+-FCMA}fe8PL%KLfGtHy3Ze=ag8V;mrWj{qGPFyuc!uv)N?;cFf&7PG zzC8cMHPQnVjf&}p+l08D%_s`;Ff`Ib6hD!%b=@wbNs}$4z%Oss9IAXht8iS_;}EI! zB={P8&$PGluq6#yJ99!{8E#{QnJ1z_1P7SHy3X< zz>Pm~7$`(p1o6&4`)(#^jDy)^Lc^qk6KR!+40NMoXF-!8SPXmr?um*%J&?%~L7(d% zaA~JtdxWYv9?-gM#(CKn4#z<+7B3rQAAE6Rh=N`zf?TQuU#O)D3%&kaMMR|VWOBRu z7Gl0wdJDZoUZKVgVTN6FRHXb4#3Z3=!>IFNf+LhC6vO2P6~$<}jW|zW`~Krlzzap- zT|W%fKnz3iv7dg8dTRJ~We#`Mn-p^>rYg`7U{*?$&{|$ND=Ft&)A7V5lv$^I&p#Zw4~FgtG3N&!H^wKE1ZXK*x~N0R;XIzPp2d2 zs$urs`0C1SyAZD-^$HaQ7+Pne!oenzi9_T$y73b<2|3@76N-!z0Y|sJCAPH&^FG4` zmJ|S35sAe#fmbT!lw=br!Ntm>}u)S1dr-OOW$LMUWrDA{bH2MB|t1?vt?`Jv(<>$5f-mFjMyk2IpQ zXi-tU*bP>`?Stukq=Qk9smnb9A0L1agR~3<`;W6a0rH`ic!1)Hz{(j%fQOYJcRs z@~!Q3C9a~#Td~Mo);%cpigbUVqVJJkKz{B{BM?Q&>204UA!aCOEs~^Adb$oHl%tL( zmA-beZt-vlj>%v(D}+d%&!vp!DDtVkz|3zlSCEFkP&Rxk~MlZ5yP& z-cfi_Sm|coACDxgX|n;i(ULTQsUM~+ue)U~0tG`srfgJSZNBWEVPPl=S(xJ6_~g>B zs5tLA-#<$~jRwGVO}mI(c2Gxm*-;3?LcgTu#<7H%;l)lG@rDksZrO5eADE3R-;xzV zSZ%hg;hAhxqelprX_^XT&CL`0GH%D7m9O4rJvZ9D<4LV;{y~ zM$6;|-}R2V97@M2R+BA0AIiay3knn-7E^lKhwfbp-tTU~x&x_r>Dey$MH?dz^lV{I zTrwRD)kAwzhk6a(ZM_h#lXM|gx`uCMUxE*QF-T$)yi)i57OyfBhwChPUzFDom7pbO z#t+8ti=$rHzJ?hJ9GeG|-Ff2aUbzf%;WJ9{;L-2t4h$p`HMCj~;AfO9Ub?803-dTY zJ@5K(s#enI>|M`L;4cu~qU=mGLvPyxytc!-;gBrW&$$k7PRjaBxPHX-R`Im1yn7Ql z+D8|Hhf4O$w4suN_|l<)n2aKqI-+0Yty z-G88KFkf?qwv_x%wu;3V+6)b5U=|o4S_Q#P#m5k8u+Xb!0vB~q-91)WB023#$;qdB z^~(K?%`5~k%lY`7W-zS;G}4J|V}}3R+B)&nhYM4e2&JNa`0LvtHemZfN(-Cf@)*p3E!@eL3VX<70R!Pl9#B=%)Ebq- z4*vv?tjHymRHO&de1@W7UZ)jFJ1rQbLN2a_L&!a1y8s3ICl*72pP7(%ZZn~t3Qln} zvl^N1>GCuC1Bzf7P&JkuFhMPU;!`MVGd6SisEADVb{Ej)ZTR`yA(fADl6uL9ff>WK z^GN@E4VTEKyK~jFJjEifCp*CyJrAl=DxaA1;o!^qr%FrE5XDhGeEn_0d~Ssm>=iLA zZV$GHdmA3`;|9=jbhWQJ5Su3Hy=?FVCzi>_AN9Q0|Ha;Whc&fq|HGm8-UX4OSOV;X z5J>1D1wu_i3y4Tap@k%b5Q+#Q#fD%98&d2A6+2i!Q4tHG2#TVhq9_(Ds7U)w;2iao z+rH0z-uIuod4S2xn$Ie;rtCG7y^EF>WHEP@r;V*%FmTsm+Kpv0F)7BMr)3q9-)D!K zIvKi<7>9gnL-Y!3b5xUVxM^S8y2!%$@b06tiY(3r5B3CSk0Lmmz2duX&Nw|(RZ?^@ zbw^qCOZIX1cc#x7%M_N=S9Q*7&Y4inUBFi9E;sZeA)Pf}o2u@p+vWMybd{7$)lw~$ z$n+GA4AyQukA2F`it=RM^!mby>YHQh-)QC@nWb8>!*Hl?Qv)t%oKw4ZpIGPmTB&3H%nw%O&7=b}Q%@~)KRvpwywv9K>D!kNV7@o+T^G^o zdm()=VD`uEFBMx}G>-awJZ&R&)(TgI+7HHfXkS9~OqXK;GvBVB$e54Zf5wl44iP@Z zgEf^Qc4)=(8!uPxMV%_MuBN>B)`I_%n7`m#giF@Jz(en+@!#s+%d;8Jv&|GA&H0AP zzv-~V%}%*j+0*Lrt8Fgzx9>UaZ2m@KPgEKdbv;{i3;rbM<7mt&UfpMxNAg8?6k8ap zSOLDfO3%kG-+5`yzTtHLMQZbFj46)#}}st7&=#e_R)%0nLL?OU+M{^Ymr8W z-rp5&pvp-3&tF|<9kBVenZ_fVW1DTTW5fQ&sl08E7J+rqah1@$A^Yzb65q_qXGCvk zPuTytMYMUy@61al|F9?OH3{nmuWV7|wwJL@DJm9$H&zbFqFPp; zN9{i!^1bf7ny7p4=A=(psnTdu}#ua8}-M|)S^urtl;9gEa0T|jtuG{ARHV4vIk=WaRP zNiUb0w;W8Ip1}0kt>u82@q(PPX@s{vYV#GO&w|oRW#*R}w67Z{>a_GPd{nvg&Bo7_ z?~6R2EWMLpx~(hExo-v-DKC~&_UyHz2BwE}&wQM)ex>P$gn_kXE2%pUJ#pf8?W(`J zaP#rR5Jsa;*qD1(b}w~jPCZ)&vwQxXHKS}pxikxR#UdJE$GJ0?_s|+p?cR0wa#qu< zQX{QTY~AB`gmz_HnC!by_M+5gHD1ezRmg`cUHNvfB8$P5hqFSTXuz)YUEcLh@p#>+ z(KO7<^*ucz?e&=ZK=n$Im#!=FQu+D#h;Dmwxm|*S+3cxWHd``T2qi8+BdZ zX^)yRN|T3GkSm81f^MHLb{j?P@~f4E2J(XsP&88N*Y`sEx{ZoFgV)n>_F4fnwZ zJ4zHTpUrIQ9l79td}cs}mV{yQo$p`f;+g`E1izWFpi#5hbW7&Y$o9s?8!qoTtdf5v zB4!>*>-h5LwrzdSPRhF2-L3p|v%c^-nEQPL7IqFu?MF}h)FAy#V_{51dHMT~VEMED zYr!G3ugi_p8nkyYL-*kAtBI#d!ZZ7G=W;9!O!Ca7Q$#9e)2#+x?Fevl z8GG8~9(LjMH^qQ9n+kZ&ERveFD)Mz-UpaThcz(PQ(JXAg<+0b}M*@tF-KgGrRyx*t zsq%wQsbHS`@>F|lM|8dmwln@_UsK`-J+@lat*;lhWPKgIJM^&UO+nN7(Z<)?&svu+ z3AjuwS$1W024`F;N`LkS>X;n9C^LJl@%$?Hwi!ith@8zmWsAO))O%Kpojox4d}Ckv zp_uWTC*~gvO252Zbt~_}O@|Zr`h!BOVs%ZhVET{5Kd#TI#X_rQw?ZzQ-l5@l@Mpa` zA8Rp{MX#a!-JKt=Y-t`_ukaM#J$7>r>?D3>h<>MX$!Ye5`YR*lO5b;USsd3DvZHC< z7ZaQ4fydu(t_o9?hP15Te$*GPM=9GrLb-3xUl`j|YAMYZ+&_N3 zA;3Sl!sC}r{1pV9Mud zc^Btg*tx%c2%GIbeHF(yu5t(US$#I4py7B?UF_0(&2m@0Zn(GIoNw{YG^ej^^UGze zr{m&MmfG!~(K{{Z%aZf;>EmvfZD*d#dD4xVQzWd9Qs1#DjoKV>jBqkvKhsF=LEPp? z+hZgBOucYX3r^-dU&=g7IQMb<_4X_8w^bCq_G&-nGvszjWw^CCy4!K(W)qp#IVU2H zHPTu?MW?Mkh0QqNY_NuQ=1e>G$5d+Y^%ANvFA(UqHu zRZE!*k)HE_$u7(Lx*m=)w|g6nnR9j1fUC$#Q9vb+2FS3i#|izkXj8L8ijRL+XZT}D17zhCZn zD9f#{JGc@K9DY^%(-*OyUl~0wS8`x>eqUmmDouX*wd>l(*B|AnS=rTWL0kJ+Z?%3s zW5Mj?iFK&X`bRng&ei!eV)(he*B35>?efuCA2d;Le%U>9{-KXgU7wn7JP;NB?i!r* z{D4hvkLvt)@{}BEl5=Fsj$*Hgf!VR=7JXjKYFAlR?1q|no)-k=)Mh_iK0G_)%o@mn zn~~LVMqy8xD{7)CMWuNCGPlpl?BEIM{TI3&{P`lBtjeeQ1LtC=7e8W@`jqd@Gml80 z_hR5s?%}c5!}qza3qPcTP>Zem%)4o%VXM${-w(V@b6(o9WpP zUH3v9&fI#iE<7?4{+WC*GTn~!eq@E&*MQ^LH~V9mDff2CMv*N9T2B@{Tl@$$``m_% z`8HKInWk8sFNNnmuUhsYu;=qyD&c(B@wu~@1n)QS8HXO^y1Ubl=~!QEbj;!2xRKrE z{vEwjP@ty74!%%*p7^mX)Af6I;u(JJ0`D+r);s5Frwj8mpHEyEzE!>H^y1Txziz+x zxYbs4Z{*mznye$Y!rm`Kf%YtHwQt0mY%9yBPLyRMt$9U@`khN|oE_}jeY0%^R404k zYgg@9$xW9TTSu3s4BlsS-)HP8nx?p+UFoXz-3f~gQO(uIOrq`Y?^gqB(gYp&`A6E# z&gb^n#pJH4JndacgPim(!JqhNc+Xhve{t_3E4nN8rD|mTh*gC8j%;NAceprvhT7K5 z;m0dBd3$YO&&+z7Zi7-Rdo1#K%S`G-0sOP2no<#L(l ziMRdF40t6HO4=R_k)noWOFo>?`(8cwob)oymdyJ$zV8=_{V&d0Ahn8Q+56bax?vj=#Q-Hgguct7aVXFk?&9k`8uP*AEk zt9x-PAu43xt8?D!qATk^Z97HZqZ@iE#nQuwSgD{i?7wI_YWF*hW$@+cGH%+e_86=F z9Uv~SKBU&y@61}SmU;qv{pmGl8~nUlUK3r}R+P3m;C|=Pv$FG_{od?6#{hTCc*}(g zlhyWrI{(G_!LzUVHFX=JwSt4&q6bG3Nforji>TL|cC5mO01vs0IeWTkF}Qo)i!$3) z_vxy$tOfS)!ZrJ?j;^gitFX_09Gl%edaV*Qr~13{oF#;s1nzpA@$z>vj!<|I8jY&9}dDDnz>z|nSsa3tpVtjOvuDdi~sdYCS59|8WrQF); zIP7@xRgSMwnf{I^{iVTr>q3J}&u-=K1IgE*SG6)gF=)~THhHnpyN$8W;9xr%%({=0RYX>f5igV8MRdhoKCJfma@(8n0L%Su$3y5vK=_ioBS`eK?kh-P+#T z?^=xzgP7@h$9S!yYEb;Z<72x{sVG(#wuV+|DrD9;@%BayTNT;Mbxvj zW#xl6uo*V7dF+pms;L(725=sE`yl8L{F=}EJFn7AO)Pv!Q0fz2>6P*B6fiS+*$U;B zAtO}+E;l>7E{szY?s|RQCU?fcPi>2%JMxRxHHTa%FB#!^QBHoLX7#)cc|7shghKBo zjoV{0TlX%S-6gxL;|O{8lE{6eiPfh^1hbvom6i9Rr|pZ})&7!O;jqthR*>OmyntHJ z>xEXTE+2ldtL{P1s-Yg4>IXg>$Hmnl&G(GWdI`tXZ0s-YWtu(!Q{p&xea_al_i|MR zhEm;?mPMHZj;=d|o{Q2KobN9!;n_MHTm`~oh^4(km4GG?2i8(I9;G`}!=pXDY{ZLV zikT7DZW4V;sjPJ8L^+zECTeky6uWDda!ui~JrCVa-A31+Ef{;)j&QB+A@BIuGUQ(u z|9wGBi|w};rJbl^A6%-jkSTl(;`|+3X03}cto0q2`&8l;=&CthPo$OK687zgTs>Tv zjUjA`sQ@$1apm)Ut0QNnzTJ9o-JTgm^sMi7UXgMcyCbUG%*KQsjjyjOq11`sX1?Iq z={EO)^~<_$-?HR|rxcUMvMjzwWXWB7TIoxwG`O(9udLQRt8L#v4YIFJ$2x59IqkAe z9}9z<%Ws_@UdcR;JaAS{-!#ej&8CgCN8IJq`s4gikG?lgPD%Hg$O{hmD=A{GoXuz4Ys<(GPE%@Thj&5iR-&t*dIBCcd8OeBdRNVgDm2tI7urbi_d*yTD zM3()~@wA#G`cd1}VC}qS)hp&ihg2QvS#%Tgn8`&{;_P>7_z*F}5nr)|b8Xf{R{dbi z$Jv{Rsw(@X2M}Hz=9dNjl6$J^5IgNQ;Rf>}r}w2L8R5z1rfQF0Zm1kF(mjat-kdQ< z`-8dF(O%N%3cA+KD`%^PpFb~2+3hjs>e&iTkzY2j`}-Z-Wo=i!nQ3Ll>4d5-Za!T1 z;PABE=Lgfu(>!O5q-iiRNxANZcjFZ-?q6_rI?|-RHCyjd!%-${uJBB!)w?6Ud6xzo zBNiTPqGKON^`$;xJyh7!wOQ`S6KeTljJ820VSf3xp;IePg7IH5rKX0Fz`MPDS4!l`_|Hzygg?tYn4y4@6zV^&rHj+(PjnlrWz!}f`Rv` zEvLbrL4sj@$JVoG{n44@^aI{*Bi=J<<=X}%G1DBsQx_I3ReMoJc#G9LG*Q<0#;Af3 zrxcoY`ZicK_IVgtA3%g&KH+J7pIfN^BDY|#>|%lnRjD|~$yBW*arn&rJuk3KZz{H~ zB=Sj9%jvW7bdC1HSLurjX4jRRfL;1_ufxOcY`>z9g`v9t;oMCcTY0Uk$@TQyW8-cQ z0^S=x?tRT{Ip3wNxXV!^W{d0$y&w-^<%yCT!t^A$5pzLNYe_wxYGqxm-rIlo)8+@} z(8`PVG)}XsR1H&0#Z}}3gAnW0X1ZM_^}*1@wt?kCPfsj#UHH9V7~^;_GJ=e%1>y3; z)?b?_%qD?yaMkeu@5j#DBipl@(JG}L8Id2ZW!&g%Fsa?rfMRt%EiSg?4XSW&rN8WL zjjH%sR48ZF6|X(*5EnfBfu;kyyn|n$|P*aRqcD;xK&~ z#k9yXV~$T2j+vY^B7c3Rs)9&y{j$E7^>1;_t}nMPV?IBB^iE<^tF0kHRXucjRo9mm zE9BB|=u(~AU3v!e!}2Y%FP|5s*=D6R8*G(Xv*^Zx*7?hosy$x4G^l^|#olR;RHg0) z!|$)x)9LTE(WqlReFVBDRohC=CNkSieLdLN zq6;g(ja~tpQGcLDOUIFT>EJ0>n|@2kUK_N zt@*i5>N|Ru44pV0wcLvF?S<(olKvS@*iG17L<@Zwf!~(BgbGDXUj@{CKR(ajaLBz$Jd6;T46#0+#ujyoDGt!EcX!)|Psmzjk)kv&+;F{afU2JuDb_aI3Hyov{#edJDCMU^RGZ z;+UnOZ$q0ge1jILH}KoFE6?V@j^i>6O;qJ{r*~eQOSdK4cBpStKXA_)P*nD@yEJ7Q z`Y@!mx=|)_YK>2qO51h??(%^5e7xaea_zzW@)*Hcw_@tx`!?5|(T!$v8}eO?pzOv{ zWW5Used;>ZnAXE^_Cgsft-ElcL*Xss@smR*hIn0z?;Nyi9Mx$XlwTNiMHP8R4f%Ro zps6q{s>rcvj&=O@b8a7d@lDt_Pi`!G*s}KH7psUz1A2Ea7l{HIl zK_UARQn!F*6srr2p-M1lKGo|$pJ}PJ>K$i5_sH~aFUz&OhZ{O?R+!fe9 zTF~$K#vDkK|4P5BtVOfBXG@i9$&KTk)8{C*q0TK@EN09qd-`51d-(<0;^5Q89a}Cb zwVG^u7~bQYA8WS_X;b}(xtXoP^U}F`=hazn#HD9 z;|JWGnQM&XrcbLc9Ol^@ErjuIY=xhTesC>N=t455dm85HrZ09|v2oBA5ppMB{@$9- z&B+sBdlaFW6E%3<@#)Y|F*V=ZeaG@%v5Gnd)z%EAe9X9bk!DRZ@s!U-PK|?fp??GG zLdDokRppJ3 zdsJf%?RkOBYEb-KOfB1fZ~5`7C}ZEiTPYE#n;#rue9A0#Ln>diAcbU|87^Csd zYghHncsm+>4zgAf_6}T{TadSfayx&M&c+CVh5Wpw`WF{p);>^5MZ_V`3{iNWrGs%7 zq9R`xpWjxuX;oP{Lb*=SV2;}bt<-5Tx>vrityrfnt++uyajhc7G+A$E1VY2Q;Y^T5 zzNN}1@3UwEVg7L~t6Sgu(-yMK*DhugA;7gTwu4lhepR-TBBMfix#zde{y#yJELDeu(+vasd{Db6NH(zY2f7O`%`YB=WfS)j~tL z4IN6AwS#AI7bo5-H}*4^sGqSj_JT2VWnURu&q2;x77?x0XnpY^PXEf&?IDj9H8j0& ztF=|8;SPDl+6_g2tO$7ykKWDJ4UW6j=523$SEev}&O1~77+7^^8lSlxP3Nd;b#R^+ zM@Jp!AA9a+O%1&|hok9HNcDYGA;uK;v)kpbvj!Djf4j0WG42!C3H&hohP1s#on3aA zVnCBw_12R3XBPM(X~a%L&1UBV=dRX#Ak8WHi0pcjQ&l^VTtxMBoiXuF#bE8Wby4#g z?pq|5=8Zp`tA2)4xiBZ{oROclhXTna`RWNzR6=iPMdIG)*UqSZHNEpVOv=27w%2|k zpMCynUh=n?_3oYvS44utb!C>;9&z{bg5LIgw%?|T-HpCrNK#WmjtIUdLHWSz1kXCU#g9-U%eI?S?(S2t5V`Bg`SOf{mzzru zghnkdX+F3$&E@;4RUewX?#XedIiW|qb?=tm9H+0iy_lD#Rhax`t#|u{9+qEp!p+)a zM+a`|$aVQ3cFs9_%Vlk%_ATMcd1LQ)n8&@%5z8{^wJr0T5!dw+^6?15=_U~V{PTK5hvdfj6S z+QGUFOB$bdXc1%wTa%rvXOflt_FdWOahGGVQn1SAr6Dmiwl?Ih!RJD1oODM7M%Bgq zYdb>D{syZ-Z*Agxv3UXc?gyxtTxVOsdOq7KO5eb%5~izuPy8i0*`nRxfEJ`skgQy@ zJSCa>u4AjQKil`xr}mro$ul(A?rHSpy|D+QCIfS2*6FqZ z)ym$EGEBoMMssxV?>qFO;4kEjjio%YpGp! z+^%~o7F|M|jaS~6EZMkJUuKHOYk zXlT~31V^vwZf!retN)fvoa+9OJ;4);YrCH>?#=(SScXWXUECgiXxz8Bd%c!Oc=HKeR{PxxOS2lZbDD{tAE%M0e!FE$uXQa=1m z`LpO;25m!INws(eemjW&oHCd^_`TvW!e=LChHrd?LAX~z%XI6_{+Zc!ue8rGg4YKR ztz}*tixuvroXP8pKrULes075y3RY$tX%}UF%X;@|licAh-E(mv-|k;_iF!AEZeU~! zKDMn78KykZYCZ9OyRt}Mwe7=(-Cnm|e!R0{TR>v=&E3mOz1cnNK_m1XAJ-Oxg?CiT%3I%XEWj~&E@Kam0=af{65qixtTOw zT)abl_~ov%-y)R0k&8RMI&yc_$z|HiaNcCCy#K{48qy-~#$GSz`S1qC(!zGZ+`t76 ztLJ@Q;3l3oc5BS4z&2L7cqTeI=L_)&D-s?*F?b~|>vixJ_?mOv1+ zXs^h68vJ_xyeyit$ng2;h-(8U&m9l*U3y>#66zU$WVqmERQs(l@-AN^7HRRzs2Aan z#{1>Q%5RvpTzV-?`V_HeBv?3i@U9=*<;f8n<$aoC1BFHzik&S<;hJ$bbX|nzorm_m zRnQnC36lk@LjtbL#BOGejvNmk&+B?t-l7sJheSVpY0a}!?wm!~b;loYXtFwyXU9?~xPxjm~f6FSHrA+-<7< zyymq0UW02(J+S(+q1%0u>dNMRn_IEcSw+p`T3U_%gi+@ao0Fyr9cOIN7Q52O_5Qqp z*ju|wqHZ|vur>Sg=`y@v(KBOGxSp+g&B-Mkd_>ZWnk z>x$ixwreL&myT>uKI1;aX=~#8hj#8ql`0lN@7s#Y z!#71odEAqUO)-!QQ`n$%{h^-vaMIwVW!tZhT^)XeC$H{T55Qe`d@kaw<;lm^2jn`0 z2l2==POL3~eWObf@(Y|}j0NUJGhfD4+*tJG@@adNKQ*;qk$fSKy~b#$C?lJDNY^K;VDmev6IK~v7`@}UgB9VKdF>Vl`bx^`0=N0> z9tnM6e_f!o0cR^O+i7vNtZl}L52nSfvG$h1Tl>O>HYPs!csrujv(f+&7khWh#LMvU z^LXU96_-_BS=y)s>~h!<$d^y?_LlENp7zWy>@|G0VvWYROLJG{?eC?>q_0)SZn`6~ zUEm=+O26NC(v-}zSY$&VLR`?P3CVgxmoEQ$OZYg-uDNJwRzF2MeAdYpUanj6in6V6 z>>)bljP9P%Q0?>XiPSaSGxO9LTC>6t(z6Z;=P1uSNXtL5ZLgc`qa`oSC55RD)!s_F z{Qc%VB{@&>4f|r;k$IKE)O4F`OP9=(>bt1GkBo^I+=6WNlvl$O*d3K;v`Ot?Cd_1ttm4>on@peLqu`8-SJ|<1g;dW)&Gff{ zaif-7hOEae?7kIUjFInqY_dQ@!*q*3E!uU>#f`aZbHl#{Z(ZecXWGuerqhuG%&sJ5 zx{@FE^NLfJrIAph&x-r5yCV)7EB4NdnpMQ>O+UF%ucpR$?cvo23+jpO>MgkiqhW{k zQ^t7#ziVT zy{WNxOHas$U5Rr|0s?{$I-kFLRBn*Tzy(C=#ufMb4a0bwb|{w4f1ncj`s@g z$<|UgIhKm&s0HVy_s&1uX}R-7ty#+GeoblIt{30K8u@KEJx7-`%f3*#j{T5?$(>dZ zR(l;4lN@t!d31Nd@b`}GLmfSH*$D>OCYKbSt30pUNwj|&abJG@3Dij`q+Y3d_;l*P zhSoaLHV=c|G}rz7hnkDq7kD+?+s45@azIE$9H^hjy(PbCl~p>j;8at)POE0EZLNCb z(s!AqinF`#@92@;$h>(+jYD~nxjJ8@a7+g8Uq+r;Maze2hk1D`o!acXtik3~r#NY4 zn%w=GM3=Oy=mzAA@usD<^UgZ#k0?5k=X*Aft%yv>&%kk4Ki5lqaZ>5NiEYQS)A}bb zy|=h3$Uah+5>5}d+)sECe`3Zh!wqHEr-4bLLp7!3nTpZU6I!Q6%VgFoZZ})G?v7cm z(ev8d@)+Txx>X08oaQ3Y^mUcuI_1xcbgP>%OY-uWw$ptVan}2Vom#%+eyJUw=i9Hm z&Gw?e0_@zkY_`FrA8PEgSTK#b%Phb;g1zI3(|qI6CG!-$V&hB3t`oK!75M6StyPRz zUU_L6p{~$ON6m6RS~F7p-J`ezp4Jw6o^n|c>(m=l8}HA3e4{|q>TO4O&ym`OXp6_s zXv-T$W{u2BJF7aa`bcr{d0I1;U$)con*Y_HEfr4($3M+~uIRa@SUS-n;Q+BkuL~i+ zU-g7>V(UBTk{)(*m+Z|vQ!^D6gk!0o_2lJ_g*Ph6<jrzy0!4^-VYs zl##D1Xf}>A37(;16TJS70ppNd{cXFZ+njJ|6DDzH{iW(d%KP(uK3O*&u0(@n$fK2A z(X!30K8WP_)imoh@QVpOqxWB)F!kj>;W8*2NPexmrh zIkaGIzI;Q^n(1e!$Mvq>aZ!DiLruxq%N>_HYE_qY$ZuSAd#?4DeifI7{%J_=79OMD zR@(DU>8)D3gAO}AkE3dOxtXXAX}ao8v*{|!<})6iQ3X$jew{~NT|9iqJ#K{pj*{QE zr2m~^;(c02!J^B%HNP0?#|MdA@3XgdDl0Q8tZO4YQuCL4rftciagd-7A{8OnOZ8aU53kR=B&t`T+a+YB|NW_C;a*FCV%OTsCt*I$E~n(zVrF zs|K=s9`)Cc}b&N5*ulaGl+H7})Q1@)+F;jhJl!snjo`(tdGhAnUz-}v1wrhpnc6h4} z{qo`N7D4xn!y!v%K8y4@v)$2J?bz6X+vuXQcmAsVipj%fM;cJ6U(PdXd!#O!K3y3( zLT$BnZ@(l`dzMH2-oBz6eOYhMx8MeS*NheWW}GbM)@b8&^J^HS^WgP#mZin-bY#3` z{kCR4Bk3HOenzp%EycD^b$mLMcWrN!;+sp2#uq+)lyzyWyY6d3$Tc4u3r!^T9X30q zQ+;H&Md9Yy9*4IJKB#TuI}A!MT6Mz6cf1T3c{y5Vwj0X5H%abv zc8aR6+2)<}{R2sa9JCviK9(m$AHI2R?@imosVSoA?-fiW)Hlz%%?mC(4ffqDV|*%$ zsyr`muoD!m+iwr1l9zYng7-dZq}>sJ@`ZPM@ePSM97FN{v^oE$9e(xc( z5m!qdy96T>0|+&q(Mu&S`uq7!=j?YksFoNQO!BJ_s3zat^vgG$?QIhT?AVF>6Fo3Z z9}<}alaiK#d4nI=#9Np(C5|uRr^N9EW++<(4C6`mmw7AU1)i({D8M_;B(#(NCwi?O z#)(7%CkW!D*fLoB7`82wp9G~d1Q5~|0l{3{(*+D>B3on@!;X#TxmvuhzhGe&&vLa0 zL;EBA1$cH`ymzLM9h4am%*;$=Vp$gMZptp{PU%U4B({iQ2A-hAOL0nfwU`8V0%=J$ zWMMW*B1&|%z)858(fuiAc)pNrhPFl6FcA(2GY6zC5@qk`=xA+bhd?4AgdK#mvq3sK zq3oOx2(#ZV3pZtuauKpPPBa4PH+JBYtHp16rKP3WrlD;4!dM82#bPBec6K&^!X_ny zCt{@A@KP+NKz_#|uv3`Ac!4OM&oh(YGGh3tB3BCw38Np^lwK_64?coaA$O7siwUv0 zY{|>zQh*JS&<}7>*M-G&;_!t@43XR9H`XCZGrB-ObAR%Xkc#3(T=t}bKln~+isOp@ zm@9#nh{}zZSip(P;KjOHq}#CA97ZZvWZ@RZj&Xse2>w`cD)*0glk)t5^%T`FcKID- zlIbt`|H@v#D}EU4ZyoOMj0`Gyk&}Qz|IAZk!6N`-|7dGa&j~MNGemr0FrUwLn{qTV zmkUM#p(NJ~AB46=x{G}0o6tM{m5!($oqP-0gVPl6329AitIw2k42#GuX0y0JU zCk%f+E1r|_7Yy_y1~y`<`Y%L(t`7PPiy>nC1>kRl@c)(ePdLGGsYx+BMm#s=_ZFOT ztbgfM65kOpgeh#vTZdgOXzUbzs*uV4)wh4T=x+_?lornt#ktv`9VXS2wBc`AKc)I> zr8stcY@7&K`e&uzvi@1E-#V2Kh3NIO-fx-ztlnfVbc3)7kUb7Z4N8pgp~d1naj`^P z5YCf~!x11yDlR3&D^ASv!e%nOuxVt1f2uzYXHQM!2H@Zb+~nnn1N4%Mh_kXx$2sGu zlFHzs;yfX^J&uq_N{q4d;o`i4C$n)JCi=nB++fCZ?ywc%`Q>z0)zAAHQit zZ_hMl00D;x2OPq^;zDR78h^5U67UD%ua*AIG=u?)Qe$yoKN*KhBhsc+#*t|_sy_{= z2F|lhYVVDcXh#J^KQ1Z>mqzviX7R@35`lW4EEYUk<4<%`fK(hFXbbGZB;%=kKR}8H z3<$VbDjwtkivS>=KWHp}8n8c!Oe3dLLy2BQJ7PRDoEYLS@QU+H4@;-UQ#>aDLqy(j z{^=3%7(6W_R!rnlGikwz$-WukC<;Cxgvv{F2+RzKV}(R`2NMvfWU>$6-v=KT8xiLN zOqU#l2o(i{`g#g8>>&zq5)c^}jEJCzk+_U7WIBt^#fC-L#R(WmqLi30v^X3^L$Y`* zdp2F*$ni$PIjBHlTsXr!o}AFUNs!9qML2L0lLHe43N}JI6~x0j`a$}ax$p`j=dkofrAn8A+&b}2azF$(?l^4=ENZ-@*Jh9^-l2@DjR1L6G0LdciRg_0mgVjz@8Mr+l*;J@F@^+ZQQ%<+4kiIjaR`Sp0)!ki=vOK6;z`c` zF4IZCzvB%56KD7oQzn!~_*DysKWp&|U?zkM{2?I+?Tr*;fP{85Iy?mH2kgYb#(P0P z5hnDjA{2=tX#|NPIEiH@0e>@31Ulmn=9v@{7ntEoK?ftm7!-u_BF8{!I4?F+{1bDE zHI4#Jv7Q9@}spA8JRy?J8Y`8{o>FRiNqAYa0;A;;bHwLm`SqV03FGE zi0c;wWdg3@aVhK&N&pJ_mDV8>&Vo|n6W}4DfGKUfx!#!)^+mD3BZD}IG>}e|kWESm zXvG-5Lkv6y8%rl-aM39cnvo7=1Oit}6r+8SfKec@5pbpiffy~e^JG$dc}Zf3D+GF= zA%}1d+7A#pLJ_1%KyM76F@=_pAwmlPS{y**z>|W!Ba)IK9!H`A#ewr1!*n#y5k&=( zQJ`QSLJBIBlPLy0#Rm!JK}k~*hLh|uB6b7~nMwnqC(waladxa^4jKg-gCI=t#-JQ= z$$n@SCY>N;CP0Y{25|H8V566P9G)Rh2sh-FfOfWY#J%f=M=$jfJ7%0fFBm0E~ zc?V?*y^)@jjEpqT*q}I{fbiG^2Yx!-5uO_C<)0E9KnP+-I8Fl60#icbAbW3kYLFK( zg+s!7C1M=x@T_nj4x9uD6XOIK=@=%N1?-!~@(&iq1amMxP-ZA7h+sKTGRclyPf(W0 z@(C7BNeEngl0clnOvU(fGDFyCDsYtm4vp(z$I1l6KHwJ_&dKmk#gL&unqxd)1ZM`u z36Uv69)$DpfiTDjKTMq8)bNF;WTvp~lY_y4$oIv@csW3506+)`^M(ftu=X@KI{`(a z#b7WTKL?QS9mj$&iJ+S$i3y;K#!$on00RJGIK1>p3DGP%g!2u>qM?i+&=?F11%vZR zgacW)cnUK#K%5E3h!P+HoereI2SI3I8k9ko;Gk)7C{j2F&Wxk@ks*gr(Uc8=I*DSq z1cw{!m3?%=lDt(Fho>1 zP#))-9R8bX9EM~v0@|fQ4qkB>K7UJ~2Z1Itg9t(1z#DLm zAcKMcV}A-KC=LZoLWV?8=p>+60HzKUFDV`CoyZ5avnN3ecrqtAm;lFO5S&!VhsJ@p zbdDn(NpWCA_+hbVKEz@NC8B_{i0wca(mtGnf|3%jnN#DTuOE0#bTY(%XwYN{juJ$J zqcPk7$s8R*cceQ6LIeU7=Z*F8c1*|!NrKQJC=^5!+ei38c#cC51?8QX0_Js}kg4Gd zlyU6CA^Tt`hz7+%SW+->T09>T!{fziX^?&B@A;q~g_1ycClv1G4dKNOL6AKKqJeJD zrJ{g~(SW3rDg&n_aS(|d`v6eN1Eq8hmdJ^V19tI)1fa{2rwVYsBnUV{0vIwu*8l~v zD6FKj#&OsX@GglGoJl~S37o(|ge5=-KO_pGf{vb+3Tzn%xCYU|!qLGO1qrhNC&yWI7ZFmO_(ov0^L< ztYJtAl0o5Tfe?}u2!YgokSGY6k~#vCXfq|DgCCH9$@x18eiQ(E0;6XB!rUI128d=) z2j-(l8c3q#Bp~1(ZV!f}zmx(KBmfhDx$jRV2xWss0SN<7wF7m7fz^?j$Pl=Y>C2o1 z6o;S*ap_n%J(!#U1t4O;eB}+6CMZG-1ldttU4I4%rXm1;juHGP(K1Pl=&ym5|7Oh0 z-~XQnzmk%mzYCnDh-mDefzZE=x1~tpIneLn96)aQ_drB3h=BgH_}d?Wh++`_{25l2 zgeQTO{QaG1;L-Z=lE^Ba%ScIa6A1Zy5LjYyCfnn$#0DIQb_5K@5l_V7J?#;WzvKT+{lD<|1se!$%L4FN zJG7%6#sP^!qOnAKB+?Uw#CqZ#(T*rj0>%zQ`W^n4s(*nc^HM|%9+M43mcYjU2e7|X z{R=FCEsPhlStKDpX)^lyucLG>lYZe8|2Og=|CO45srpkMNh41cvwk+t4+H+2$iGzm zJ7oUtrZPvt)$e)z%9M)@Vs`kN1X$ESecbH*JL zKj!{k0OI=pQ3N(c1Ujq}gDL50ZYd1lA1=@z@_vd8SWI1@@g$Z0k8bg&s{a^2Eso9m za~vJxghu`zN1u{nlIkCWr0_YSG=`9kiv?rAKMw3qVf~T#AA>UEz_tmS4RP^cRB3&DUQyS6qH6bP5tNgrZadMabvGgZ;tD&Aoq8{#(=h z*AxNM_1`N13V`6KKkmYTOeY{IE0xI>{?=0|V562BA0uQ4Gt98ISg_Oc2cmx}@01o` zs~7AtLqE2e|1xU+Hm3b||NV`R|92Tk(Ei8dKeFln%=JHW{YMt~kBI;0UH>!Je`JCG zi1>fr^>UM=qgddi8A#`YG&fBokmL`7v~EnIBrPo~Neh91AZ;i~$4;fK zCuyeA9+EUGiN^vo5}5_8B$g!I1k%gJscevz@dN2XaXdQ>q}xGyCO0)H9;Cm4v~Cic z0p4~Zt18JCv6*oojR0v?VK5C3(%@AqimI`{q+@&9Ohgz zaLf*4=FLvyvPB{r3OGH;5VFA8z9a#ImjQ!K=`5)Q)0WuQ3>et~iFI(Wv9kr{|8f1( z!XH%sJRxb@DT+_j$u^VH2QL!)J@04TpLzT$7z{H6Y_sNPUd(3j%9#Qf%&_Zc-pmRZ zOd}r#JK6e+KKc@W`Q_MQJez4NG3bx$UlRPF{Ktu3_}NPM{ji-GVd}J>nZ&3}J{KI& zGD`u6H`!)3e|F;kbH!i8`b7?F5I1ClmY0!JntX1@c*&eFEU7y zQ+^E+Iy=Wj!gET0g{QHML z(k0-dbV_`znIs!e3pQh>3dNE%=o6AZaxi6>222-b1T%$M!sftiV0JJ^m@~`+Muhpm z0%5_ha99+K35$az!Gy3hSQac7RtQ@KTLaq&+XCAG+X>qTtAW+RPQlK?8evyp*I~C| z_h1iUJ+MC50BjKU1vVljC8Z#xCZ!`~BsD{7mK0pdP6{LCCPkF;lcGt5OGQh?O7Wyp zrLv^*q*h6-liDIxDYZ}PsMHy$MyYF3ZBh@UdZk`TeU$nxEhDWett&lU+DaOd#z^C& zeWin?7f8oSCrf8a=Svq$mq}MiACx{R-6(xs`kr);^nmn`3`|BvMqkEU#zqDsgO>@E ziICyQ2xYQmR?2LWsgkLYsgt=Xb62KE=8ep-th}s_teLEhth21QY=|sVHd!`Xwn%o1 z>|WWEvQ4sgWqV}@Wyj^zS^oQ z>xJs2>uuFLr`Mw|qi>~8*5~S%=-29Z=zlkuZh$jj8>}#>F}P#!)zH|`!;o#b((th1 zJ;U!tW=2G#M5DDvr;NI%$xfR$jXEuDTKTlg)7}{C8ao>^jaM4i8h4pUo6IwznJhA? zHo0LkG~IN%*L1=3&C@SUe`Bg|>S3B-y213k>8lw!Gu&px&)6{I!i?8udS*B?u34E` zli8rTiMh9Vs(GdPE%OnJ*%l!dODzstbXzK0Vk|k98!Rtc4$ho0(|=~x%mXvKW+~0W z%!->;I_v7JuU50I!mO5AowDkmZ8)1eJ9GAd*^lO^&2gWTJf~_-`&{|Cn7N5_x6i#j zPkJ7DUfjH`^IGB3a0hrid^^0&TFx44&9knu?zB<0!P$sy4%qbC>f8F+F10;n`wp53 zML=tztI#+Cjo>17A|4{Okv_frVbipZuB1|(@4(o}{!JfqqJ2^OsoNArkJKH!X zI`4PxcbVCj%+S5`@^4RV15;qr@fIEnL z=ZWwXdYv?|vu9}(aI-hesXFu0D zm+SLBSI9%jEb>nBE5EsZVSa@aOA3jynNm%iNe!W%p@C>b+Gg5wx-&hLex5OqL1*k@ zykBlM5e2Uq+M(u7&U zRuNIOTl7hc7H<1ONVbT9Rb^t<%m3|vEjag;H{c*```w88Yoj5F_#7!VoV34SRc6l&IZ>FJ2rI3OX6=NxFl>%_>m}1ys;6war?%eO|ngQlH8N_Bo9muNq&^# zo06M4D%G4?x0$l}blTLk__UTS%eP$L3g4QsZSXeTwiny|wx8YMv?F=PkDZF04|kz< z9zC(V(G0-vHv3JK; z9Dj6zeByEeqTuMsnJ0IjvOg7n+Tyh7^rth5GcV2x&fY%<>|9y6u<+FR1?LYGO)J_} zJf=A5!r%+B7kVz5FSeFwO5R_RU#h#j{PMF>e(8fNj4OAplCNGX!us&Z*6R;r^odCFbR= zSFBgh>cn+T_2KnD8e(4$d%g9Ii6SkXiEzVKni?*7yR9m zo)XZgK_DxOGAoNwAj?q}R--I>u2=vQTF^jCt3S+fYz7Uq9$;%V7%&+c0yqz}0%8U{ z^&f!9%Eoe#g)M0CkdYuuz`)GH%BnXlmIG~d7M4~6Mp@epoMvM`9W)3!8VQ>*#+HF{ z5IVVzWrnUECrX)#&OH8U7Cdb5_)GWQoL{osV?L*5Vc6kVoCjV!o5STzIB~h+)fdSc z?dDkNzJk)qx;Y5hSKVAsF9MMSOw;6wz#zTBXfnsGUAKNieAYwQ zptTA}@~8pR?5v>!LDTJ#3>%nmbm$<|>KQ3xn3*C6SKH%Gm+qs(K8<}D1D~178Yjkl z&N?y6Z9Ll@D{&qizGgE{+nZjFRLAv*jq6MB*Eti?vQJ)lP~Wm;|Ea4F8(L@Mf!Brg zYq#c{E_?L4O>S7X?ZBDxsyFQfzQVYEd+yn5kKcatBnkpe8+PQKyZ)r{`&=)Qe~>wT z=fT1oPv3R)JOvE}s>gDa)hLiJ=y+{3JlznUAJHDrRMS;e*nUy>vAFqp#9uf(t^>s9 zTaWgN4_|0}=+*qZe0XtHaq|&fvp%4>%B`aZbgaGLQPS{poyT7GimQ(3(jsj-N^8n9 z*xu%b4_BL(Nga_NOLOi{IhX$+!fHSJAKbJfF0?N`f7Ad*CFcWi>w(xqL250Hni>cqIMy$EspQ| z1lvO+)702N$Z!%d^8YKAxrBon3WL(gK#t3E7QL9m_lF zy54uXCM03MXq#>7y4L-`7a-1VN~o{<-qKEMb!_SZU5(s{t{8t-``M!H-|`D~Ma93VtJt*pb9Z^y`-qWCJ~^r}?UUyyy4Q3GyIX4R zs=f{1aNt`Zo6%+SV_XlYI7u`yU`AHNCf{wOAm8%N5glV6$5du5%xI0ONlWMfS=9G{ zV)DCG%jF4O2~o>mzCCjBw4?gFSI?6_n-xypRXw%L5(Mh~{FPau>%W>60t70@Svo@s3j%=N9UZEOY& zvauQ5dkp>k=pFk8SPifN#DfRf4ElrQcQ60`q<;{!uyXz5APABIi@84yb0Dh$APZ|? zOzTVUKZZZR9|#!pMgm_})_)ilK^9OeOV|Kp=<1Y9$E`>8hWc&9?EAH_g#Ni7ch+@q zIVU2$go%!oQFn2cMeU7ECnA0L4vvk=!acjKtQIcY-1zopy7*1uN5jo=Px8wTtW0op zZ>?@lIehry@MBx-r_@_Mh2 z+SP*Z!!A9t9lC2<(wfA>-=D2HY{^2@%^Ck3KXA)-M(hc1)?v$V#NLX{E-xxhRL`C{ zYtjU+e6)1FYa0T7@=WfFF}nh=pu?q!d&z3qu~Q)j7Vjl>?VQ=5n*^E}a&HVWoSc#oEJfUs!LT^i&NrxBzsy5$gX5354~Y{i!5fCHHrt)u{qE4oWF7RF_9dTkG)Rm( z$7LZ)k|k+J(d?WPc|>W+_V_X`&*>`ns(s2#_7%75`$h*I%v!U5!tAxogdt0JzTU^Q zLlH=G_?vR?qXc7hL+RaQ~+p)DkH?Y%qoa^<;3Ao_H3=hyx5#0UJ;xg@rY0L@EUE+9whT7-71I zgGmHNAPTTjRLfBaz{XdOB=x-@j6@2M6bA6kqngE7D4Q7!TmT1)!^IE@R2I{v-+;Hz z@wYF!h}Uc4+k3c}phONDPzM}8751L~FC9#QE6OD44a)5c-~ZOOKb~tA7yt)BZ^}^N z5?7|7&y%dr6Gx!Z_Fv2UQqB>Z=RI>O8fy!P5<80 zzU-q6z_qgPI=ojYnkWh32KQaN^ri%jm#Bh+CBSKamOcAoR*DE*t+4kL(jT*k$5n^{ zPbg$>Af!@)=LQLZ6BMTR5=jvUGg*vYIi^=Gr}#setUiT*bQJuPCqN0jFZ)0+kt@ng z41gts1csc9r)Y>6tQ(Cjm$UF(R}r4;B0)nLeF}lv4HNK5N`SJV7x7UFQ3#N4JTq7f z15CJo9@vn++Lrg$JT(aGMhy~ZDS>d~Z}OkN{V5bf``QzU$)Ug~Y$c2u=wk8<>TeSN z6yQI-{MTlK18OYrw{RFU2QU!tyJCtcy;jD5(INqHf8*};_q#%oJKz-)1O?mx%kw`f zMFpyWiqgV4K)4{`pOm6my|qVI0AJd0Po+Pf8uYtDzzqlh7{_xcav_1~BF3ooey$Q% ziOEgl&!gxBu)dn_^Y-uj_9^_!0RIU3x6Xd+9DhuquCMQ61V$QL0P|xLbrco~>(BF7 zNO(pUBCfCEf1D1JyJRUFdSLU4T}aep8b1PI{IODgI+E#q zCm~dgzp3Ae0VQ#Wcq&vJBKR%f&wj~4qUA_B62(B`8AvG-P3i9`WT2rVF+?QQfb{4c z)tL+w8Hojq?0}Yz#KDmQ14@m=yCB7Klq-^8=;aRJk;HJM5{c#_Nor(>0j)%mmB=tT zy5HI!=_f|&k-ew}0n%i^FpyLZ5@x{2ku(m{9k2>Q(gjGcp%;lDMqwCOHj=4C5e(R1 zBr6<6kz?UVHXOxd;3!BgvER;y$H2*vJTXcn$3c;Nz;@Jt_e1&0pLM?%$@ zzDn_zQ%y)$I3`d|<00LNm@qlb9f=TQTnuzMkXH;R#O-T zBd`k^hY}B@y0j!qe zSSS<`Z;-3d7%Y*FR1nZOB9YHg^eI%c2sENBJdk7}afxbTV3^5ILNus@XlSa6=*9># z1kw#86hg^nF%cwkxDpn~A(7bfU?G~vCyB+uo+d#E2^h~6CZTJeLXu7%f=5e8Bv*Av zs7WR!BVE*VlfpIB!HA0h0LY5#yk%4L`StSounZoE~12K#msMV0&T*6#f z2Am&88Q!N*6le7idFGt_nYeK*vVAqy56fI*&kv(hsWED_Ic0E)Z^@ zvQgm_GQ$8f_tHnyMtKn4ogyQe$U&t3nFB==Zh~ScREmqhEHl&K6bROZY-R>iNpKe! zhQp?ET%ZawA5E3Hz^G<_6EzeLb7zZ{R2UNAFUa^b6a&t|1X5@edB1fjiXDum@eyu% zOo$sTNZ>BPgqmnNgohtn8%A?id$?l^A#^+kp~0Ag=q#eAfDKd7rAROl<0hwvBEfJB zLP3XN0jo|(U|*IQXe!bli&imc5)_$(3uOq6C=Vskzz89swH!ZJhFOD=ap*`Ul8R-z zu*gh`8_3My0!Q zks%xcj-i8M@f+O@lq)9jFi?Ln zH#C^%36)^EZlr#u0vspT^9WFZ391wV;1z!zPE7!Qgqq+mD9?o}3g+sA`53NP5p3r1 zSrUm9=St!$G*S`H-IH(dlnJNr(wFX59MlNP+jKO?@L9Eo8 zGyoJx427C?1V+E5xP*XmF%vjyiGT}*1L=}zv@kG1!jpJV;aI*xC#4wO08$1?DwVi1 zLqdb42BwF=RgadTaR@oztdMbVo@zcEB~y|5kuZi3M34*)nB@yl1UWeng;wLjVN>!VOGB5fz$1iaUt{{|WvH1dN3J ziDBeGGukg$tw#jmX%v&%#TeutNQJ=NR6*hHbgCLGRU(B9kp{z4vcb$y5|OD431z|E zsDK5#kV7P~$iZ}0zhO7ujZXqv9xudAOb&MC@!=!|MdcUhPa>%pDw#q3k$Ss=g*QR7u|7#Y{!u+<`AASsm0QyYXql2E!zgA*!^ z?i@IPJ5u38g?<`6EJPG4lZWESY9m?c8Y)zU63C(SPy;zkBGhZbaHenX4m5{_F@m)u6BO&gBWvY&m{cS(Xkme_ za6g5=j*53D7;^x&RvQiicBIsljj-a0VnI#EHK2w(_IhYBgGU0tnRMG2wtux@hKe&9;54wyH)ho~vKK!iI-q;a8XMD99%n3$&b@F0q` zSSd{G5g4S?(matK2(y7l#{?tzentp{OhFh!%o+&8#gpO(<JzK51s)_^gh5D<|p6`U~l~`wppLTzXLeyC0YF)wpqWzzX3S=yKJ*Q zg?|Td_IKH4eG2~$;Oy_R&H5Dn9l+V&Wt;UW{5ycNzsol3Q}}lPXMdM%)~E1a0B10W zn}ioe18!V?a$F#rft4WK;9xTXErPqz+zBF%oUR4{62Obs0BZ&vrU0;`It+y2i2?U> zDX0L0!jGeOQv!sQP`H*3?)O3mE8GbPun=N``hop>=?~~$4emOe+0z{kpe@ugvs)PC zk0F0TYeM0Cx@#B!ups}1pMTa4P^?%G6~M6QOW#lJGEa;P-3HFa$vP1m657AK?N6Uts({c{`u^YmPYcZz z!vJOvPV5)rVGM%wiIqRaz3B`6z5D>w2a*8+3Xml0pKt;^3QC|W;79i}1#kmULU5pj z063AVFZp1u6u^jZ0py1s50ot!C|ef9WbQ3nfYn3ddI*8h#7`#fuM{aj36nD*AtpYU z=Pxr0w1AMT5933E^?eHZg-nPaR__+xTX7Jr49o+=!3cofg#z*gBs?4_79&6a>nlSH zpk50#dcpx5PA~n2t_%Wm-TE}c(OQ6_=H4F`9n=>VNk#yQc}6#!Rsk_W0QL+a2m>Jk zw-JQ0KZPc(A6SGF(}|v1hzSNT;QBm-_jxdd^~*?H9UV+J0T7X32+^fqr1>e*_K8FY zAfx?{S%?Uk8^BvJh4_JmI0Hh>z(9gLR1geFW&%Jzz!Vvw4(XGG_DbA?0SP7?0I0YF zQVs?}MI)p~TtDFwkFNRE*SmeIuka7X#sbJ5Qha) zAVGw{{fR=X#0>z0g#hWrKd@)Q}q&XBtZaaOpFON(!`#o zP^}uMfDlp;j?a~g1JwZLUdL7%@hXy1?Mf#|^?vS@a14(FB$weD=B{_)^jC@t4;t*} z7v!$d^WDv!1cDz*rZiBcLOvV9p#h{4cN&d{hLFMlC!`9(43W7*JP8;-lu^n?LfzDO zktfyz3SrS*#FYLUJ1>k# zu6OrCBIuqZv`MBW=mA)v+LKPg01ZE!ZGgD+Qxg415CG1C@!<1aq#;Tp09Qfb2pWin zC2txo40xQ*e06x>#4uN(mLny=P z0Aq^i3DA9*A_#^6aDagB$KtU(Wu7R48lnmHlfeP{4Gkdq0PZvb6yk!F27y%?Ekpr8 zfBe7%fVpzm3E{}VfOBsa=^kdV!ZWm27ZhR+r9)&u zw^53LxWQ0>HwBc54)E7c!C^u?zFa2wO}DTk=yG zP>KDyG@$+@=}RG!fY3uo1Ok9o)5>6BKnaNSU`c;8KePD{eFmg^5XAML0|>SL5I6^{ zHS{SI1Lc5~(V;-M(=*{vH*~N}L^L5-dN|ey(0qb`DPcd$xbM%5ztB3r&^lB5kDut1 zKk#vWC&R%1Gv*B76CeZqA?QEsCV#5^10SbXZ68|aZ>s%6(0@_;e-y3b`k!U9A1(6- z{K`Ml1C-&vLF@cY&A-q(e=5-4GVSHG{6g#e)Vo?1pddOb^e>w)qgtt_ZRSgG~D+0iT@ab^rx4^{>Ro;|7(c9Fi3s1-FG*@{QbRO zeqoUMJIVi@?|;5m|6hsaS0w+XV*OQIzl!U>R097c&%avNuj2YImB4?=^Z!3u*Dnkb zV8HhagY+lUL=fnA{0-yRhxJcOll9IHCDNbY-n_Mx*Pe#)(UMW4`!#N>zD<0HICG@5uND zj=p#3gCuf#Na~j5xjmqx7h52wl%?6t6{JJ&`eW_n7dvfUM>OAk4?vdyAW-p9YU=gU z?5n&+-zG@cun(lqjo_B8hdV9;P^OmUr$RqZb`IHmYI#P7sRuObgMUk@sbzZ}ApH`- zaU7mXtk4&x7wD@XT$K3jD)KaG1?p|1mE@1g++(%XF>NGpBd)n-ZF44=C+3?QKR^etYecwoJ41Y)hr{JAmC(Q(UxY%8n=> zHvo;)OL8hIhE<#88QoK(i#tt5ZDnZV!Q~I4Yolmq)=~CMc4J3HSNS%JpCweo>wJNT53Id ziA=OJ+ko@u9zPcMfFjyn)KxB99Q`fnTSkbfl~(#-PPA`RM*Hy(ml`Tn4{UvXzl=TO z<8}Y#1E6%`J2jfdivgJz+b%u=kWlTqFYk)6zRUIA=FGYW9v#sadO(gLI-2jz+^~$GOC|=FBB>#5{dq7u!{}DR#feb#as;2OM-Gk^5-O=M7RbA`On{=F}vBf%8`QiCM zRfrobMzd`fgn)! zL=b2U;9^jRNg!Hoi@bM+aUUlCSU)*+kj>Ri!{!gjxWR?Hy=3^_4Rs<;oii%H^$wg4%^=UQWx?*sUnDulOyH>Zg|t&Y6CAfTg2V?RL()hwscY z%iy2sG2#^wVnp^LWaRCNXM14Huy3Ta2SXOwuiNQ%eD+ZHaSvP2RLMG9ZLHv?m8XU8 z$Ia(&pofyJC(h3gS`;Ad6z!iX3bIvgI4WP{xr{n8@!eW#?3$QkkCedykLQ1z2x29i z4LS3y@zLO@fvX}N=iS!M5l<}M=pS*TV8D&F2}KJZ%1#OE$UmwaKJEITKYuRp<*?Zk z-5owneArq>eSUc&-9320yV{yY?W6fc7ShsI>y^!yUzPZcGxhK_-*DKd7{B^*e)f4$h*xjoABTy#%;&E4S#!3f)%?7J6xUNx`F z$htTsy8Xu`UP#fry6B$9g4(FAieYT&i-LT|uFv)N3)G8xzOJ(w{%upq8dwocJpH~d zEOEGT=vvPK$*YY%@lmmXJ4DX5GpWaNLie7Zd*WV|^Y(`O$2BTZ#HX#R99~!kOsPFS zdQsvPKEviy(C8&4K6eDWh8&>qP8~imwv71JVL_R++M*1<;7R(qZ~F2%^ZOTT2I&ddoCzta*kh93^zIcixZ^osNqbL1=4 zcUiMTQ21-nMe?R#C$_b0!PZzoNKs<>;BxB5&|5dIDf!q1Get)w;=Yi@ z+1mTnBkjr04~;XYxW11FwtGg%e0wdfXsst?hT(gz{Y!-Io!{o%#4f_7saWXKH#hPI zoB?C*P8*I8O!&AYjsG%Ar>f1)++Q&d*>Z<}mK38oKgBtC{RUycj;4oDO2DJD8Co7!eOI@YS=g6Bo` zou2Qniw^I(dtv6?!egE>v=L9&Qi@t0_+%$eK4?3mD!Z}P?$!|VF~zL4xrq7$qlSiu zIxHCdI5FkLJNtuKrGpMk&5=39!sL@lX<@d!AqDU2k9fT3$~!!CCmh<$4Iu^+Y} zX1wjmTGxS<$99|6OJc23%L&hl6@=U0RMux26YAboxVt@L5ths(NJBTye3f&5Atfzm zsEkpeTgclq@3{Q!xRXJTc1`&b`t-|MO?8ZLx2131k})!2#g~;^c73@a+T-y!ee0=r z%r)~zDS6vaF+O*RT)k3ZNzTH*zaQs(oz^r(BZ46xTI`m8T?9_uK8? z_@hF{S(htH%3gui)Oc|&?O8=Ka<(t6w6_=&q+cQ9MFm)Yz4*QU;cCHzmqpHvcIp1x zFWo+S@6s*OyDq z!^gtLX2y^f6y3pp=9L!6V}D*4ylKh!5iGh!#IS*5Vo(QIDN`lO8}t`q1oNBYP15?r zFN;{Y;L7)&Q}MB_y4Iu0PM^_~^TdyX*6bRw)8}qFbdWCd!Xf93d8&YRqlSPsE0Wk3bJF!1dlO`cBQL3e}J-*9=BjNOdWMsYBM66 z44pV^@ta`i<{W|4uKS4i!Mp)+)t>Tg33Wr$mrdICdUsb?sQTmkm6Gp;yYa($JO}bg zX5qE%PcHikR%&b{&6m3rx6?}(r0=a_=mJfMd;^_|A2xUb-~}{{NWd_G-($dM$spiv1FD3Na0GtF zYq5MS>*scHpr5a^sf2PVQ!130La$4K4GwJ20k{OV@#*_zl(1L0aUVi&N5P%PnKp9{ zuDxzOFQY_bS!x^1d?IekTSZ&3(z4Ee@43Z(2T$B6+i9N|7L)C3^!eC$pGF=u@>}u2 z1pr_N)z#9`TIK7-7!X>5csX+_VMWZ;)wVGM+Ae?1_qF!&Io2`4QJs{w_hqAFkJF=` zWnHQ7PCm%nw>jCs&Gi1hDb3Sanp^U0Rx{?}Qcv{|(^#*_tIDad4@{j?mN({NhUs<=hMp2FNWlh()2BBnXZ4VF=(-0r6KnQ&hs5uC>Hmc<9p$8{GY;^y z`r)|x@tp2x&~f{sJMd{X)bZr{A)l6Y7F;?~WNm@NfzNHJ@jO&pwj- z%{A@Y9(bmuN9Lw!gJ!1ZRZgB%V0CdN>E>cM_8@5Tk!6!1uQ&%Rn|IbvZnb0DM?lpm zWcpbc(lVm6@|t|m*eh<++{P9ZMvZ^tvU;pzGVJ}8@3_gglJl>qrB3q}Ov}HX5qE() zIrbhism>Q!>^tM#w1&+^zzzNA1G2Y%DJsAoJBV~+v|UZ(gRhA0ksh%}UfV|=9+GT6 z9oVu)G4ROlTQjWe*B7_NUsL8O-wL#6g1-!Z@ickMHg41EM9=GF>$aI;?^8ZxiH^fg zg*9frW{o_zhP#4Pm|XH~@#9aF@Q))qY~PXZp@OZ6Yw9Vk-M()Y545eGW$8R~)cQ?m zQR+4a(V??={2iM-pM}F>-S!}`X{dnluzi-zC-=R1cIn3S*E{@a)!*ZX2fP@cHax$BPY3iu>H#oTkCRPqgH&`I5g&3)0uN4gC-9o!@kr`t6lzWj~}-=#o@}d z)Qhx-GY7>?+1}d_2h18|w|(mA_34RMx_;bjwp()QP1Ay&?ynwHqLX{suK6i$%%)LC z31evRq=)91Z%ggXjSPLgX+ma4=+>tTPff|DcktgFHrqX(wKe%<{-ZS(!rP+Qk~2G( z7R1#3sJim~ow!K&uo5-yRlu6F$kmt29z|qjIX*Pktls!A)p1!)n%e`X1cA?$M}rby z|2Voh)W$PtLS5&VVw=jt3o!w2@0NFTdfbrI4A{qCWRo7)Rx;jWYmtMQ&$PnUbl zvGJ&gad@SBl|9hZ>^-{q{$@g+7_zh_)H~+!?vkB;_6;7UqU$3Cj`6gSt+t1W4|q?W zC4IDQdcC)GbYdcd}9W8EQ7Zie{kiSU8;SwF|+2{kIQa6Q@`^3VOZ8d%QJb6 z7glT;#R015VO@~$az@EGr$PSO3l@hGk1^cSmhwK&+WF(c@f8Q>G9K9^e3@n1GU^-p z=FSdn(paYdzTBw^LnEBMYAFm)S(MG%`}nh5=FumU-!k6p@G5uToHMj2C&Noxy*=F9 zW%!WQ5YC;_CujDTgdKw{`35cU3AmPP5EW02UojNXzM1)i?$hGyGjNh-t}b)DST^qU52#UFV<_%y2$3y<14)ny>?AW zf4oEG0lw~AUYnU~T2<^G!@ zT4BScl|ap}J;Yg$uFd5Iti^)EgVV0A{=W3&?%~UDgT24#ChZ^d?9;r0AA{Fkzy0F2 z-8;B}eJf^wc)J|GasK$q;^dCaQO(7=#0{m#AHKOZ!=v#^ z`=lF#en1*`ZouN+8S7ogc$~a)2{SJCnqmBys#9JYV({eRCjANg*=YlDwx5HzMJ-DI zL#r!yUQ>H|#BaL0R{y<%cS2=7-6c;A%1kVQp4%C*tU8UG`*!p}4~#om{Lft~+scDhx%rp!s6OA` zWD_lGPw(A?=i+C1YA?S|zB7v&@BP{*??w3LNhb_G8$^a1_FEju7c_%fpw6(0G?)D! zuZhQ`n42<(lOr#OpE@82?M1?-l9!)nppIPku6S0Kok&D#vy$ldj@%f(a#dAR$vWNS zX76XI%?)Kw@v$3=r+UBLGIvD5%&qrF3`Wh|@Z7%5J8H~`N#Sdnct=Y%O&D@tlp8p< z_+ioFNdDgV3UbX=jM0CP9b)sftlcc9g;VDTbzYj5U*8o|CAGIN0Iza=PgoHx4SA{F zB>0ez7#uoaZ`{F6~j_Y;nr+Ni(lw(Z`a#sh~#?2KctnZISOK7U{pBxHQ#)YXQ}3z>6k z+rbCo%0{I(mJ^aH}Irs<#(JoEuUw*gfov^k~UU!i&gcK6hqk*~+-HuCpPf zQYVdaeKil#)Nq0T*6$lLu^X7fjNgH_4@G==qaHcn((D1qNuchrD?n|*6Q>otDm(+s z^gsY84RaK=BIeIC$)VZHZ*c+Mb?@h|$iJ|ECI9}v!o2=xwskMs+WIH)`VaVOU>^X0 zxIMCuX>DQs4*}HD0$DIXYdz2%;9Uc>?A|i|?XWm*8D<5y{xkEsBd&A#`wO+NJM)** zR(CAhMCmA4Zv0yKBSQPiyL`iYzw6tR{g0=fkojE~fMf@hebll z`0Sf*bD3$jv#%bLEvCICDE7g#p0Y(fnO#SX;GyGp9zp!u`6e;utP4uPhg zNlSjPWY=Y}Y!P-eVP*Wr+wANtQ|y-gBcIxajkW`>j?vOmrv#Pl-?@({au5#len`U1 z+`ey_!;o;|oY&hc__OFVm$h3(8@($?rtG!HCwmge>p+ieUymm7XS-Fp#O(14lqFX- z%-*zpzvUjnoL9RiG{&r8X~)tDy;9%?p`XQjdU?lh+ckHHP-*jYdOSZM0GJ z@I?v%Yn@@ffBxRYkpYAKzRTWq=`MbP6s@jUFJ{|Pb87a?ZZ2)ezgSc&jaLi{3IdH@ zDm}d0yyQsJyg}@9Gl%9GvSv*xIh8y#@bL{wN%BfX(8bY*aXTGOW|#vEy|M|hz-tp|UXp2c)a1KwOVFKHaQhsGyk5UpxbaNBXv4AqD{%t+ z>2zK0^io2=ShjiZvw}tVgJ$BxllLaicS=>!^fOCuyw{h;VX)RO7dH-l(PHE7^>qjl zKH|I+jT`di#j?wZ-=+_k`2NJsYjzW?2l|aOueNXz?8~WW&*cX)*4&s8GqpU_W*;tL zS7hYBSDeyNHjn8 zHEOeO{paCB{gB`9=P{j6TMVpyYPTsvb>XGw7O$Q5rTV#Thd2v`mttoO%=6u`le}6u z;NuBg#kQ*T&|^>5FRi%aWv7`zh`(O!`DIHDPhxR>>3xW#?DGL!;NZkIr>N;M&DNkd zL-+WiQ)-%(C#DiSG{NfnTimj&tkzW0ocj6Y^h4^`iASq2F;?+#0cr?+j^6#Q#{l8k z^|ja3`>xgQ9qKAFj!=C`9&*Hb;k)A*EfXhggRG>kXmE%|9Y8#E@pGuF9%iwojgYqP zy0>o;Pe<&z>s<;RM)t?7pwpdT_~WLnmZxoVqbf8>$<=W9YiEb)N+ihxw^5 z1x`s7iu=+dH^cb6q^{P`2y!B&Jvo2Mv6b-=bOCI6bFdQ=IR%lq_;hmRP zU#PW=&phZ~a(`h-&MN8lgJ$X@{j&Kf)h$KoYrVm7w%v^-(wv1Uj{6nw9G(-|XExTe zvz!{|&8ae^d7cZ3-%{{O^K}w(Sb2uy{@bjKJM4v7>vfyQRd3Bl-l5}@8 zmUZ|2;P}k!^JTg9H%7Y&vI;{Y_C3b1^0Rgw*_3#C?c}u(_W3#Pq3ft=RcouIFuW6j#27%FwXmGmQ!g~k()DG3}Bz0si# zv4Zk>0r?agMVwy#>?jz>&g?)3fb^r8zLXPPY9d9S|s0;9)o&rJUDpq*Vb=~OlF z%zZcn*bEQYl1{7(*Q!-~RWKw_D^ z_SSTr7`C#7v|ki+_i#Yf@sSOCrY1tGK$9xbFp;d zv1oS>Z+X;|r#hrqs6iiI=*7csm@KVr>zb`FHLyn=?(6_Ip+~O z2*-iz_nnf2l1Rvja1g(rKzVqVg4((c_ zpO+E#UWfB}#ZWI^XXRaOHPBUAZ`u>_0g-MSYLh;#am2y}lNU~wLmQV>NCk@ zVZ>9P3;o4O0fj3x>qc9OmfuXqB@MwvW+jHd-Gaw|8@&6zb8)xm{c!JB)Utiu*%!xE z#3`rI;hTu`sU5U;3mgu|Jy_qo?a8%CZJ{e?G)au_SoUj2UAlE+&hEjhLLV)9zVqHK zRATqgOqt~Fx=Dc&U(u#*_Y=Gpyzj(LAdYptId0zVhs{gM8yD8rJssuJedtY`UChHd zhf;(Wg&C_y%n3|9n-ETqnQYCw)jDT8%C=_vixj)H8F?$?7MuN0Z|8mT;dV@q*+oyV zDU7g7RN5DQ82>cOrt;00t!Y2*w7m1M)-Sa3u-UR>`G%9>nRZ6&u zJ~+JRiHHfTvt6jOx7?LUy^g;r zPQJ8zf#xmx>W}d#80wUh8>cy}RY`i)@EXB{90HHt1Eapx%aCJV-D-zENL^Yx)$d4T z(ZcGay+g^&g5p6h%Qp^8+#p;r{NaxE8}kU)N2k>rr!C8?f9&gY2Qq(%Qf4=8`C9bw z&Y`34mF%xbL@!3MsmtH$mlxlhox9~&=a*Y;1JChyyc)6h{1(s}nad5~WIH@6|M7^x ztS2?uV=PDK#JpPuZgGmkZ$X`-aF6`p74EGVJ)mXKgVdLjVT_tL>?c(*R&o0>uTgcD z=giFE+g7q}#7Hz=gyEr17xR8hI0eoDZQPR;6?by+QpM@VnYZJ^vbm#=9D{M!6O-4b zSX+Tuguv|+g{+X5%f|ZTW8T`=GaqM$#m7R&;ugj?EFTrH>WMqwE^e{vlgI8!E1X`r z-dcaD9z3-*)^T9ycG>YE&Cw0rN2fE}pPt$XM|WI~aq_zpMx<2T^@e+Y$c!D>V5Dz) zOBnd(h(CMy*?Zi_ zL=9;3zpkDohjySmIxtbu*V7Wmsx z!TS3)wZ6if5&7F8c_U6_#6d3m3*Lr)((F4q=uGQo@iye?J8_4XJMla5x%bu#ihjiD@QxenUzDBb?x+y9&C0<;p6FXGYGOR#D#~_6#o32 z*sePM0po=mx5A&_@s{p!Xq&U92Qly{e(Q zjo*8YpJ?Mhc@JxjZsH3rke@i;f2*~-s*!ve6UfF!Ijx@iu_-lEa%SiJ=pnS%2fem& z)^?4WbhYg}KSHgj_g#JJaA~I_zs5as@HsH*SZPh&5w-K12sF~=<1J3afSBypH!nZH z7lqfEjt%bGkUb#pw5(q9!J78azRUwed8ED6${m$vI!f65Rb$^)IJIW^`wykY>bZ&c zr(t!7H`4B13sHH;*1I))nzaaXF!vSOqQgRWuqB03LH!QCd3xD8;eoh?iQtXXHk}A4 zXdd1~?-&(p)MuSM5%GLa@iyz81~Y5Q$l~ix*6ap*sr#^jOU}-6q^~Svd`Znfn?poUAH2vt~pG+E3l+%^nzav;3qjkCAgpTJ(WiV<6-tOeb22NAwhoxL}Yes=9qP(ot+8^ivGN9daH2i1 z@QTPOMYl{$r#_o>;%-Oe^$p)4HBzV3o?7aUWwRrBUa&D#zjc?6x8>O2a}HWDZBrIb zJC%~J5CjH~9ddjzML4d;+}&`@Q`tC)(`V+}j9oshzv%1Q8<8B?KqEKJ>mx zo$a@49BnLX&g3J`&s?5zE-IpXfLYOBOqwE@+;@k7HE$=dFdGf{=v$N-q$1WI)@8fX zE>Y`TMy_op6rt-E>inM$p6(B9HpG2exxjmsc;Uvl4;zBd1e(lcAx{V1$b6al-KVW5 zuR|_t|`RArCY`k9grQ==Ze1Adr zwrMYj8Pl$IT>fO8hgJ+G`Q+~xMh)0_@~mLB>%12gM{KZ zw|1Pt*7_hR^!w12s_bFcY3UCL1Dcc%zgZnAj(rqkztL(zad}i?&DWuyeyU4PP+IwdMNRR>PET4 zH9H$r?#5=(BZtrN<(1z*sG@w+DV3}3u6*=Vg={Zdh7voxd6|Fs^0Zx!1w9WAc2DaX zeB1QJ76tk`KPk@Jb}R>Bns*0!DXwSzn=Hk+ZRxM~T9hXpv3ftMkoUwz{(XOzFrcb= z<@zmqcGlcPw-8&R1UG4aS-CRHBd+iXz>eN_7QklBzpc2nreJB`di(vdXJOTd)X3WP zT{bwM+umpQr;<`XjBAZ`TB4$LW*x8pxIOa8ij?GdhlJdjg4Bn#Cq{M7=zQdR`fSR8 z4MTQJJvdM4V}GBUQZg;s*>&}RlKR^2ZrzT7hS?Ci-IHlKz8|QTX;=jH#ICyQZw`Hx z-*rYZ)(R%&AkgKTZP@s->e+Ywn zqGO>a$#(jkc7h@Yd@F zH7K4R8#-2aJbBcp!weg@>eAF3it)uOBR0SE-hE)ehGSDkzOo$X*F)~0^$4T0^51)X zxLhw64S{Y7$ZXQ2Z?*2)vAq7(fp1s4J7-O}#o{k%Qq+`hubsfDw&&Jd z&hnmUGFB`*wYm@ z_e|`vj+I2nZQGBZo&LY}-a0I+W^EfM6r{UTy1P?K8j+Ne?zric?v(CsZn_&qx=WA{ z>F#d$ZhfBpsyy!Z`}Uu|H zv0QxYmX#wY8Q%tlCYU6(NG@X=DzsZfb#6M1hmAZ9N!fYeGfo%M3_9c?^*kUVV2Pd} z@wj6brrkE~ou|tsd3ZsaTXV`|N;nLBP<_gQ;WIUpyEsW+b0hZU!ey^9mjFDrtGfer0;4ZTP;?peZeW(HQx>`YPZo*aLi zc0Ju9B0e6z>=xA^i({C*S{STd^e$`xTzc4<1CKae72Z!-qt=WczqC8pR#QCh-wepv zMa*;d_hE`K?Oj1)5?|xtl;{-ev$GGkjTP%H$iIPxp4H*dnE5i=S$^9Pd+m)_C8*t&LhGD>zS1Qu2G0N8`n;D)kr>u}aC_XR| zuysh@RE<7S>OHpCAY)Y(8Me6616Rq0tLf+B91~b9_To$YS%qyz)(Cgkk%;x0zC1AM z-O%TxkkqKRlryd^FEmWr!iu{m62FWBaW!z&mG!ySfd_q}adJ`Lu!Z46RmwN=ramT) zLg7psCYD|8+O!z@tvOqo#Gdi>!2xKB1J5!oi8jARv21imvzOv8R6v>EKASirew#u` z%wNOOHC9TLaJ8=MZ;J{!AMui>$28>N^)Av;)gbd1_LZi zI&2-lh@FYbUOH`(AjAwJ0m?JzJID}j!_NU_-#);V9fow=36_D0p*vy;U}@1F>%b3m*@fOC5x*Uj z4d#3PHediF!```qei`c^_~EF6qw~-M?!=Gb(Ei7<_{Vdu6cjisyo zgUdK%??A;=?Q%s=h!U_?$qI;53gOhU1hu8=9{3UcK%Df0dsii#fDPTNu%)|b%1TZa z>_kQikjDjiMC?RWi0+KssE^%51)zT!MN2yA`CzDtjQl4&w{EjhQ6JxJ;Xt0`8N&}I zq%$*VyVgC>y!i6P0Cg7-6h-X5mHK20kl80yqq)R4NW>@9CO0O#sp}n^qqTaO+!p4| z>QOceNv4$}$1hjMoyr*PDQ*Xl&3Pj*x27w`CZia}Us}oziC9cck5AaLS=#+A4SU`% zlr3x&qJX&{!JXv``O)zjO_zs=^#@1?7QvEl z#AC{C@0Sf)OK^d03)T&SEi4n8Dr;(Yox{wN+ZzOO$)2}d=Zaj|+*qLU_uAdtgxTzF zSJ@5%J5e!nPpntiX?CW?=<3o4PkfsA9O@PHAhM2#^7D@YJbL*$0bn>lh50^tW%P4IYI#H<98^>=xG#+*eduPFvZ z{#OD3g{MyyEnX)_%phr(lwk6QL!Sp8Xa;k*M{B3VXPpO%D3_Y)7R|Y`Tpl{1$uYMf zY$rhN719yo1SAhmJgH{4=xA#W8yJ@Ha(pS6KBEmDJtn@cgTg3XA*=lK9Y;-m)h0{z zjGv}rFoZFOVx&3E#CXyW{{VZOjjhp1|DbiTBCSD-0?piQq>_tSp_Sc+f`f7=2PK2D z61j!lyn>kWM~*;xWxi*H7yDBJ*i;1_*I+;&9Yt}NrQR?dMd`TWe(mA_=2$k?Px9x3 z&qPewNWCuEK79;k7xBj75NUi}nv4@`<|M*S`l3h$CACmR=WCHlRw~GUEmR>OjWxpn zm#S^H;~?dFUHY*>u~e8F5>-6zFPr(UIi5E?)D{T9LBL4HUCx>@r5ChhldGN5qduR*u${|ZM6Z9p2v z`!5C-#h*{UzXTMR_=`uslji4p;gQ7jaa*s;K^V5?3(COrKnpV>`&#q)1q+n!0g(X_|A(QNvLuW59ikm+*;Q?I@ z*i#7G(qRio+Eg7wN4Fteh?`$}BHyFj8Q^%Y0S=?L?UFykzYZkB2VYOh{x+Y--hiC! zRqFxEaI1HPj^BEvu33yTF=f#PCC->JrR|$?@{oS?R`heYQt4MgJ}%Gp*!RkY4C~IQ zEYK60`8|5icDEXl0VfXJ&zq;dtWDQOZC4p9VJ)q+NjuEUu>+;o_z3Hp28T0Vz0ywl zoL7vm*FCC$=xCX1yNeemk_zQw*57V_f1?@^RWlM+6Pm;KD%>%D=zY|=--DBg6f%7f zrYH$zfo=fV@!}W8z-qcnturRF0ZwG?t8$K`JxM~qhpc(>v;vLU!S$o5B7%%xSj~y=#8EM^z67 zVexi0=$hCdc5CoDJZI1RJU@%$yRi-Dnm)@z;pENbRT+nL;8MpDWuqhBtUEZnTI=gG z^RME%>W|*ahzgOiGc9^333*zg`4QH(uYNv#ijB*kEIR7B2GY7%z!kU18ygG;i5g;F zV)p1~+mSicvZN6gx{iw6hWi#Y7bLP&ei;B+DxiMqtwwigIo5;i_M)|GFYr?myxke= z3Aq&1#3CaOrgr9aG16?4>|wuV3Vv|JbGA#2Gnku@xGv&p_iE8_`>k;Ath2sji-*Ni ziPHzSX!5&7@Vo9rwdCEHXEi}c7^Q^urjxNxsEuCJ3#l+Syb`Jc@W|5Jt`fN?&z@Cv z1-|vW1s$^GTjAHn%5hPzFIcdT}efELoxS*<^V>!09*cu|!v=vC;kvlh7}RP}fp$&H^RGLu$@O z_xkLC8Z)!8GK%&hMqBQvYk9lJO4KZHaVz}%QR&ryyYs%-gkx%@t46$78Vs=De7WOX z*!*3R_4hM=L2lV<&vgNnC8zS`%l_h3$*t9ZrS~H<1+DZ?DsJA2jtG(t;EehZcN zVZy07EkT$rwpwxzr0UPa_0{RNCpxNQ?(VcIKk!adt6yNvdZ4tV)C}B<(+=Rl*z*)x zv2A0%=0md3(sh!&Ir)%+>Q@sG*`9phL@PD0^ssXRg?MhNmRq=6Z5)?vxXA%|)+|$r z0Ljl&@bCrC#NmjhuYX0-LBgmRlNQG5Lq^Y?5TC7o#SxVp@$I4w8sG4>ORCFPU6iyF zHWS1dgz5d$l}znaXx~Af6Fsy%uJ;W>uczd1IR&#T+{eZ(4cjISG*k^XT#NMt*i<}r zU-FG&E-&m^E_-Mu6g%MflQ*?r`6f}kWhjKbCI;S_ASp?P?m&ve6$Q9A6e3;v(GE2* z^CuIw7U~agZ?`4(_MRS_r({+bM@b%TSVl>@7OIlsF|k=lmpQy;AAnL+><*O2tLfQn zuxH-VdB2{JJn(e*hAlnrsNisj^aI+f$%9PbORMY7r*l|A9V~1yT~1aeIE*(s=q3|Z zMdA^7bE-1O*Ftp}O1Et@!{JX>)$P1L#M<|fO)J>EXcj2U#23=lZPGHv1~ z-xJeI@@V0)Y7xie*iuD1hL1BqZyi$kva|bg%e=TZ<6!{qYP)8gpzH05qS53=KgHT| zR=@D4423ub3A#Q~qA$HG@Qewag~{bI_FWi82Jz@s_Rn3kHu1J4=n}4sp`JKc&mq-GGR0b2plJwu4w6k%h7pa#N%%D%)HSO^a@y3UGJ2&P#685` zU0t1S?@cy;S?}-_QtotgMXr!k(SVl7YDyKlN_q%i^)jxST9MFz?`ygxXhiGs0wFwy@28TQEtDzK#K9 z*U&9Ts-Nx|3_D4wK`*%!snU2qX*^u?{bfx)E=rj+T`2afwdHs$g}ziltL5Hiv?*$9 zvHXZ|eBNu*w`64^r?cs>X43q;f+n$+zGIMNhmdC9EFy^-+ zm2XRJmC%Ru;4p$_Ae|MG)3ch=zzXIJ>nP`jn{vz|TL=aY90QHnTajLb*6b_O4zycc z+^;1Rx=!OKzGX0tkrt)z zrEHvzjgxQOfaBW7Boqc>aBD=eL?Ur0@DLt8-8_i#S5H0uKFEilnY?wew$tsI<+C?q~`-`5(iu!kaKJ#&;NmdJ8N#4TX`h+1dYSBEpLL;i@M&PrWdY* zj=Dzl=$n;WXN9cz%Ty~bsWHCKbrZMtWJT-cV|{j=V03P?TPTWmu1dKddT1ZKm{F+q z)f?!y?EN(;pFI%|xIUG+=h&zR^fAi z^v9oOe^Tp^jPnh+?{eh3-HIF-$Jqs!Yozz%!k z+%$!#Usnn7EQO1H4LRIK0g<{0&ZPHnjU(XQ9aPhD>paTMN4bb;Ek}~Tf_?88R-gA~ z#yU@k1Y(X~T$&j6jMuAm>0UN6hb7d222!qmikl zg8iJpMS}!vXbEBICKVEx1Kg=I6cfCjk%Y~i9F=1rX@xRF#S0%3+NqK%mlDVt6t!ld zH@CD^$$s0lAAxvWSDSvv9BNH-b`!`?YnC#b_6<`@;rcnf#{8+MR+bYgMZ4j*`xiP3 zESuj>%<*dm(_EUlNG$S2)Q%xgs`(W9#vVx&BP#fiw+h%-v4Nj1;Wdp7 z<;y}Gcvi~1R6jbIFQ=G5ah_0(iRvE62c3&KsOezz8Dkyl31tCIRqw0eD1%u24nMWX z`4$;#%Yu*wa3Kj8e>&U9W9)EL5lXx9oG72J_cq{M2N&#z@6DSTH?{n5Ii+Xzy-sQ0 zY6)r>A6;D|#hN4KGc0);68s$&yhryG3 zVIC_b^NO}MnLwt?r^p8DxXbFHGOhqGPTQSNkuzBeA14CtymL|S{m>kTO+WgEGpc@4 zc@7O-A+R59LFE3}g8wM*Lk6A0HUny&oT!3eq1)i+qB*`;o~05G`3sYx7)56XoLEKw zGgNA%$a#DNsQe63E2fhzDO_?1B;T2!GrDMj2OcG%yj`!YP<3dttPvxUu`GKHhoZ27nV+v$m$<>Ul}x zHDl)yV<(1}`dWTWARkM~TxAXajh0kitihsU%h1dntmd%t5nWYbz}kBwBVw$EC$8TsruI;63?MlxXJNn$ z^hp^WLi5YXJ`hiN6~fAwiQboA8^SalE~-04NM}!$)y@b9o3Hs5>V$m@E51+BI7_R$ zyc+QinOU)RX)FV>7!LrrfoAN7Daw!UEEPj&*plO zZ+s;me441_5P7vvCGnSE%hb7tNfFybi7iX9b)pxz1rVOKFi7An@Oj;#Hci=gjaIT* zTu)9|q)-Fu*22e>JTU|xzV9Xb=aQ>{ofV#4(9GctB^Vg$zb2Th94z$=Z9$7VzpuDj zO&YLT;Xn_#czTT(00y~75+$ldD#IetokSwWM8!khluyos`F&C6OkW-2g!rcZ8HUuh z-arB~Racpo6IxfxJH8D{q_d9u!y^o1UmQKYyw%wXMtXfO37ME!K5e`Y{O)bf!ojg3 z$(VAUXyE~Z@Q46y5BnW_Bu@!RDWDO_d=E|1d%kol1@W=S623wSxJ4~s&PkQ)G?b~7 zq>N#Ext?0p`6S*l?qMygJIJo@>Pa8GZBBPrxoeGIdt+*eR~gQ$=V+S_eHFYSd?)?z zoI;t<5=PH3GI2$6GeWI40ME_V_d(I+=iA1SCe#ceqxbp^+}Z9b(yr>+O} z4#OB?!(K)4r(jnlkbH<-#1FAgH7atBkr@CmF_AO!lSEfzKG`KpgYgbF^{l-wsz;gIY1YT}&@ z?_wL<47Vk5wHCyn^;B5OMx9ZS`;Hl&@?6D}Z9nY;f?;5<6Pl&8J|~7Avk0Z%BzuZP z1z-DsznkO)>X)gOcer5FV3*9}@6_1BDvT13s+uq;C+Ug<6!$`wbES1Hhj^{|6EVFg zNs=71y7o7nw$mhv(RAy^1ZjZQrtGUEw2GGe z9?8Z5-1-js`f+}z&FP^GmG6qoOR@od;#ZfMU%}5*3DM7}9>mHGn`d{toAkr*Op6y2 z;h^-7@;>^;y+S&+kaD9iMG+Z~VV-=$T`?E@VmIRXWp)4+?2=iU3DlbZUPNjX^u85> z;@Khz+7@YY*6tR)_)uaMyJG1imG?=>R<$N_1Xx44YgN*=#9EG8aabOXg=$VN_iY$f zxTtFnFbylFuS!{F5@SjyV-+rEOM~qmpHmhmIS9!8;2*~oSsj1l;gcA+3p=tvRm!N8Mm=G4y#kTS8!mLlhN||~HI?8qYpSKYySp^i z5x{|1>r}}83dw*x{c`d;7PJZxk4y}oSX#NXzyX|gt7yi{Xk`)Z#{X@2|q8|hRj*6BOt zTWN>loib3cwmDERuO{|p9A}+V=0nm2SgZNW@$zPGq?S?Jmg0vY)v&qub!B*hftn7M zC)}&R9h;Hos#?abh>hFoy>`9IUk=hl%9}{8QO@G>iC!6tuEp9pth9u^d(27GQ11_Mfat&5e>Z?_h!tIPkp-Tx{OS zwK;j69Pd#wI)_cLyUi_S9#pDRtj~15uraFDR5>BH95;H>CLB81ycffH*q&+rhC@;f zLQdcOYmx3q4}bX^REb8Fv&~Fh#2GUe&w7)N7Uf)stUyR_S-p-<*J<`${c6VIv;4v< z*Cxrvk^%Pe6S}oY8LMhdf!&j)YXiv|M-((%M+)3^;V14;#h;!)TiZ-$)rVxCQhI9{ zv+c@j({Z6ru+jUqiMrkBxz*vHXx3+B!qwY`IUcPigtE`-e~h5O-K%fMu<-uuoQC}_ zY`O1+&N7kw3J*Sdnz$=9VH_p2M`#4!xo3>Fv4dKy)JcmREraryt#V)3NR^83u+X|x z#K3aTUQXN9&@tSfG9YO))2knpHJqTD>3=FGBY>5?lCGYG;rFB;j32TEZ8+#TNbBR( zaefao{yC66iZ#T-VVq4sNzN@mLZUMkj0=oRO?AVChrfokb=C3~%*B7%H`X+?Moiq1 zMSgLAtW8l6TgbC(Hnbim-!1Xr66*u6?mjpg!pfB z6RLu(YDnv;)G(*-D4^L0U5ga1K3*86>V>SLj4)3iZD`8po|eA3L=P5BxY|jaz^7&* z#d(b<=vT3W!J8%7J8i_DvcD z(MtB|>oQ_5C}<=#iu}k`7Y4;(^Ca?>#l8*~4Xap*AduoBePhJNGKn`OZ{2>uh+pw( zU9|^rKO_ClaF622LCrL*4!=&&c2a_$9t^`F?rk@;$e+eHAJ^*HO_4|DFm+ z(mRAR<<%=Aom7(Nl_++QS*#-{;jnADXs=gXO^~y&#f#c3Di7qh0y~oP z4T43FY6CzDmj%b}y?Ek4++>XI&ce;T_n-5i6Y`c^-~xf?hD_FyU_wob7fsgP(n4U8K;tI%u`tV-;@7 zT`(nxZO^?BbRtu1S;T(libTlefNeZa{n_1t-(`xx0139;B`^BPbHA9rtNCcNo!uqc zz8>n!q~h34htTV@0d4IMw~$t453P;&2kR#rDLWsC)ECj*W56*ywrb4kq-j zhq!1}(-@E4;@o-PDlCF$Do2)I^XfG+Wrd?>t`_Fx(gb9zk%b$qJp%2lE{~^c+ws&X zYiT6#nNc%Qo8rw>BR9-2hWn~kDL7T|YTjnULHXM@Qulsyi&5O}B;>VzP3b==$0>l? zl+$FI`y!c%BagtfupRO)E0S?=tdF(u;HK~usijj6U4HpaU;!F$Y`=><#0TY zmw1OaQJgvNby|hpisR~=9CBA{F#{3fw0(UDBFdu|+=n>CyHV?kz9D!tVH)tN4d$~V z>o)0}F!`DieBul3kko`jr#7NC$StX0rFULEg#fNHj`nB4mz3vF&;^TN1~L~%vl&}( zaTcUZuvV_>*R_vkv#N79TH0*RnL4C>;fJS%HG@}wrV{AQX>b*)Y3o`fc6~Dt`{yph zk}3vo8z^sHgGy!;uxH?)W4V6Rg^cBp86U%Y8AA!%(wv7H+~xOd9iUdJq9x|(L3ms1T|Fd%nS`g zF0s52!Yr?_cx;Oc|MaZ;8{|08)Y@ZlNFsGN8*8Fe+_0NFj~XIz^UaKC!TJv>N5J6m zy^<$7DiTp{YqUDFWpSzzH%z)U^W5cAQubqmeti-SFRDw3MT9iA9bai6r+1wq`vG*l zZ@R0xP=^vOs&BeRFw|`Zaw@Sja-L9@uNm&gf|&Y_o>r$38OZWrs;+oorK6eZ){p;{1f`g z$U+VAS0h6bcphM;Y5!Ot%@{r7@dRn~IH*8E{#EI9t*!rR1O8X%zklti3bL8m>M!swqtzGj$*u6BC|;u?-yGO%DTFjc#qifru1GHKwsOwk1r(-f zZLDSYvet}KTh2M$ztP?!+EA1EM5CM9<*c zE2b$wqmXBlg%vzL%JPLxec3;zoPV}6UaV5@GJTXr>BfU(P`rDh{!~?AZ8eioU{d4N zJAAXXA%K*s z(eyLA!A)+^VttvGv)gO~Z8!a~IDmm~uG<s9F_MO>@;G^jjhygYl>Us(djF zds~^IyXy;ZJ7KEUvNm?)f(KY&LprlE4s_Vx2hfdKo=0{`m`9|;9y!DJ6Fa$%2VvzI zE<-^w(c2CyMor*(ZW5mFht>O3boe``GmZ;ZMhvUu%L28+oYwsD&ULWCa2#73GlrN5 z3z%@%vY@F4tr0yIp|Ary6*3mS7?-&Vg_f3_Q75^^;xm4-_mIUpZPJMGwJFG;G(M6$2@jQ)VcDug-Sw%)%P0O^pbiWd8T!{oICBr zIJV`FeekQ)bm}EgHYtPD_}}!wf0$qVf87_F8rg2<_kAaXf16068;6-zR98boF`OGc z{b_ReYe))GNjmzxgKrYA=Ja26aCQt{uudLz46bT%myg*>IKdzrlAq5;;J?*osClyN zThW?0MuUjC^hQuXsa5clr zja@pXnri;Si|pBM*7OeaPqsRP1ClsPP7PFefsj0;!lIlk_)zr9p|qCR`02hz?jLF3Vo6tI*JM9741*7mBw1HEYlCo){$!@3eLQha4{d0I%BZcEG6ZGT+ zi@LHyEmYCnrnZJna9dLgFgz+Ba-ZNTp}3)_`r@bW)eaFYr*>j# z=E^cL>zqOVNpO2XZr4vBp{YQ6LkKGRer_e!wl%b{`>~<;hxiQNfBv_{3Q8)F3md5n z0gX^WE#57DYc~O;ewFV>DUhbN=aoWi!WEa4(I0qYX1dU}o=>~kA-Ta2QTW6OP%+W4dakeN2Q)n)rbY=*f zPBoS(en5iz4Yhu{ebv4Nh`!$MuyN(@_?LJ&!gHJ&NS$D?*TnoC zu`po^DsByE!h!WJ!pw_LI~IUNAuvtmXA_?De=I#T<0(o0Z(8tUTls&r;4cOETMODl zKwmo4;*HM%^178Ge-NE)E1eH#6oWIuRt>_Ofv^#}yPIzT2A^{(&i#RL@;v?Ec1RMx z7-TUJ%75(j!HUUZ{TyR`<{OLMJsA{)uTi>R7}}E2hE=43C^Oz*kXLz2lDV4?S$)!J z%=W9)gz9gX!Z|67aqx5$Z7tggAAUeE(Ux)8L|7I105Lg_=Ak#i~(ahubd#p!ol@5Oh0%$msw*`QOR{*6)p>|7yYi zq6HY3YRRr@PXHuZhq&XWcy)b#gH+e&0sN(l?JI+ao`Ms*R=O&xgS*tYZFEQELrfMU;F}$f#!{{86omP%I)PMC2r?vF(&mn6Py-m`VQVb%h${Vw z;%Ox}wWQk)TAtgt3ts1aN`c>A2%OT&&wnoq5PY33W%p5;`a@y&80gT4bp?z-WkI!z z=#R3%Oc4Xker~hiVHQ*){6P)iJ8`4`Z))&kWa+n$^%sCo==4$s)~7Grt%TtoSsO^6HyV-yLXeQSX^L zpCn%J=g+!NGdFot`j%ntD3g#_%nnC6mVP=bO?Z2h5) z`5&dF#c(^K4->rClIrv34z{;pIM%P_y3qta;)}&sIH=L~&+$~2st->XbAavGtD zR&7dG(sPhN0xGKS--ejat-8Hd1v>gQ3XLo_ra|Vu_8qHT{8WfTC5`ba4?D3#NQwoL zOV+=df<$-3Ux?Cl6a_+k#CEn15UwbDUL=;SATC|RsVdHflyGPPc-`Z|owtfKSybK9 zc8ucSy}`qnxw^122{Hoz&nkvOu@bWZB)>bTr~PlbDgTlAnwnTy^RGX;DfiGh&2*l< zM0m>x-yEmDa^_%v*< z7ATMZk_xP=c5|{#IAh@ znpKr+N=uHj>Sy-+p|Z}DRI4M3f#`sIcG=`>XxNsTV{DBqU%Qp3&*O<+u;6W@#6C=$ zk|v#G&7jRY@CUv;k@T@83(ihG>>C(xI_F7vQnyLZ70#h2PL!(1DCG$Gd1v*?OZ@?V7smkMcP zvSp6hhGRYe#8bm;JJ9Dk^l&zij&}V#rT3K!#Mcq4MTM-AY+whcG&(nzCRdGH_*w2} zRIfVSpblx}Ryv6&S?So?Vc?|);yZO^?#afyqs}e5Peiuwl$k>iMCAv7i&X1t?x|` zdFkH?l9WB3-h)CffyNy{bELmGc#x|7)tC8EUp)rGW5hXD5N|SyO;! z6OeymL05Ssf5S~cmaGkJe{{zlqYqP8CYwNENkF22zPw+Y1@&)Y7y$tGe{=jXJ*41g zh)BHyCOJx2?#GAH~9Sh103{ZA_H-h)mX@iE2e4$p`_Fgaq zx*lXO{JZ~dmHelJ5T+65uC=$Nu1JQZ6vC@BX_v%AfAc?w=HFKa5j8 z<{(J)+tt7BxP`|Gw1cCmIZ_k?XPiKNtQyW_i3`25ZS~4y{O_~g zKha=dYyyvC@uR2mnBe!R*uAe>Q$6UX6sD9;oukb6^ zcN>mBvh7E-9<%)3i};mgQSmX$9|?YMg8xdes`QxPM>KwS*`8r02000 mg/kg bw.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.80905,"y":580.07},"width":40.22513,"height":10.929359,"page":403}],"sectionNumber":4376,"textBefore":"(CA4312) in the ","textAfter":"-Dawley CD strain","comments":null,"startOffset":77,"endOffset":84,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a71c9f3aca44d41b89db9bbfe5342d7","type":"PII","value":"204-252","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: Dimethyl sulphoxide","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.1731,"y":347.25},"width":31.257904,"height":10.0905,"page":403}],"sectionNumber":4377,"textBefore":"299-312 g; Females: ","textAfter":" g","comments":null,"startOffset":156,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787131Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0da61df4aabbb06fa4400fcccdea98e3","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":691.58},"width":37.08976,"height":11.017679,"page":404}],"sectionNumber":4382,"textBefore":"(CA4312) in the ","textAfter":"-Dawley CD strain","comments":null,"startOffset":362,"endOffset":369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92c39b45f7fd4786509f16f50d9caf9e","type":"CBI_address","value":"RCC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.91428,"y":603.62},"width":20.959839,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"DF-pyrazole Acid (CA4312). ","textAfter":", Cytotest Cell","comments":null,"startOffset":143,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0142a314830e54997823ea52e909f362","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":293.73172,"y":580.55},"width":38.05127,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"May 2007. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":296,"endOffset":304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3b67521a105572be93a7cd35191f644","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":527.27},"width":82.552475,"height":11.017679,"page":404}],"sectionNumber":4382,"textBefore":null,"textAfter":null,"comments":null,"startOffset":558,"endOffset":575,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55cf2a403df7c0b7702afed3e4507f6e","type":"CBI_author","value":"Pooles A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.40945,"y":666.86},"width":41.119354,"height":11.017679,"page":404}],"sectionNumber":4382,"textBefore":"mg/kg bw. (","textAfter":", 2008) Guidelines:","comments":null,"startOffset":431,"endOffset":439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59d2412185cc780a2f131843a7ab481f","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.01062,"y":615.02},"width":61.646423,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"Report: K-CA 5.8.1/02 ","textAfter":" (2007). Salmonella","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d62f53cd6cf6d47b3da83819cbe5557","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":668.06},"width":28.477005,"height":10.018499,"page":405}],"sectionNumber":4384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":122,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"faffde450b72167bf9529b2f24af952d","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.69,"y":656.54},"width":47.5,"height":10.0905,"page":405}],"sectionNumber":4384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":147,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787132Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45d3ae41890f7c28937eb24380318d50","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Protocol:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":603.5},"width":26.62384,"height":11.017679,"page":407}],"sectionNumber":4404,"textBefore":"the software program ","textAfter":" Study Manager.","comments":null,"startOffset":1194,"endOffset":1198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0246820c188eb32795f7d0375cfd45e","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":247.10457,"y":602.9},"width":276.04462,"height":10.526819,"page":408},{"topLeft":{"x":133.82,"y":591.38},"width":199.06464,"height":10.526819,"page":408}],"sectionNumber":4405,"textBefore":"Lymphocytes In Vitro. ","textAfter":". Laboratory Report","comments":null,"startOffset":116,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6710ff2d3a9ddbd95d8f799d15ddb17c","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.81943,"y":666.26},"width":63.662994,"height":11.017679,"page":408}],"sectionNumber":4407,"textBefore":"mutation assay. (","textAfter":", 2007) Guidelines:","comments":null,"startOffset":1924,"endOffset":1936,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d278342fed00133fedf5238d91d7e5c7","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.24171,"y":614.42},"width":68.24992,"height":10.526819,"page":408}],"sectionNumber":4405,"textBefore":"Report: K-CA 5.8.1/03 ","textAfter":" (2009). CSAA798670:","comments":null,"startOffset":22,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bcfab5352ed8036a0d98348206bb5af","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":513.95},"width":82.53038,"height":11.017679,"page":408}],"sectionNumber":4407,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2112,"endOffset":2129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d9bfe500d748f234f380c89dd290bf0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.01492,"y":579.95},"width":38.05127,"height":10.526819,"page":408}],"sectionNumber":4405,"textBefore":"November 2009. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":292,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15675253ec0fc2093f455448f5f3b2a3","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.69,"y":656.54},"width":47.5,"height":10.0905,"page":409}],"sectionNumber":4409,"textBefore":null,"textAfter":null,"comments":null,"startOffset":119,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787133Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19ba9af5c8657b82cca5a30b6704077f","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":668.06},"width":28.467995,"height":10.018499,"page":409}],"sectionNumber":4409,"textBefore":null,"textAfter":null,"comments":null,"startOffset":98,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e18b8eb2d21aeb5e0b6f390a4606cda3","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.56458,"y":262.28998},"width":28.5448,"height":11.017679,"page":411}],"sectionNumber":4446,"textBefore":"significance using the ","textAfter":" Exact Probability","comments":null,"startOffset":1240,"endOffset":1246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2df082c8cda06d7e4206f2379e714d83","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH, (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":360.07,"y":602.9},"width":163.10907,"height":10.526819,"page":412},{"topLeft":{"x":133.82,"y":591.38},"width":290.56995,"height":10.526819,"page":412}],"sectionNumber":4447,"textBefore":"Lymphoma L5178Y Cells. ","textAfter":". Laboratory Report","comments":null,"startOffset":142,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d214cdb21b3d3aa0b8e1b49c2e7891dd","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":513.95},"width":82.53038,"height":11.017679,"page":412}],"sectionNumber":4449,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1456,"endOffset":1473,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7596cd22b864e818700676601467e64","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":311.9953,"y":579.95},"width":38.160828,"height":10.526819,"page":412}],"sectionNumber":4447,"textBefore":"November 2009. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":307,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"952e0e1a685518b341b05f8bf7e7aa32","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.24171,"y":614.42},"width":43.16066,"height":10.526819,"page":412}],"sectionNumber":4447,"textBefore":"Report: K-CA 5.8.1/04 ","textAfter":" (2009). CSAA798670:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"689435bb956137b879278c7328ac1604","type":"CBI_author","value":"Bohnenberger S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.29944,"y":666.26},"width":72.28528,"height":11.017679,"page":412}],"sectionNumber":4449,"textBefore":"required concentration. (","textAfter":", 2009) Guidelines:","comments":null,"startOffset":1266,"endOffset":1280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95647920ccabbc821871d6af6a3c0e1d","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":418.9296,"y":427.43},"width":27.26413,"height":11.017679,"page":412}],"sectionNumber":4450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":88,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"adac4e20d1759b728e500d056fc16949","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":668.06},"width":28.467995,"height":10.018499,"page":413}],"sectionNumber":4454,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e92c98fb33d52382a9c91d351f08af6a","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.69,"y":656.54},"width":47.5,"height":10.0905,"page":413}],"sectionNumber":4455,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787133Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"868ddecdfb4b24c898b48a6763d78f35","type":"PII","value":"(1975) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.08438,"y":264.45},"width":30.355347,"height":10.929359,"page":414},{"topLeft":{"x":408.43,"y":269.49},"width":7.960022,"height":9.10764,"page":414}],"sectionNumber":4481,"textBefore":"Clive and Spector ","textAfter":" . The","comments":null,"startOffset":745,"endOffset":754,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787134Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c99d20ba8db5517eb9e99cb85bee1bfa","type":"CBI_author","value":"Clive D","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":74.664,"y":73.119995},"width":33.738525,"height":10.526819,"page":414}],"sectionNumber":4481,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1685,"endOffset":1692,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b91735dedf1e6ee0f1e680b3503bb780","type":"PII","value":"17-29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.53,"y":61.599976},"width":24.329834,"height":10.526819,"page":414}],"sectionNumber":4481,"textBefore":"Mutat. Res. 31, ","textAfter":", 1975 Spector","comments":null,"startOffset":1837,"endOffset":1842,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787134Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"553f6dc4d2d20745274d93e0c754c4a0","type":"PII","value":"10-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":136.51537,"y":665.66},"width":26.62465,"height":11.017679,"page":415}],"sectionNumber":4481,"textBefore":"saturated air for ","textAfter":" days. Then","comments":null,"startOffset":2476,"endOffset":2481,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787134Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e335a024c2bd54131951137b402270bc","type":"CBI_author","value":"Sommer E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.03452,"y":99.65997},"width":46.87578,"height":10.526819,"page":416}],"sectionNumber":4482,"textBefore":"Report: K-CA 5.8.1/05 ","textAfter":" (2010). CSAA798670:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"293e4105d04a5b2eb04102fda1c060b3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.59985,"y":76.599976},"width":38.05127,"height":10.526819,"page":416}],"sectionNumber":4482,"textBefore":"11 January 2010. ","textAfter":" File No.","comments":null,"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"562693c39833e780d443836546387965","type":"CBI_author","value":"Wollny H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.80945,"y":151.5},"width":44.718384,"height":11.017679,"page":416}],"sectionNumber":4484,"textBefore":"lymphoma assay. (","textAfter":", 2009) Guidelines:","comments":null,"startOffset":4360,"endOffset":4368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9e8c227dc3896186fe63e3c03ddc2ac","type":"CBI_address","value":"Harlan Laboratories Ltd. Zelgliweg 1, CH-4452 Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.91678,"y":88.14398},"width":286.28607,"height":10.526819,"page":416}],"sectionNumber":4482,"textBefore":"the Wistar Rat. ","textAfter":". Laboratory Report","comments":null,"startOffset":108,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6af98764e5ff54761cf682b287a45a8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":716.18},"width":82.53038,"height":11.017679,"page":417}],"sectionNumber":4484,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4521,"endOffset":4538,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"746f78ea0c71367b34751b1a6a02c4f7","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.17,"y":80.91998},"width":47.500015,"height":10.0905,"page":417}],"sectionNumber":4486,"textBefore":"97.4% ","textAfter":null,"comments":null,"startOffset":128,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787135Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f050ed89a4bc449144e452dfea8b4a80","type":"PII","value":"12000 1007","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":356.37},"width":23.598999,"height":10.0905,"page":418},{"topLeft":{"x":271.37,"y":356.37},"width":19.044983,"height":10.0905,"page":418}],"sectionNumber":4494,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787135Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"871c9cc592dd26d7b12391f48abf8891","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Diet preparation and analysis:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":187.13406,"y":167.58002},"width":208.2319,"height":11.017679,"page":418}],"sectionNumber":4497,"textBefore":"D. Burger (","textAfter":") and stored","comments":null,"startOffset":922,"endOffset":969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dbadf54366ba7be79680faadc3e1a392","type":"CBI_address","value":"Provimi Kliba SA, 4303 Kaiseraugst","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.19102,"y":740.9},"width":162.66487,"height":11.017679,"page":418}],"sectionNumber":4488,"textBefore":null,"textAfter":null,"comments":null,"startOffset":158,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41d6e2a974d6e506b66a1f3803686fca","type":"CBI_address","value":"Harlan Laboratories B.V., Kreuzelweg 53, 5961 NM Horst / Netherlands","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":668.54},"width":263.58405,"height":10.0905,"page":418}],"sectionNumber":4487,"textBefore":null,"textAfter":null,"comments":null,"startOffset":142,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50da0a5a778fd2dd5f2ecefb80df73ce","type":"PII","value":"1043 16-20 36-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.87198,"y":356.37},"width":19.044983,"height":10.0905,"page":418},{"topLeft":{"x":372.91,"y":356.37},"width":22.059998,"height":10.0905,"page":418},{"topLeft":{"x":465.7,"y":356.37},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4494,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787135Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b3046367366c8da9cb15975bd62ba2fa","type":"PII","value":"21-25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.7,"y":400.89},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4491,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b8a38e38198e40e26f988ffbe70247d","type":"PII","value":"6000 511","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.81,"y":371.25},"width":19.044998,"height":10.0905,"page":418},{"topLeft":{"x":275.81,"y":371.25},"width":14.607971,"height":10.0905,"page":418}],"sectionNumber":4493,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"940baeb83cd85e1f6ce94816624b8322","type":"PII","value":"2000 167","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.81,"y":386.01},"width":19.044998,"height":10.0905,"page":418},{"topLeft":{"x":275.81,"y":386.01},"width":14.607971,"height":10.0905,"page":418}],"sectionNumber":4492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92199c37a37073592c97b5fae7aa97ec","type":"PII","value":"572 11-15 31-35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.857,"y":371.25},"width":14.508972,"height":10.0905,"page":418},{"topLeft":{"x":372.91,"y":371.25},"width":22.059998,"height":10.0905,"page":418},{"topLeft":{"x":465.7,"y":371.25},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4493,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"640c4e170e34db09f4334af0fc785471","type":"PII","value":"175 06-10 26-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.857,"y":386.01},"width":14.508972,"height":10.0905,"page":418},{"topLeft":{"x":372.91,"y":386.01},"width":22.059998,"height":10.0905,"page":418},{"topLeft":{"x":465.7,"y":386.01},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787137Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c2d5a338f2b412e6feeac3e63155d43","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Diet preparation and analysis:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":442.42984,"y":142.38},"width":90.08176,"height":11.017679,"page":418},{"topLeft":{"x":64.104,"y":129.65997},"width":116.87588,"height":11.017679,"page":418}],"sectionNumber":4497,"textBefore":"method determined at ","textAfter":". The identity","comments":null,"startOffset":1182,"endOffset":1229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfac6a6c48d53bf4271bd5776ab7207d","type":"CBI_author","value":"Bartlett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.8297,"y":740.9},"width":34.053772,"height":11.017679,"page":419}],"sectionNumber":4497,"textBefore":"variance according to ","textAfter":") and with","comments":null,"startOffset":1779,"endOffset":1787,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"933a72217a53594a9ce092e7ccd83a75","type":"CBI_author","value":"Irwin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":117.21744,"y":184.38},"width":24.736008,"height":11.017679,"page":419}],"sectionNumber":4497,"textBefore":"from a modified ","textAfter":" screen test","comments":null,"startOffset":4656,"endOffset":4661,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2e13ff8e3c4599cf9b917f7ab7b39df","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":192.77997},"width":207.99142,"height":11.017679,"page":421}],"sectionNumber":4506,"textBefore":"study conducted at ","textAfter":". Mortality: All","comments":null,"startOffset":1140,"endOffset":1187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30abf83f1ba9ae148bd08a745ab04660","type":"PII","value":"6000 511 572","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-2: Mean Dose Received (mg/kg bw/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.29,"y":208.26001},"width":19.044998,"height":10.018499,"page":422},{"topLeft":{"x":346.51,"y":208.5},"width":14.619995,"height":10.0905,"page":422},{"topLeft":{"x":467.74,"y":208.5},"width":14.619995,"height":10.0905,"page":422}],"sectionNumber":4503,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"974013d43d9ad2543e5d678bb9bee979","type":"PII","value":"12000 1007 1043","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-2: Mean Dose Received (mg/kg bw/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.01,"y":195.41998},"width":23.599014,"height":10.018499,"page":422},{"topLeft":{"x":344.35,"y":195.65997},"width":19.044983,"height":10.0905,"page":422},{"topLeft":{"x":465.46,"y":195.65997},"width":19.044983,"height":10.0905,"page":422}],"sectionNumber":4504,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2efae6f7a6b9893c220a7971d1268d9b","type":"PII","value":"2000 167 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-2: Mean Dose Received (mg/kg bw/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.29,"y":221.10004},"width":19.044998,"height":10.018499,"page":422},{"topLeft":{"x":346.51,"y":221.34003},"width":14.619995,"height":10.0905,"page":422},{"topLeft":{"x":467.74,"y":221.34003},"width":14.619995,"height":10.0905,"page":422}],"sectionNumber":4502,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91b3567ebb5651725d9b7c8d9cc4405d","type":"PII","value":"2000 6000 12000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-3: Intergroup comparison of selected microscopic findings in the liver","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":209.33,"y":241.38},"width":19.044998,"height":10.018499,"page":423},{"topLeft":{"x":258.29,"y":241.38},"width":19.044983,"height":10.018499,"page":423},{"topLeft":{"x":305.09,"y":241.38},"width":23.598969,"height":10.018499,"page":423}],"sectionNumber":4508,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d96a9b61314bd92ed5420013826bfca","type":"PII","value":"2000 6000 12000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-3: Intergroup comparison of selected microscopic findings in the liver","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.43,"y":241.38},"width":19.044983,"height":10.018499,"page":423},{"topLeft":{"x":454.54,"y":241.38},"width":19.044983,"height":10.018499,"page":423},{"topLeft":{"x":498.46,"y":241.38},"width":23.59903,"height":10.018499,"page":423}],"sectionNumber":4508,"textBefore":null,"textAfter":null,"comments":null,"startOffset":30,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787139Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0943d77b418d3179fbe302c374ae19a4","type":"CBI_author","value":"Strauss V.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.10327,"y":248.46002},"width":44.017273,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"5.8.1/06 Kaspers U., ","textAfter":", Graters S.,","comments":null,"startOffset":34,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb51b7e4df563ee3201a2ebf39f30eb5","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":213.89996},"width":25.870132,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"Ludwigshafen/Rhein; Germany Fed.Rep. ","textAfter":" Report Number","comments":null,"startOffset":270,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8ab2159f91b2b7dfbf9db7ffa61ae2d","type":"CBI_author","value":"van Ravenzwaay B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.58493,"y":248.46002},"width":84.694,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"S., Fabian E., ","textAfter":" (2009). Reg.No.","comments":null,"startOffset":69,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"466cf6454c8f7382c367e8e4a10e6874","type":"CBI_author","value":"Graters S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":308.21204,"y":248.46002},"width":42.961456,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"U., Strauss V., ","textAfter":", Fabian E.,","comments":null,"startOffset":46,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89cf558d703921611354c948eeab4796","type":"CBI_address","value":"BASF SE; Ludwigshafen/Rhein; Germany Fed.Rep.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":309.1691,"y":225.41998},"width":213.89517,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"in the Diet. ","textAfter":" BASF Report","comments":null,"startOffset":224,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d72a135840fa83d40f9d527e8514410","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":448.0185,"y":213.89996},"width":37.931763,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"8 October 2009. ","textAfter":" File No.","comments":null,"startOffset":338,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a09c394b56a78b2576a2f7acaf098a9a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":137.10004},"width":82.53038,"height":11.017679,"page":424}],"sectionNumber":4513,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4620,"endOffset":4637,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09809cd6e395b57d656808704ec88784","type":"CBI_author","value":"Fabian E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.24506,"y":248.46002},"width":41.25833,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"V., Graters S., ","textAfter":", van Ravenzwaay","comments":null,"startOffset":58,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0d92e58eca42c6605058a3ab01906b67","type":"CBI_author","value":"Sommer E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.68945,"y":300.33002},"width":47.69922,"height":11.017679,"page":424}],"sectionNumber":4513,"textBefore":"in females. (","textAfter":", 2010) Guidelines:","comments":null,"startOffset":4488,"endOffset":4496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b47a809fe3382f01cd458384bac636e4","type":"CBI_author","value":"Kaspers U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.63802,"y":248.46002},"width":47.373764,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"Report: K-CA 5.8.1/06 ","textAfter":", Strauss V.,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"904326a168fa9f505638be3f4e6b9e35","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the no observed adverse effect level (NOAEL) was 1000 mg/kg\nbw.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":556.67},"width":28.467995,"height":10.018499,"page":425}],"sectionNumber":4515,"textBefore":null,"textAfter":null,"comments":null,"startOffset":126,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"76f68cf0cb9cc44af8b7a663ff0c3e15","type":"CBI_address","value":"Charles River, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":414.33},"width":88.72301,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":null,"textAfter":null,"comments":null,"startOffset":197,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ea55cd43be684e97111765ef0402b82","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":457.79},"width":12.501999,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":null,"textAfter":":WI (Han)","comments":null,"startOffset":35,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae58bb7d30aa52222ce798aeba142447","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":370.74234,"y":753.5},"width":30.929443,"height":11.017679,"page":425}],"sectionNumber":4514,"textBefore":null,"textAfter":null,"comments":null,"startOffset":75,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3cd15decd2975e7052a411419eb07c2","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the no observed adverse effect level (NOAEL) was 1000 mg/kg\nbw.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":544.91},"width":47.500015,"height":10.0905,"page":425}],"sectionNumber":4515,"textBefore":null,"textAfter":null,"comments":null,"startOffset":146,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78714Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13ef56d67604d5ac551f484634059c12","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":360.78494,"y":393.09},"width":34.524963,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":"Deutschland GmBH, Hohenpreißenberg, ","textAfter":"), floor area","comments":null,"startOffset":337,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0e4df1d30f867b8c8fd50dfafd4fa05","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.30898,"y":457.79},"width":15.939987,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":"Crl:WI (","textAfter":")","comments":null,"startOffset":43,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50495f509c98165858ef4030da4e6557","type":"CBI_author","value":"KRUSKAL-WALLIS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistics of clinical pathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.28604,"y":251.85004},"width":79.14102,"height":10.0905,"page":426}],"sectionNumber":4523,"textBefore":null,"textAfter":null,"comments":null,"startOffset":133,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"00d91fbcb67348fca0fb21ebe4a7d681","type":"CBI_author","value":"KRUSKAL-WALLIS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistics of clinical examinations","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.28604,"y":364.65},"width":79.14102,"height":10.0905,"page":426}],"sectionNumber":4521,"textBefore":null,"textAfter":null,"comments":null,"startOffset":326,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d386f84aa60ab20b0f8145110b256e6","type":"CBI_author","value":"KRUSKAL-WALLIS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistics of pathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.28604,"y":107.34003},"width":79.14102,"height":10.0905,"page":426}],"sectionNumber":4525,"textBefore":null,"textAfter":null,"comments":null,"startOffset":83,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c2872607ff5741faf4d2a59c1d1145d3","type":"logo","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Test substance preparation and analysis:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.0,"y":632.0},"width":86.0,"height":33.0,"page":426}],"sectionNumber":4520,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8e10bd720c2b14c488d6231ff97beb43","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"METHODS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":204.0,"y":317.0},"width":188.0,"height":30.0,"page":427}],"sectionNumber":4528,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f09eb29b2fa33b9ece7106f2d6036a11","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"METHODS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":189.0},"width":159.0,"height":29.0,"page":427}],"sectionNumber":4528,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d77e69030781edbe100f1e690a40769b","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Ophthalmoscopy:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":23.024803,"height":11.017679,"page":428}],"sectionNumber":4604,"textBefore":"Ophthalmoscopy: ","textAfter":" to the","comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aca7ef8bdaeb145ef42d9180d90aac8f","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Ophthalmoscopy:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":112.18318,"y":254.85004},"width":42.02466,"height":11.017679,"page":428}],"sectionNumber":4604,"textBefore":"GmbH, Bad Homburg, ","textAfter":". For this","comments":null,"startOffset":1485,"endOffset":1492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35bfccfa637d2d9a81f5e12b75b7e0ac","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Ophthalmoscopy:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.25,"y":643.34},"width":21.907013,"height":10.0905,"page":429}],"sectionNumber":4539,"textBefore":null,"textAfter":" unstained cell","comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c811fd4889d47cdf4ad068d6494b32b","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-4: Mean body weight of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.43,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":471.94,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":506.98,"y":543.71},"width":19.045013,"height":10.0905,"page":431}],"sectionNumber":4607,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f29d0e072c2a9aab4ec8754950ac55e","type":"PII","value":"49 56 63 70 77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.09677,"y":168.02277},"width":97.493195,"height":9.629508,"page":431}],"sectionNumber":4617,"textBefore":"28 35 42 ","textAfter":" 84 91","comments":null,"startOffset":1906,"endOffset":1920,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30de3e8fe89647386aa1bdf331c4ddd8","type":"PII","value":"84 91","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.0047,"y":168.02277},"width":31.545532,"height":9.629508,"page":431}],"sectionNumber":4617,"textBefore":"63 70 77 ","textAfter":" 150 200","comments":null,"startOffset":1921,"endOffset":1926,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"648b162f4140fea66c4b689c8f93f6dc","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-4: Mean body weight of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.49,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":301.97,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":342.19,"y":543.71},"width":19.044983,"height":10.0905,"page":431}],"sectionNumber":4607,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4db261caab132feb87c574faff71a4b6","type":"PII","value":"14 21 28 35 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.08295,"y":168.02277},"width":97.489075,"height":9.629508,"page":431}],"sectionNumber":4617,"textBefore":"days 0 7 ","textAfter":" 49 56","comments":null,"startOffset":1891,"endOffset":1905,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8c653b43b6e4af0b911090b8b3c51ec","type":"PII","value":"1711 1707 1673 1865 1259","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.93,"y":694.46},"width":19.044998,"height":10.0905,"page":432},{"topLeft":{"x":242.57,"y":694.46},"width":19.045013,"height":10.0905,"page":432},{"topLeft":{"x":284.21,"y":694.46},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":325.75,"y":694.46},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":367.39,"y":694.46},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4615,"textBefore":"0 to 91# ","textAfter":" 1221 1177","comments":null,"startOffset":52,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6378427755a929a45613689ad90cdc77","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-6: Selected hematological findings in rats administered M700F001 for at least 90 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":287.09,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":328.27,"y":274.05},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa05ef6a7515b162881401de097a221d","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":255.17,"y":721.46},"width":14.62001,"height":10.0905,"page":432},{"topLeft":{"x":296.81,"y":721.46},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":336.19,"y":721.46},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4615,"textBefore":null,"textAfter":null,"comments":null,"startOffset":149,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"432df46392d50d236114753389858de5","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.63,"y":721.46},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":463.3,"y":721.46},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":502.66,"y":721.46},"width":19.044952,"height":10.0905,"page":432}],"sectionNumber":4612,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5e342319ec429ffc60d67bad4f0a4d7","type":"PII","value":"1221 1177 1174","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":694.82},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":450.7,"y":694.46},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":492.22,"y":694.46},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4615,"textBefore":"1673 1865 1259 ","textAfter":" % (compared","comments":null,"startOffset":77,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c8ad7e6bd7c15efa993fb51d88d63cd","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-6: Selected hematological findings in rats administered M700F001 for at least 90 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":209.10004},"width":24.391006,"height":10.0905,"page":432}],"sectionNumber":4624,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test.","comments":null,"startOffset":33,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99a5c1e6a1700302ade731bfbddd51fa","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-6: Selected hematological findings in rats administered M700F001 for at least 90 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.31,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":460.66,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":501.94,"y":274.05},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787144Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c39dcb919592c85b0300ec3a7e35b6e","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-7: Serum triglyceride levels in rats administered M700F001 for at least 91 days (group\nmeans)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":287.09,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":328.27,"y":753.86},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4628,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787144Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"903e8b99bd2ed286fb923027a995c86c","type":"PII","value":"1071 1093","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.87,"y":442.43},"width":19.044983,"height":10.0905,"page":433},{"topLeft":{"x":447.22,"y":442.43},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4636,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787144Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de2fdf1055b411f8265b0a21c8b38e41","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-7: Serum triglyceride levels in rats administered M700F001 for at least 91 days (group\nmeans)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":727.46},"width":24.391006,"height":10.0905,"page":433}],"sectionNumber":4630,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test.","comments":null,"startOffset":33,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"380d77998f28b5dab1a7bc1e28776171","type":"PII","value":"064 299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.272,"y":146.70001},"width":14.490997,"height":10.0905,"page":433},{"topLeft":{"x":372.07,"y":146.70001},"width":14.607971,"height":10.0905,"page":433}],"sectionNumber":4645,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9b079760e484dc012f3c1e01695c08d","type":"PII","value":"100 368","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":179.22003},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4642,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12076572a83a531f0489ab84332d71d6","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":287.09,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":328.27,"y":469.19},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4634,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57b1ab6a4e839eb8eb41ca421d379222","type":"PII","value":"1060 1059 1079 1062 1063","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.74,"y":442.43},"width":19.044998,"height":10.0905,"page":433},{"topLeft":{"x":230.21,"y":442.43},"width":19.044998,"height":10.0905,"page":433},{"topLeft":{"x":273.65,"y":442.43},"width":19.044983,"height":10.0905,"page":433},{"topLeft":{"x":316.99,"y":442.43},"width":19.044983,"height":10.0905,"page":433},{"topLeft":{"x":360.43,"y":442.43},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4636,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67308ed51a9255baa6b57fb7b1fb531b","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Urinalysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":427.91},"width":24.391006,"height":10.0905,"page":433}],"sectionNumber":4638,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test.","comments":null,"startOffset":1078,"endOffset":1084,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67bf959124e86fc8599735a8bba2d4dd","type":"PII","value":"1000 377","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.05,"y":157.62},"width":35.367996,"height":10.0905,"page":433}],"sectionNumber":4644,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ab5d8b2d6aac41d1e644837f909f5e6","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-7: Serum triglyceride levels in rats administered M700F001 for at least 91 days (group\nmeans)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.31,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":460.66,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":501.94,"y":753.86},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4628,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca582a8f5200bfe18928b4552b32df65","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":68.44},"width":28.566887,"height":10.929359,"page":433}],"sectionNumber":4653,"textBefore":null,"textAfter":" and histopathology","comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"081e382e821325f0f8c2a789bb5a1db7","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Necropsy","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":101.58002},"width":24.391006,"height":10.0905,"page":433}],"sectionNumber":4650,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test,","comments":null,"startOffset":540,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cdcc5899b30638fb468aee81f1d7f8d","type":"PII","value":"300 353","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":168.41998},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4643,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e9665ed97bb98148591cdac0731cda5","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.31,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":460.66,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":501.94,"y":469.19},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4634,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34fd8b283182a1c664f860abbe6b6579","type":"PII","value":"1000 247","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.05,"y":112.97998},"width":35.367996,"height":10.0905,"page":433}],"sectionNumber":4648,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787147Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f52e14b585acdd125d88b3dd88c98e9","type":"PII","value":"300 191","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":123.900024},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4647,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787147Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0dbdd661869abee59cfe0c88df0b9b0","type":"PII","value":"100 249","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":134.70001},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4646,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787147Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9e4e0fe8abcd2506767d1199810a5c4","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":428.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e97a526c6af1033cd0acc79d106fb45b","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":347.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe8760ed30b0f5fda72afe079cdd575a","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":509.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d4f713d42fbb6d013d0aea35e9e1a20","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":266.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee93a49567b7426c05d4089d7394b491","type":"CBI_author","value":"van Ravenzwaay B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.75037,"y":384.57},"width":88.43683,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"S., Fabian E., ","textAfter":", 2009) Guidelines:","comments":null,"startOffset":2033,"endOffset":2050,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d63edf3636c8f82c0a17c90c0dd27aa","type":"CBI_author","value":"Graters S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.57617,"y":384.57},"width":45.005493,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"U., Strauss V., ","textAfter":", Fabian E.,","comments":null,"startOffset":2010,"endOffset":2020,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ea8c90dd68f1d3863a45be442f74a22","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":314.04306,"y":298.16998},"width":25.870117,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Report No. 40R0451/07118. ","textAfter":" DocID 2009/1072507.","comments":null,"startOffset":298,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df2c484fa209c07614860b81fef7dd38","type":"CBI_author","value":"Schneider S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.80028,"y":332.73},"width":51.706375,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Report: K-CA 5.8.1/07 ","textAfter":", Fabian E.","comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5da537b411ba8f33ef0d5fa46967cc8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Gross and histopathology","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":233.46002},"width":82.53038,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2160,"endOffset":2177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64fd95a2d3fb7c5b39629cad4362deaa","type":"CBI_author","value":"Fabian E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.89502,"y":332.73},"width":39.455597,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"5.8.1/07 Schneider S., ","textAfter":" and Mellert","comments":null,"startOffset":36,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c87312851cd08466d04f63ccbe6d999d","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":497.19574,"y":309.69},"width":25.870178,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Ludwigshafen/Rhein; Germany Fed.Rep. ","textAfter":" Laboratory Report","comments":null,"startOffset":256,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7a9576451961ad992dd6d40d386a49b","type":"CBI_author","value":"Mellert W.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.38022,"y":332.73},"width":45.202515,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Fabian E. and ","textAfter":" (2009). Reg.No.","comments":null,"startOffset":50,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07eb2db9db2c6782f3b96d258fc94aee","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":135.02,"y":286.64996},"width":38.051224,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"14 October 2009. ","textAfter":" File No.","comments":null,"startOffset":340,"endOffset":348,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fddeeed09edd436d4e91c0498f57fba0","type":"CBI_author","value":"Strauss V.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.00186,"y":384.57},"width":46.17572,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"rats. (Kaspers U., ","textAfter":", Graters S.,","comments":null,"startOffset":1998,"endOffset":2008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"267d2713e47b0e0c54cbbcb3366224ea","type":"CBI_address","value":"BASF SE; Ludwigshafen/Rhein; Germany Fed.Rep.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":257.29895,"y":309.69},"width":232.61008,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Oral Administration (gavage), ","textAfter":" BASF Laboratory","comments":null,"startOffset":210,"endOffset":255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ddef55044d716d169494c9c6758cda6","type":"CBI_author","value":"Kaspers U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.51944,"y":384.57},"width":49.962402,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"female rats. (","textAfter":", Strauss V.,","comments":null,"startOffset":1986,"endOffset":1996,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fbff4cb8216b2df924efcf4462fd4f0","type":"CBI_author","value":"Grade","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.44763,"y":566.39},"width":27.838257,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"a moderate (","textAfter":" 3) diffuse","comments":null,"startOffset":1118,"endOffset":1123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcb59f026fa8e09a15802a189abe22b6","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":457.2665,"y":134.22003},"width":15.0980835,"height":11.017679,"page":434}],"sectionNumber":4654,"textBefore":"group) presumably pregnant ","textAfter":":KBL (NZW) New","comments":null,"startOffset":191,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b64c3177bd2300e24b549a8104a1fe5","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":442.12744,"y":146.82},"width":27.38559,"height":11.017679,"page":434}],"sectionNumber":4654,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e806e5f36fd313982d45697e06fa21b","type":"CBI_author","value":"Fabian E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.10168,"y":384.57},"width":43.128662,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"V., Graters S., ","textAfter":", van Ravenzwaay","comments":null,"startOffset":2022,"endOffset":2031,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618643Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1267303563fa1ac608ad4e7a8a1efbc7","type":"CBI_address","value":"Charles River, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":361.77},"width":88.72301,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":139,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618643Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"478a9fe0cb03b30c1ff8ca9f514ca86f","type":"CBI_address","value":"blocks (Typ","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":335.20688,"y":308.49},"width":44.11902,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":492,"endOffset":503,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787149Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b5d2042261ed859c37b3e5f1775152a","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":414.21},"width":12.501999,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":":KBL[NZW]","comments":null,"startOffset":38,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e490c41353fab5ab92c4bdedd24f6e6","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.021,"y":339.57},"width":34.524963,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":"Bremer GmbH, Marktheidenfeld, ","textAfter":"), floor area","comments":null,"startOffset":274,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9214a94d2245679160c60933d0fa9b0e","type":"CBI_author","value":"Bremer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":478.0691,"y":350.01},"width":27.757019,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":"mesh cages (Draht ","textAfter":" GmbH, Marktheidenfeld,","comments":null,"startOffset":244,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6337f695f65f84dd7ca29f1fff7dfa38","type":"PII","value":"13-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":390.57},"width":22.054,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":" weeks at","comments":null,"startOffset":66,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78715Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"21fde89a3a6eb9209450f7ca5c4c376a","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":531.35},"width":28.467995,"height":10.018499,"page":435}],"sectionNumber":4655,"textBefore":null,"textAfter":null,"comments":null,"startOffset":137,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"01f8509e7d539578ddf1a477eb37a183","type":"CBI_address","value":"blocks (Typ","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.544,"y":284.37},"width":44.11902,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":632,"endOffset":643,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78715Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77c99337d91cdf6125c660b51e69392b","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.5701,"y":318.93},"width":34.398987,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":"by Ssniff, Soest, ","textAfter":") collected excreta.","comments":null,"startOffset":433,"endOffset":440,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"330418b34dd43f9cf667db64b584c39d","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":517.79},"width":47.500015,"height":10.0905,"page":435}],"sectionNumber":4655,"textBefore":null,"textAfter":null,"comments":null,"startOffset":176,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787151Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6a7a78687010fb818205748151d5456","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":407.97},"width":23.024803,"height":11.017679,"page":436}],"sectionNumber":4666,"textBefore":"preparation and analysis: ","textAfter":" to study","comments":null,"startOffset":77,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d472a4ca5b7450a125abe95c975abe3c","type":"PII","value":"250 2500 10 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.86,"y":463.07},"width":14.619995,"height":10.0905,"page":436},{"topLeft":{"x":297.89,"y":463.07},"width":19.044983,"height":10.0905,"page":436},{"topLeft":{"x":438.7,"y":463.07},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":494.5,"y":463.07},"width":10.059998,"height":10.0905,"page":436}],"sectionNumber":4664,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787151Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9bb6379ae167d2381b68f81b9122ecea","type":"PII","value":"40 400 10 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":150.14,"y":492.71},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":300.05,"y":492.71},"width":14.619995,"height":10.0905,"page":436},{"topLeft":{"x":438.7,"y":492.71},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":494.5,"y":492.71},"width":10.059998,"height":10.0905,"page":436}],"sectionNumber":4662,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787152Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"870956a73d25f25fac238d4bd0636caf","type":"PII","value":"100 1000 10 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.86,"y":477.83},"width":14.619995,"height":10.0905,"page":436},{"topLeft":{"x":297.89,"y":477.83},"width":19.044983,"height":10.0905,"page":436},{"topLeft":{"x":438.7,"y":477.83},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":494.5,"y":477.83},"width":10.059998,"height":10.0905,"page":436}],"sectionNumber":4663,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787152Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"63b32087f5e125f81ab530187b4939e1","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Methods","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":137.0},"width":214.0,"height":26.0,"page":438}],"sectionNumber":4669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"147534bd2ccafe54e1232e1470f2864e","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Methods","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":92.0,"y":187.0},"width":156.0,"height":28.0,"page":438}],"sectionNumber":4669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"434413517b109b1b1c798df65496a828","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Methods","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":92.0,"y":71.0},"width":212.0,"height":25.0,"page":438}],"sectionNumber":4669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1d85d1dca4864ba3eebfa0969235de4","type":"CBI_author","value":"Clark","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":279.9538,"y":73.119995},"width":23.250671,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"B, Chahoud I, ","textAfter":" RL, Clark","comments":null,"startOffset":359,"endOffset":364,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96e5db8fa04cd5c202ad44668bb01c75","type":"CBI_author","value":"Petrere J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":243.17,"y":61.47998},"width":39.146805,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"P, Palmer A, ","textAfter":", Solomon H,","comments":null,"startOffset":454,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ff70f14a0f93649db6bad5504f4bb2b","type":"CBI_author","value":"Henwood S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":492.06207,"y":73.119995},"width":39.79419,"height":10.526819,"page":439},{"topLeft":{"x":64.104,"y":61.47998},"width":6.537758,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"M, Guittin P, ","textAfter":", Kimmel C,","comments":null,"startOffset":410,"endOffset":419,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f6c14c008d1fcb1944f3c28e5a99a8b","type":"published_information","value":"Teratology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":363.3548,"y":50.080017},"width":44.933655,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":581,"endOffset":591,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"594f9cf0a236e8e3e7a13b9bbc25869f","type":"CBI_author","value":"Palmer A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.9565,"y":61.47998},"width":42.23442,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"C, Lindstrom P, ","textAfter":", Petrere J,","comments":null,"startOffset":444,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3decdeea6386cfaddde8925c7dc313d","type":"CBI_author","value":"Solomon H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":289.77283,"y":61.47998},"width":49.903625,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"A, Petrere J, ","textAfter":", Yasuda M","comments":null,"startOffset":465,"endOffset":474,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a22fbc328e92587257033d24a6e38b6","type":"CBI_author","value":"Kimmel C","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":78.01811,"y":61.47998},"width":46.138718,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"P, Henwood S, ","textAfter":", Lindstrom P,","comments":null,"startOffset":421,"endOffset":429,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1069c67c06e7ed547fb12b695b45f0e2","type":"CBI_author","value":"Beck S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":108.71148,"y":73.119995},"width":29.7844,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"12 Wise D, ","textAfter":", Beltrame D,","comments":null,"startOffset":319,"endOffset":325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cba0982caf40a10343c1be345bf8c902","type":"CBI_author","value":"Yasuda M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":347.06274,"y":61.47998},"width":45.590942,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"J, Solomon H, ","textAfter":" and York","comments":null,"startOffset":476,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b1eac32f21b192f929370a8f4553f62","type":"CBI_author","value":"Feuston M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.95392,"y":73.119995},"width":44.246338,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"R, Druga, A, ","textAfter":", Guittin P,","comments":null,"startOffset":388,"endOffset":397,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e9312af29616f29b7d413a5fec396d0","type":"CBI_author","value":"Beyer B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":194.40735,"y":73.119995},"width":34.126984,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"S, Beltrame D, ","textAfter":", Chahoud I,","comments":null,"startOffset":339,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6132464772400ebac5d8fe770e9cc865","type":"PII","value":"(1997) 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Methods","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.8537,"y":446.51},"width":30.3443,"height":10.929359,"page":439},{"topLeft":{"x":442.18,"y":451.55},"width":7.960022,"height":9.10764,"page":439}],"sectionNumber":4669,"textBefore":"Wise et al., ","textAfter":" as far","comments":null,"startOffset":5368,"endOffset":5377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787154Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e3ff09f332c7f2b711dbf627756fad6","type":"CBI_author","value":"Chahoud I","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":232.74341,"y":73.119995},"width":43.04117,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"D, Beyer B, ","textAfter":", Clark RL,","comments":null,"startOffset":348,"endOffset":357,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29adfd789d4c21acc97ab7cbe8a88791","type":"CBI_author","value":"Wise D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":73.224,"y":73.119995},"width":31.338165,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"this female. 12 ","textAfter":", Beck S,","comments":null,"startOffset":311,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c11752c962fca7143f628fc0b9207ab3","type":"CBI_author","value":"Druga, A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":359.41473,"y":73.119995},"width":38.5094,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"RL, Clark R, ","textAfter":", Feuston M,","comments":null,"startOffset":378,"endOffset":386,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"469b977a389d9b3f5116f14eb50f280f","type":"CBI_author","value":"Clark R,","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":322.86154,"y":73.119995},"width":34.90384,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"I, Clark RL, ","textAfter":" Druga, A,","comments":null,"startOffset":369,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11ade37c2057f6d97dd155bad5074bad","type":"CBI_author","value":"Guittin P","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.36948,"y":73.119995},"width":37.463623,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"A, Feuston M, ","textAfter":", Henwood S,","comments":null,"startOffset":399,"endOffset":408,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75bf78df150231d94fb192e774cc29b9","type":"CBI_author","value":"Lindstrom P","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":131.49335,"y":61.47998},"width":53.877625,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"S, Kimmel C, ","textAfter":", Palmer A,","comments":null,"startOffset":431,"endOffset":442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"33ef776ad7c3a08b33a4e2aade83205d","type":"CBI_author","value":"Wise","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Methods","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.79,"y":446.51},"width":24.250244,"height":10.929359,"page":439}],"sectionNumber":4669,"textBefore":"the glossary of ","textAfter":" et al.,","comments":null,"startOffset":5355,"endOffset":5359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07de84469e357fd7991251f6c52b007d","type":"CBI_author","value":"Beltrame D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":142.62529,"y":73.119995},"width":47.513214,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"D, Beck S, ","textAfter":", Beyer B,","comments":null,"startOffset":327,"endOffset":337,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65aadf77c40c5310246c20cd1641b82c","type":"CBI_author","value":"York R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.80865,"y":61.47998},"width":34.007446,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"Yasuda M and ","textAfter":". Terminology of","comments":null,"startOffset":489,"endOffset":495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"873a38624038d7657933b3d2f59f6b21","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross necropsy observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":65.79999},"width":28.566887,"height":10.929359,"page":440}],"sectionNumber":4697,"textBefore":null,"textAfter":" necropsy observations","comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c016b51de3dd5d7c25aca889dc1fab9","type":"PII","value":"125 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.09,"y":545.63},"width":14.619995,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":545.63},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4678,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46cd2af6fb7e52942a70fb8c34890ea9","type":"PII","value":"75 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.37,"y":601.82},"width":10.059998,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":601.82},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4676,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"706041645e6b89c6cb6cbc3fed1ce0cd","type":"PII","value":"84 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.37,"y":573.71},"width":10.059998,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":573.71},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4677,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02cf2417f8f2345bf5316c4fccb12274","type":"PII","value":"67 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.37,"y":624.62},"width":10.059998,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":624.62},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4675,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d47fb249c43a1672a7fc480c42f8804","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross necropsy observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.68799,"y":715.94},"width":28.434402,"height":10.929359,"page":441}],"sectionNumber":4697,"textBefore":"treatment. Table 6.8.1-11: ","textAfter":" necropsy findings","comments":null,"startOffset":231,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f3988e16262381abd63249f3ef20f0e","type":"PII","value":"213 248 252 232","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":569.63},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":569.63},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":569.63},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":569.63},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4712,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d12998e4748ad9d8335fc184757e811b","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":330.79,"y":723.26},"width":10.059998,"height":10.018499,"page":442},{"topLeft":{"x":408.43,"y":723.26},"width":14.619995,"height":10.018499,"page":442},{"topLeft":{"x":488.38,"y":723.26},"width":14.619995,"height":10.018499,"page":442}],"sectionNumber":4698,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4c464e5570b3623c81a950e5dfe7dbf","type":"PII","value":"197 229 226 216","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":547.91},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":547.91},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":547.91},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":547.91},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4714,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9f016e8ffbefc4f3923f50f30f9a309","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":395.97},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":395.97},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":395.97},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":395.97},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4728,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e907e88280c4ef36c9eb393f10551685","type":"PII","value":"97 105 120 114","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.97,"y":341.73},"width":10.059998,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":341.73},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":341.73},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":341.73},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4733,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9568d87c747491deb040b85bd47f1c4","type":"PII","value":"87 107 87 86","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.97,"y":374.25},"width":10.059998,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":374.25},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":410.71,"y":374.25},"width":10.059998,"height":10.0905,"page":442},{"topLeft":{"x":490.66,"y":374.25},"width":10.059998,"height":10.0905,"page":442}],"sectionNumber":4730,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f5626127fd4c86fff5dd84962e20402","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-13: Incidence of external malformations and variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":292.61,"y":614.42},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":362.11,"y":614.42},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":431.59,"y":614.42},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":500.98,"y":614.42},"width":14.619965,"height":10.0905,"page":443}],"sectionNumber":4748,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bcdd8323eebc30098326e2da8f9b2b10","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-13: Incidence of external malformations and variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":367.51,"y":648.62},"width":10.059998,"height":10.018499,"page":443},{"topLeft":{"x":434.71,"y":648.62},"width":14.619995,"height":10.018499,"page":443},{"topLeft":{"x":497.26,"y":648.62},"width":14.619995,"height":10.018499,"page":443}],"sectionNumber":4745,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"263a6a263fbf048772a45662f2f51a62","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-13: Incidence of external malformations and variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":292.61,"y":625.22},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":362.11,"y":625.22},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":431.59,"y":625.22},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":500.98,"y":625.22},"width":14.619965,"height":10.0905,"page":443}],"sectionNumber":4747,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d7bd9fbe0d876d031c26c72ab4d5293","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-14: Incidence of visceral (soft tissue) malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.07,"y":735.98},"width":10.059998,"height":10.018499,"page":445},{"topLeft":{"x":424.15,"y":735.98},"width":14.619995,"height":10.018499,"page":445},{"topLeft":{"x":493.66,"y":735.98},"width":14.619995,"height":10.018499,"page":445}],"sectionNumber":4778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e38ae9bd30b34da4098d072d8ff23fba","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-14: Incidence of visceral (soft tissue) malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":712.46},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":351.67,"y":712.46},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":421.03,"y":712.46},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":490.54,"y":712.46},"width":14.619995,"height":10.0905,"page":445}],"sectionNumber":4780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3fff966473f26326911c176924d8eb61","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-14: Incidence of visceral (soft tissue) malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":701.66},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":351.67,"y":701.66},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":421.03,"y":701.66},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":490.54,"y":701.66},"width":14.619995,"height":10.0905,"page":445}],"sectionNumber":4781,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1a316c2c64f648d824fcc0e66adca89","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-15: Incidence of visceral (soft tissue) variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.07,"y":736.22},"width":10.059998,"height":10.0905,"page":446},{"topLeft":{"x":424.15,"y":736.22},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":493.66,"y":736.22},"width":14.619995,"height":10.0905,"page":446}],"sectionNumber":4841,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"778447ec689ca308f4422a8a3806927d","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-15: Incidence of visceral (soft tissue) variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":712.46},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":351.67,"y":712.46},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":421.03,"y":712.46},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":490.54,"y":712.46},"width":14.619995,"height":10.0905,"page":446}],"sectionNumber":4843,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787158Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31a703667729fc2d7082c260192c194c","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-15: Incidence of visceral (soft tissue) variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":701.66},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":351.67,"y":701.66},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":421.03,"y":701.66},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":490.54,"y":701.66},"width":14.619995,"height":10.0905,"page":446}],"sectionNumber":4844,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787158Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d812b1571bc692f83db61bada108f1a","type":"CBI_author","value":"Fabian E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":391.1452,"y":640.94},"width":40.357605,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"bw. (Schneider S, ","textAfter":" And Mellert","comments":null,"startOffset":2254,"endOffset":2262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9875667da05d1eb3499e74106bfca6ac","type":"CBI_author","value":"Mellert W","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.85706,"y":640.94},"width":46.551086,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"Fabian E And ","textAfter":", 2009) ","comments":null,"startOffset":2267,"endOffset":2276,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95e8d55e46cdd03facf250f873a9ce8e","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":372.46652,"y":515.03},"width":28.511688,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"studies conducted by ","textAfter":" (for which","comments":null,"startOffset":2563,"endOffset":2567,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e47555acb4839771698e372ee19b671","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":454.37234,"y":515.03},"width":41.881104,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"BASF (for which ","textAfter":" has coownership)","comments":null,"startOffset":2579,"endOffset":2587,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"948cd842688c0351c54224e8de15296e","type":"CBI_author","value":"Schneider S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.69943,"y":640.94},"width":53.92575,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"mg/kg bw. (","textAfter":", Fabian E","comments":null,"startOffset":2241,"endOffset":2252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70d3a96b523b8dca22929905abf1e7cb","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":390.1483,"y":527.63},"width":28.511688,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"studies undertaken by ","textAfter":" under the","comments":null,"startOffset":2470,"endOffset":2474,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cef548b2d17f8f6260f869ce6171be85","type":"CBI_author","value":"Sokolowski","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.71,"y":679.22},"width":43.434998,"height":10.0905,"page":448}],"sectionNumber":4879,"textBefore":null,"textAfter":", A (2014a).","comments":null,"startOffset":88,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be3bcf0eaf584dcb7c163719ea9e66f5","type":"CBI_author","value":"Jewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicological reference values for the metabolite SYN508272:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.09476,"y":320.85004},"width":32.73999,"height":11.017679,"page":448}],"sectionNumber":4888,"textBefore":"TRA (MacDonald and ","textAfter":" (2015); see","comments":null,"startOffset":794,"endOffset":800,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"954bf05f1f43f9caed99038ae355cf47","type":"CBI_author","value":"Dymarkowska, K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.71,"y":511.66998},"width":64.324005,"height":10.0905,"page":448}],"sectionNumber":4883,"textBefore":null,"textAfter":" (2015). Report","comments":null,"startOffset":182,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7eea3fdbd6d1be0ea09ec827e453c39","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":137.16656,"y":184.38},"width":25.870132,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"2009. Unpublished. (","textAfter":"-Project No.: 10A0432/099058","comments":null,"startOffset":268,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d06d89ef6193f00c1fd1024be70c40c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":532.79},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":"No. Harlan 1602600. ","textAfter":" File No.","comments":null,"startOffset":115,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"053ead415fcae9111e8f5c2129fc28c6","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicological reference values for the metabolite SYN508272:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.3732,"y":320.85004},"width":53.064606,"height":11.017679,"page":448}],"sectionNumber":4888,"textBefore":"8.1% TRA (","textAfter":" and Jewkes","comments":null,"startOffset":780,"endOffset":789,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e7be6ce12d1b24ab476d59cb5c16817","type":"CBI_author","value":"Dony, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.15,"y":553.55},"width":30.942993,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":null,"textAfter":" (2014a). Report","comments":null,"startOffset":71,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5efe0f10f1c82b200e2f03eda1c35064","type":"CBI_author","value":"Bohnenberger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":637.34},"width":51.96695,"height":10.0905,"page":448}],"sectionNumber":4880,"textBefore":null,"textAfter":", S (2013a).","comments":null,"startOffset":78,"endOffset":90,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"273749ed73d108a8dd5dfae757bc3643","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":616.7},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4880,"textBefore":"No. Harlan 1555902. ","textAfter":" File No.","comments":null,"startOffset":130,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"742834279d3fc59b076a9c6143c05c1a","type":"CBI_author","value":"Cords SM","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.7955,"y":218.94},"width":42.48343,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"Report: K-CA 5.8.1/08 ","textAfter":". (2009). Reg.","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c205783b1e5acca01ea6dae1aaaf6e5d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":700.46},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4878,"textBefore":"Report No. 2009/1084176. ","textAfter":" File No.","comments":null,"startOffset":147,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0aa37b0a35d6d4e6bc8a94187f638059","type":"CBI_author","value":"Cords, S-M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.51,"y":721.22},"width":43.080994,"height":10.0905,"page":448}],"sectionNumber":4878,"textBefore":null,"textAfter":" (2009). Report","comments":null,"startOffset":103,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a2a5b6d84a58e098f5194ad7881b7b6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":448.0782,"y":184.38},"width":37.931763,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"Bioassay-Project No.: 09-BF-OT064) ","textAfter":" File No.","comments":null,"startOffset":336,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0a3e6a40647fdb1a8bd22bf41a4b2a5","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Toxicological reference values for the metabolite SYN508272:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":107.58002},"width":82.53038,"height":11.017679,"page":448}],"sectionNumber":4888,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1313,"endOffset":1330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb833af623a26fad74589b01fb179a93","type":"CBI_author","value":"Wollny, H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.51,"y":595.46},"width":38.890015,"height":10.0905,"page":448}],"sectionNumber":4881,"textBefore":null,"textAfter":" (2013a). Report","comments":null,"startOffset":110,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1af4b99fd133bc94ac164fc161698837","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":397.63,"y":490.91},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4883,"textBefore":"Charles River 35015. ","textAfter":" File No.","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"067367e23dc50e61c4faf0435eb4ab9c","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":415.51,"y":501.35},"width":50.653015,"height":10.0905,"page":448}],"sectionNumber":4883,"textBefore":"(2015). Report No. ","textAfter":" 35015. Syngenta","comments":null,"startOffset":216,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6298bcd327eb42b6760f8f12b6eb1e7","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.83399,"y":543.23},"width":30.034004,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9dc7c3344dc034b1119df3c553c9d1cf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":658.58},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4879,"textBefore":"No. Harlan 1555901. ","textAfter":" File No.","comments":null,"startOffset":138,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b80c2550be170c27dd3720817863e08d","type":"CBI_address","value":"Bioassay Labor fuer biologische Analytik GmbH INF 515, 69120 Heidelberg, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":239.09,"y":207.41998},"width":284.0635,"height":10.526819,"page":448},{"topLeft":{"x":133.82,"y":195.89996},"width":88.34918,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"Study in Rats. ","textAfter":". Laboratory Report","comments":null,"startOffset":119,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d558ae2d0047f97faa08b3fa01a215cd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":574.79},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4881,"textBefore":"No. Harlan 1555903. ","textAfter":" File No.","comments":null,"startOffset":156,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2235bacb33337ce8fc910413519f43a6","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":259.64996},"width":28.467995,"height":10.018499,"page":449}],"sectionNumber":4890,"textBefore":null,"textAfter":null,"comments":null,"startOffset":110,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d194f7b31d21fa87c48ef5d364864002","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.78934,"y":753.5},"width":24.846375,"height":11.017679,"page":449}],"sectionNumber":4889,"textBefore":"the Acute Toxic ","textAfter":" method, doses","comments":null,"startOffset":89,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e0aafcf3f84da2f6a65aea154ecf95","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.24207,"y":728.18},"width":15.940002,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"/ Cri:WI (","textAfter":")","comments":null,"startOffset":59,"endOffset":62,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d94f3fde4f2b89fb82462fd5ee45d1d7","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":652.46},"width":34.525024,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"Services, 67122 Altrip, ","textAfter":") ad libitum","comments":null,"startOffset":353,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4239b8609720dc36a72391f4e8c8e44","type":"PII","value":"187-205","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.75903,"y":715.34},"width":31.121979,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"weeks old / ","textAfter":" g","comments":null,"startOffset":130,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787162Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65f17bf6b16cc98fc393eb5e6fc364ba","type":"CBI_address","value":"Cri","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":242.54301,"y":728.18},"width":12.501999,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"Wistar / ","textAfter":":WI (Han)","comments":null,"startOffset":51,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21d0bfc29d0462d01f1d9d0b26fe65f3","type":"CBI_address","value":"Charles River Wig a GmbH, Sandhofer Weg 7, 97633 Sulzfeld, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":702.5},"width":246.68217,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":null,"textAfter":null,"comments":null,"startOffset":147,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1b13927c56d79e0ad5bdb2351eac70d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"application scheme and mortality data","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":187.14001},"width":82.53038,"height":11.017679,"page":451}],"sectionNumber":4909,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1305,"endOffset":1322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf56e101a965444506d21e98d14b3bf3","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: application scheme and mortality data","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":324.67,"y":288.09003},"width":198.56583,"height":10.526819,"page":451},{"topLeft":{"x":133.82,"y":276.57},"width":193.91751,"height":10.526819,"page":451}],"sectionNumber":4907,"textBefore":"Reverse Mutation Assay. ","textAfter":". Laboratory Report","comments":null,"startOffset":124,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"359432e3cad2020c2f95d997afb80d40","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: application scheme and mortality data","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":248.51549,"y":265.05},"width":38.051285,"height":10.526819,"page":451}],"sectionNumber":4907,"textBefore":"March 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":282,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2084f64bfcef53dd0c92de3dc64e636e","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: application scheme and mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":205.72363,"y":299.61},"width":64.873474,"height":10.526819,"page":451}],"sectionNumber":4907,"textBefore":"Report: K-CA 5.8.1/09 ","textAfter":" (2014a). SYN508272:","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2af2e9163f1c3d786cf3f4c624355f83","type":"CBI_author","value":"Cords SM","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"application scheme and mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.48944,"y":351.45},"width":45.97693,"height":11.017679,"page":451}],"sectionNumber":4909,"textBefore":"Wistar rats. (","textAfter":", 2009) Guidelines:","comments":null,"startOffset":1142,"endOffset":1150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3e6780bdaf89412257f495e22153253","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":452.03},"width":25.398994,"height":10.018499,"page":452}],"sectionNumber":4911,"textBefore":null,"textAfter":null,"comments":null,"startOffset":77,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09fbe2ee3d74980c79f99f85ca5ae7de","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":426.11},"width":82.53038,"height":11.017679,"page":455}],"sectionNumber":4935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2518,"endOffset":2535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fcf69ba4e848b7fbd671ce0bc78ce3b","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":247.13,"y":527.03},"width":275.98572,"height":10.526819,"page":455},{"topLeft":{"x":133.82,"y":515.51},"width":199.09695,"height":10.526819,"page":455}],"sectionNumber":4933,"textBefore":"Lymphocytes In Vitro. ","textAfter":". Laboratory Report","comments":null,"startOffset":116,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be665cdc84786b741b1ae12cad53faca","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.89944,"y":590.42},"width":63.662994,"height":11.017679,"page":455}],"sectionNumber":4935,"textBefore":"mutation assay. (","textAfter":", 2014a) Guidelines:","comments":null,"startOffset":2334,"endOffset":2346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92b9383ecd74953d8de3b783ebfd8a5c","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2723,"y":225.41998},"width":27.26413,"height":11.017679,"page":455}],"sectionNumber":4936,"textBefore":null,"textAfter":null,"comments":null,"startOffset":723,"endOffset":729,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4def9e120a25d737434047bbece789c","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.25168,"y":538.55},"width":68.14038,"height":10.526819,"page":455}],"sectionNumber":4933,"textBefore":"Report: K-CA 5.8.1/10 ","textAfter":" (2013a). SYN508272:","comments":null,"startOffset":22,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b33c61918b2537a5557d934b95ade64b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.57,"y":503.99},"width":38.05127,"height":10.526819,"page":455}],"sectionNumber":4933,"textBefore":"December, 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":293,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d34c9cf971d60fc5bedd690d375b017","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":412.05},"width":28.467995,"height":10.018499,"page":456}],"sectionNumber":4937,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":75,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ca37ce852c0707766da6b87d8ef3015","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.58002,"y":386.61},"width":30.196014,"height":10.0905,"page":456}],"sectionNumber":4937,"textBefore":null,"textAfter":null,"comments":null,"startOffset":140,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787163Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d40803d66f7383513590a61260137c93","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":121.66656,"y":716.18},"width":26.513435,"height":11.017679,"page":457}],"sectionNumber":4945,"textBefore":"performed according to ","textAfter":" et al.","comments":null,"startOffset":521,"endOffset":525,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53e79784386faece836d4d9da194f3b8","type":"CBI_address","value":"Nunc GmbH & Co. KG, 65203 Wiesbaden, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.738,"y":94.02399},"width":208.92984,"height":11.017679,"page":457},{"topLeft":{"x":64.104,"y":81.400024},"width":41.892143,"height":11.017679,"page":457}],"sectionNumber":4966,"textBefore":"culture flasks (","textAfter":"). The culture","comments":null,"startOffset":182,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67b6a81744c43dae3f43ca5698b00787","type":"CBI_address","value":"Nunc GmbH & Co. KG, 65203 Wiesbaden, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.58826,"y":544.91},"width":116.08203,"height":11.017679,"page":458},{"topLeft":{"x":64.104,"y":532.31},"width":128.63345,"height":11.017679,"page":458}],"sectionNumber":4966,"textBefore":"culture flasks (","textAfter":"). The culture","comments":null,"startOffset":1146,"endOffset":1190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f19d972dced7ce9ae94e036144801c54","type":"CBI_address","value":"Fluka, 89203 Neu-Ulm, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.0077,"y":456.35},"width":153.529,"height":11.017679,"page":458}],"sectionNumber":4966,"textBefore":"harvesting, colcemid (","textAfter":") was added","comments":null,"startOffset":1590,"endOffset":1619,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28e5b444223b198f651598e54e4f30b8","type":"CBI_address","value":"MERCK, 64293 Darmstadt, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":126.46896,"y":355.17},"width":168.0904,"height":11.017679,"page":458}],"sectionNumber":4966,"textBefore":"with Giemsa (","textAfter":").","comments":null,"startOffset":2360,"endOffset":2391,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40e374e48bf717a8e9c5092cf1dbb0b4","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.243835,"y":196.97998},"width":28.42337,"height":11.017679,"page":458}],"sectionNumber":4972,"textBefore":"gap-type aberrations. The ","textAfter":" Exact Probability","comments":null,"startOffset":222,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"081aed6f8d23221e32342d77960426be","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.3713,"y":708.74},"width":28.5448,"height":11.017679,"page":459}],"sectionNumber":4972,"textBefore":"significance using the ","textAfter":" Exact Probability","comments":null,"startOffset":1439,"endOffset":1445,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc6c20eecb156ad8b01233940c7fd918","type":"CBI_author","value":"Bohnenberger S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.37946,"y":50.440002},"width":72.28528,"height":11.017679,"page":460}],"sectionNumber":4975,"textBefore":"evaluable concentrations. (","textAfter":", 2013a) Guidelines:","comments":null,"startOffset":2870,"endOffset":2884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f8d2db48e24320328b91f4a2caa1703","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":499.0},"width":336.0,"height":267.0,"page":460}],"sectionNumber":4975,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"903cef08cdc3c929ad58a5661580379b","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":208.0},"width":344.0,"height":278.0,"page":460}],"sectionNumber":4975,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"983b5cf4b349b5f8040b227e6706e887","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":626.54},"width":82.552475,"height":11.017679,"page":461}],"sectionNumber":4975,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3018,"endOffset":3035,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"828748c432bc3eb94b66a395a8398f39","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":360.55,"y":691.82},"width":38.05127,"height":10.526819,"page":461}],"sectionNumber":4973,"textBefore":"December 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":320,"endOffset":328,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c603d6c1a3b5f2f0d6ca88159f047a04","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.464,"y":182.82},"width":25.398994,"height":10.018499,"page":461}],"sectionNumber":4977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":116,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28bbb5b583920f476adc3f4c611c1788","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.60028,"y":726.38},"width":43.290146,"height":10.526819,"page":461}],"sectionNumber":4973,"textBefore":"Report: K-CA 5.8.1/11 ","textAfter":" (2013a). SYN508272:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"029ad8c3de1e92ed6e0dc0d992a5ef39","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":363.25012,"y":714.86},"width":159.74255,"height":10.526819,"page":461},{"topLeft":{"x":133.82,"y":703.34},"width":288.3263,"height":10.526819,"page":461}],"sectionNumber":4973,"textBefore":"Lymphoma L5178Y Cells. ","textAfter":". Laboratory Report","comments":null,"startOffset":144,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4891457c2fc20521011e45d72b74ec3","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.34001,"y":145.97998},"width":30.196,"height":10.0905,"page":461}],"sectionNumber":4977,"textBefore":"June ","textAfter":null,"comments":null,"startOffset":231,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787165Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5a631595e28d124dd43b1e517ce352d","type":"CBI_address","value":"SYSTAT Software, Inc., 501, Canal Boulevard, Suite C, Richmond, CA 94804, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Statistical Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":209.91273,"y":577.55},"width":322.6173,"height":11.017679,"page":463},{"topLeft":{"x":64.104,"y":564.83},"width":56.376625,"height":11.017679,"page":463}],"sectionNumber":5000,"textBefore":" 11 (","textAfter":") statistics software.","comments":null,"startOffset":157,"endOffset":234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b4d33b3527f55ea844cef651f1c8ade","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Mutation assay:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.31506,"y":629.9},"width":38.160767,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"June, 2014, Unpublished. ","textAfter":" File No.SYN508272_10910","comments":null,"startOffset":274,"endOffset":282,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18974b47d838396c08973be136732f76","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.90717,"y":664.34},"width":33.34012,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":77,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a4093a23f6c4e4255eed1980da69bbe","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.92496,"y":664.34},"width":35.013382,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"Report: K-CA 5.8.1/12 ","textAfter":" (2014a). SYN508272:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00cedb9beb2ce3371f7de1ecf6d0eb15","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Mutation assay:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":551.99},"width":82.53038,"height":11.017679,"page":465}],"sectionNumber":5004,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4390,"endOffset":4407,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc9aad76c386fdeda8c5c3a24eacfc89","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Mutation assay:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":175.34,"y":652.82},"width":347.87778,"height":10.526819,"page":465},{"topLeft":{"x":133.82,"y":641.42},"width":114.21535,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"of the Rat. ","textAfter":". Laboratory Report","comments":null,"startOffset":102,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac21a502f95fee7a1505db62195712fc","type":"CBI_author","value":"Wollny H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.88943,"y":716.18},"width":44.718384,"height":11.017679,"page":465}],"sectionNumber":5004,"textBefore":"lymphoma assay. (","textAfter":", 2013a) Guidelines:","comments":null,"startOffset":4225,"endOffset":4233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7269087bd1e26dcca75b4f2738d057f7","type":"PII","value":"23-65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.614,"y":383.61},"width":22.092987,"height":10.0905,"page":466}],"sectionNumber":5012,"textBefore":"Temperature: 19-25°C Humidity: ","textAfter":"% % Air","comments":null,"startOffset":410,"endOffset":415,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787167Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7440f238cd75acd4d27955900532f894","type":"CBI_address","value":"Harlan Laboratories B.V.; Postbus 6174; 5960 AD Horst / The Netherlands","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.41,"y":460.55},"width":274.65707,"height":10.0905,"page":466}],"sectionNumber":5012,"textBefore":null,"textAfter":null,"comments":null,"startOffset":161,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a5b0a5a7376c1cddaee95b9f6911149","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.22002,"y":625.22},"width":30.196,"height":10.0905,"page":466}],"sectionNumber":5006,"textBefore":null,"textAfter":null,"comments":null,"startOffset":216,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787167Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f0adb0835a119fed18f88f34863bea7","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":664.22},"width":28.467995,"height":10.018499,"page":466}],"sectionNumber":5006,"textBefore":null,"textAfter":null,"comments":null,"startOffset":79,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51b020ea04ce1dbeb8311efa8b6007f8","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Slide Preparation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.99,"y":351.45},"width":39.051758,"height":11.017679,"page":467}],"sectionNumber":5028,"textBefore":"methods (nonparametric Mann-","textAfter":" test) were","comments":null,"startOffset":1496,"endOffset":1503,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"647b7b330f553d24ad7971bdd0c384fe","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Slide Preparation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.48022,"y":351.45},"width":26.789429,"height":11.017679,"page":467}],"sectionNumber":5028,"textBefore":"Statistical methods (nonparametric ","textAfter":"-Whitney test) were","comments":null,"startOffset":1491,"endOffset":1495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6dc75500a438f54d49207051028cd33","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":402.0},"width":242.0,"height":159.0,"page":468}],"sectionNumber":5029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"546c93aa216667c9051b7038fa98b891","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":598.0},"width":242.0,"height":56.0,"page":468}],"sectionNumber":5029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34f942fb9d516fce4ec875e428d00782","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":265.0},"width":242.0,"height":100.0,"page":468}],"sectionNumber":5029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f7861771ac551f84bf35332bda258b6","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.88336,"y":576.35},"width":26.78946,"height":11.017679,"page":469}],"sectionNumber":5032,"textBefore":"of the nonparametric ","textAfter":"-Whitney test Table","comments":null,"startOffset":2523,"endOffset":2527,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0a6bd6dbe19cf75b18376273f104ba1","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":143.18,"y":576.35},"width":39.010742,"height":11.017679,"page":469}],"sectionNumber":5032,"textBefore":"the nonparametric Mann-","textAfter":" test Table","comments":null,"startOffset":2528,"endOffset":2535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3cff629243998dec62a6c050e521cd5","type":"CBI_author","value":"Dony E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.60944,"y":100.26001},"width":34.85968,"height":11.017679,"page":469}],"sectionNumber":5032,"textBefore":"micronucleus assay. (","textAfter":", 2014a) Guidelines:","comments":null,"startOffset":3101,"endOffset":3107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4604a3eda1367e6bb122b97994ae6987","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Micronucleus test:","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":219.0},"width":289.0,"height":128.0,"page":469}],"sectionNumber":5032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f9d10fcb8fa44171a5d8920f16134c0c","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Micronucleus test:","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":372.0},"width":296.0,"height":179.0,"page":469}],"sectionNumber":5032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77f0de12cc2b7d2ec0525164e6c552fc","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Micronucleus test:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.59361,"y":651.26},"width":82.552475,"height":11.017679,"page":470}],"sectionNumber":5032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3219,"endOffset":3236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2245c891cbd4850c12ab8faa5d4a7a2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Micronucleus test:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":716.42},"width":38.051224,"height":10.526819,"page":470}],"sectionNumber":5030,"textBefore":"November 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":262,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72c498c38ac5171a503e37b2274a351f","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.30302,"y":527.27},"width":19.337448,"height":11.017679,"page":470}],"sectionNumber":5033,"textBefore":"and 5 females ","textAfter":" Wistar rats","comments":null,"startOffset":179,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb051bcedaaa5157c0d66b721a3a6c6f","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.6258,"y":527.27},"width":19.337433,"height":11.017679,"page":470}],"sectionNumber":5033,"textBefore":"Wistar rats (Crl:WI(","textAfter":")) were fed","comments":null,"startOffset":203,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bf20c4e7b30a50e997f0463909f02e8","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.8498,"y":527.27},"width":15.0980835,"height":11.017679,"page":470}],"sectionNumber":5033,"textBefore":"Wistar rats (","textAfter":":WI(Han)) were fed","comments":null,"startOffset":196,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb536f803a8a66158309830eff464ff8","type":"CBI_address","value":"Charles River Laboratories, Preclinical Services, Tranent (PCS-EDI) Edinburgh, EH33 2NE, United Kingdom.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Micronucleus test:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":158.40213,"y":739.46},"width":364.94888,"height":10.526819,"page":470},{"topLeft":{"x":133.82,"y":727.94},"width":98.78728,"height":10.526819,"page":470}],"sectionNumber":5030,"textBefore":"Study in Rats. ","textAfter":" Laboratory Report","comments":null,"startOffset":97,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57ae65df74ac193fce32c5863ecdea00","type":"CBI_author","value":"Dymarkowska K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.5126,"y":750.98},"width":72.55264,"height":10.526819,"page":470}],"sectionNumber":5030,"textBefore":"Report: K-CA 5.8.1/13 ","textAfter":" (2015). SYN508272:","comments":null,"startOffset":22,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e690ca587f1ff5ed86dcdbe9bcf54350","type":"PII","value":"39-83","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.826,"y":94.62402},"width":22.081009,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"17-23 °C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":676,"endOffset":681,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787169Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d485a6793556d1abf4300c80ada7398","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":227.10004},"width":15.940002,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":null,"textAfter":" Wistar (Crl:WI(Han))","comments":null,"startOffset":51,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d132390a423adc8d67cc5e5f7c9cf7ae","type":"CBI_address","value":"Special Diet Services Limited, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":385.214,"y":142.14001},"width":110.70111,"height":10.0905,"page":471},{"topLeft":{"x":211.61,"y":131.70001},"width":72.83803,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"(Ground) Diet (","textAfter":") ad libitum","comments":null,"startOffset":520,"endOffset":568,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e5c27592203d25f93cc293db8c34e8e","type":"PII","value":"17-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.325,"y":106.02002},"width":22.098969,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"Temperature: ","textAfter":" °C Humidity:","comments":null,"startOffset":657,"endOffset":662,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"229bf12e8ab06d050b4810651a7c957e","type":"CBI_address","value":"Special Diets Services Limited, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.9688,"y":277.76996},"width":230.25676,"height":11.017679,"page":471}],"sectionNumber":5042,"textBefore":"(Ground) Diet (","textAfter":")","comments":null,"startOffset":150,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3ec020615bea152e91aeb1dba914906","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":347.13},"width":28.467995,"height":10.018499,"page":471}],"sectionNumber":5037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dd7777c615abe341e7e7b18e8c837748","type":"PII","value":"0700-1900","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":340.12103,"y":71.91998},"width":40.316986,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"per day from ","textAfter":null,"comments":null,"startOffset":742,"endOffset":751,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdef79bfe9643a545b0f146f18eab464","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.22002,"y":318.21002},"width":30.196,"height":10.0905,"page":471}],"sectionNumber":5039,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff3ffbf0823a99dcf66d88d6b20b5453","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.45407,"y":227.10004},"width":15.948975,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"Han Wistar (Crl:WI(","textAfter":"))","comments":null,"startOffset":70,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"020ba7faa1fd0010213e2a83c91e27dd","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.014,"y":227.10004},"width":12.502014,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"Han Wistar (","textAfter":":WI(Han))","comments":null,"startOffset":63,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94d531fc3b9abd53f4afbc08c97cf6ad","type":"CBI_address","value":"Charles River UK Limited, Margate, Kent","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":201.29999},"width":153.1361,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":null,"textAfter":null,"comments":null,"startOffset":178,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf3b220c14eaca49aab8032b258ecadd","type":"PII","value":"10 26-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.55,"y":592.82},"width":9.940002,"height":10.0905,"page":472},{"topLeft":{"x":465.1,"y":592.82},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5047,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fbba940dd174bdebc3450811a9183650","type":"PII","value":"2000 16-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.69,"y":571.19},"width":19.044998,"height":10.0905,"page":472},{"topLeft":{"x":350.71,"y":571.19},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5049,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67e35a70b9850ea90d84930b4169d720","type":"PII","value":"36-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.1,"y":560.27},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5050,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7457e0773899e88ef25b3eaf64c8678","type":"PII","value":"21-25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.1,"y":603.74},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5046,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3402bc4050fda9f9703d938f43f6351f","type":"PII","value":"500 11-15 31-35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.85,"y":581.99},"width":14.619995,"height":10.0905,"page":472},{"topLeft":{"x":350.71,"y":581.99},"width":22.059998,"height":10.0905,"page":472},{"topLeft":{"x":465.1,"y":581.99},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5048,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"36c6a5e3e2cf9db106987ecac04746df","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.47,"y":520.91},"width":24.127167,"height":10.526819,"page":473}],"sectionNumber":5053,"textBefore":"Monocytes Eosinophils Basophils ","textAfter":" unclassified cells","comments":null,"startOffset":3418,"endOffset":3423,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c136f93dc79320f11e61299f35083171","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":380.85},"width":24.296455,"height":10.526819,"page":474}],"sectionNumber":5053,"textBefore":"identification Nerve, optic ","textAfter":" lesions including","comments":null,"startOffset":5771,"endOffset":5776,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8264883bcabf25b34c7343d4da0560c","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Nerve - sciatic","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":191.81471,"y":658.34},"width":49.8741,"height":11.017679,"page":475}],"sectionNumber":5054,"textBefore":null,"textAfter":null,"comments":null,"startOffset":236,"endOffset":247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ac9f9f49c98612698e32cbdbb049817","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-23: Intergroup comparison of cumulative body weight gain (g) (selected time points)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.94,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":230.45,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":282.77,"y":704.3},"width":19.044983,"height":10.018499,"page":476}],"sectionNumber":5056,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787172Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb4155d9c40b3d20977f14388e0ce170","type":"PII","value":"100 500 2000 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-24: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.29,"y":395.85},"width":14.61998,"height":10.018499,"page":476},{"topLeft":{"x":326.59,"y":395.85},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":405.43,"y":395.85},"width":19.044983,"height":10.018499,"page":476},{"topLeft":{"x":485.14,"y":395.85},"width":19.044983,"height":10.018499,"page":476}],"sectionNumber":5059,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6f7da510e8715af61eb6d74f801c2fd","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-23: Intergroup comparison of cumulative body weight gain (g) (selected time points)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.91,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":448.42,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":497.98,"y":704.3},"width":19.045013,"height":10.018499,"page":476}],"sectionNumber":5056,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e5f7821286c4b6e7dc63a93c4eaa3ad","type":"PII","value":"30 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-23: Intergroup comparison of cumulative body weight gain (g) (selected time points)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.71,"y":646.34},"width":10.059998,"height":10.0905,"page":476},{"topLeft":{"x":341.71,"y":632.06},"width":10.059998,"height":10.0905,"page":476}],"sectionNumber":5057,"textBefore":"9 18 20 ","textAfter":null,"comments":null,"startOffset":94,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51ee231a8d56e991c036a6f5494ea4e1","type":"PII","value":"90-298","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.1,"y":205.85999},"width":26.490997,"height":10.0905,"page":477}],"sectionNumber":5065,"textBefore":"0.04-0.35 0-0.11 1.1-2.4 ","textAfter":null,"comments":null,"startOffset":557,"endOffset":563,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89e037b9c4e55e0e91fe089d4eed5403","type":"PII","value":"113-263","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.37,"y":205.85999},"width":31.050995,"height":10.0905,"page":477}],"sectionNumber":5065,"textBefore":"0.05-0.26 0-0.08 1.3-2.3 ","textAfter":" -","comments":null,"startOffset":328,"endOffset":335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"95b78a2e0a76b24ec143343fae45d0eb","type":"PII","value":"2010-2012","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.324,"y":165.65997},"width":40.250977,"height":10.0905,"page":477}],"sectionNumber":5075,"textBefore":"all parameters between ","textAfter":" except for","comments":null,"startOffset":5619,"endOffset":5628,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e70b723242977a791380966df7e07aa","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.87,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":418.51,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":455.02,"y":340.05},"width":19.044983,"height":10.018499,"page":477}],"sectionNumber":5064,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ef601476dd8f0e8663eb9b5efe4c022","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.5,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":215.21,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":251.69,"y":340.05},"width":19.044983,"height":10.018499,"page":477}],"sectionNumber":5064,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"513b6e0ec58c19070983cee7d149b6a4","type":"PII","value":"14-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":298.97,"y":427.31},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":null,"textAfter":" 2-3 19-33","comments":null,"startOffset":199,"endOffset":204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de04905eb529fb3c65a3dfddbf3e0f95","type":"PII","value":"56-169","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":296.69,"y":362.37},"width":26.490997,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"14-20 2-3 19-33 ","textAfter":" 1.08-2.41 4.6-7.3","comments":null,"startOffset":215,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"73218086049c2ff55a1b4b862e4da4b1","type":"PII","value":"21-35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":496.3,"y":387.45},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"12-19 2.4-3.8 ","textAfter":" 55-165 0.87-2.55","comments":null,"startOffset":352,"endOffset":357,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c901858db9e2efdf9f3e655a1d637c35","type":"PII","value":"12-19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":496.3,"y":427.31},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":null,"textAfter":" 2.4-3.8 21-35","comments":null,"startOffset":338,"endOffset":343,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e131a2f77b5393fb23f92f7e271f06c7","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.74,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":220.25,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":256.37,"y":453.47},"width":19.044983,"height":10.018499,"page":478}],"sectionNumber":5068,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1ff062e90a8d9698e409a3c937f316a","type":"PII","value":"19-33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":298.97,"y":387.45},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"14-20 2-3 ","textAfter":" 56-169 1.08-2.41","comments":null,"startOffset":209,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"349bde702fcaed443564d65a0b1566ee","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.03,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":423.31,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":456.58,"y":453.47},"width":19.044983,"height":10.018499,"page":478}],"sectionNumber":5068,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e1c626a798ecb3ed653700c069b8925","type":"PII","value":"2010-2012","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.324,"y":307.05},"width":40.250977,"height":10.0905,"page":478}],"sectionNumber":5075,"textBefore":"all parameters between ","textAfter":" * Statistically","comments":null,"startOffset":7984,"endOffset":7993,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5bb3b562e1b398a1cb1d6acf5a49eb62","type":"PII","value":"55-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":494.02,"y":362.37},"width":26.490997,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"12-19 2.4-3.8 21-35 ","textAfter":" 0.87-2.55 4.5-7.","comments":null,"startOffset":358,"endOffset":364,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"79fef23a0ec0003236aad2ac6f55d9b2","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-27: Intergroup comparison of selected urinalysis parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.5,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":214.97,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":251.69,"y":685.46},"width":19.044983,"height":10.018499,"page":479}],"sectionNumber":5072,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787177Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6813a3fa5cd1507cbb999952bae77136","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-27: Intergroup comparison of selected urinalysis parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.39,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":421.15,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":455.74,"y":685.46},"width":19.044983,"height":10.018499,"page":479}],"sectionNumber":5072,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787177Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d5b55a151188deb2a9d2ab7747d931e","type":"PII","value":"2010-2012","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.324,"y":631.34},"width":40.250977,"height":10.0905,"page":479}],"sectionNumber":5075,"textBefore":"all parameters between ","textAfter":" * Statistically","comments":null,"startOffset":9584,"endOffset":9593,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787177Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c4c7423bb07c6bd8e1f20c889a5ff74","type":"CBI_author","value":"Dymarkowska K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.45944,"y":590.42},"width":75.652466,"height":11.017679,"page":480}],"sectionNumber":5076,"textBefore":"in females. (","textAfter":", 2015)","comments":null,"startOffset":4633,"endOffset":4646,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de8f9e2a5679fff39637e910f1336447","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" SYN545547 (CSCD550897):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":464.33084,"y":306.81},"width":24.846405,"height":11.017679,"page":480}],"sectionNumber":5079,"textBefore":"non-genotoxic compounds (‘Cramer ","textAfter":" III’) are","comments":null,"startOffset":497,"endOffset":502,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc46b0faab394a504793aa0e561f8340","type":"CBI_author","value":"Cramer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" SYN545547 (CSCD550897):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.47,"y":306.81},"width":33.932343,"height":11.017679,"page":480}],"sectionNumber":5079,"textBefore":"non-genotoxic compounds (‘","textAfter":" Class III’)","comments":null,"startOffset":490,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efa4e63cb13ee13093526f409213abf6","type":"CBI_address","value":"Syngenta Ltd.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  SYN545547 (CSCD550897):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.7955,"y":242.34003},"width":57.69232,"height":10.526819,"page":480}],"sectionNumber":5077,"textBefore":"Report: K-CA 5.8.1/67 ","textAfter":" (2016). SYN545547:","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53ffef765a1c555dab9f481a564db760","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  SYN545547 (CSCD550897):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.80515,"y":207.77997},"width":38.16078,"height":10.526819,"page":480}],"sectionNumber":5077,"textBefore":"January 2016. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":265,"endOffset":273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff506865231b367b43eeb1e0e9c5b1ad","type":"CBI_address","value":"Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  SYN545547 (CSCD550897):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":295.4111,"y":230.82},"width":227.60019,"height":10.526819,"page":480},{"topLeft":{"x":133.82,"y":219.29999},"width":131.40475,"height":10.526819,"page":480}],"sectionNumber":5077,"textBefore":"SYN545974 and SYN545547. ","textAfter":". Laboratory Report","comments":null,"startOffset":122,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2cc9cf2104487016196d0fcd9e17d581","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":80.53152,"y":652.94},"width":61.863518,"height":11.017679,"page":480}],"sectionNumber":5076,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4311,"endOffset":4325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23ab5a722d89740c93f0583969832d9e","type":"CBI_address","value":"Syngenta Ltd.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":438.77945,"y":453.83},"width":62.7688,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"be non-genotoxic. (","textAfter":", 2016) ","comments":null,"startOffset":1923,"endOffset":1936,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3e52f09385628a2a955c4b881d2b885","type":"CBI_author","value":"Cramer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":295.05493,"y":240.53998},"width":33.82196,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"non-genotoxic compounds (‘","textAfter":" Class III’)","comments":null,"startOffset":2501,"endOffset":2507,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8788089fb0c96a85fbf339c5afc92d61","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.15866,"y":240.53998},"width":24.956787,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"non-genotoxic compounds (‘Cramer ","textAfter":" III’) are","comments":null,"startOffset":2508,"endOffset":2513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7669d4b8f3b709342ec365e18c1ed257","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":131.62799,"y":67.23999},"width":41.88115,"height":11.017679,"page":481}],"sectionNumber":5160,"textBefore":"2,4,6- TCP by ","textAfter":". However, in","comments":null,"startOffset":150,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d57efc1bb480fc2b885ba26e139502b","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":26.62384,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"DNA alerts for ","textAfter":", MN and","comments":null,"startOffset":401,"endOffset":405,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f39fdf367e20658fba9c09796437e907","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":67.0,"y":104.0},"width":74.0,"height":85.0,"page":481}],"sectionNumber":5080,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f305dd964f02bad1d54ac06548ad492","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.39926,"y":388.05},"width":52.93213,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"(see K-CA 5.1.1/05 ","textAfter":" and Yewkes,","comments":null,"startOffset":2866,"endOffset":2875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"48677c12538caf49410bdec838ba17ab","type":"CBI_author","value":"Yewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.185,"y":564.47},"width":36.639404,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"plasma (Macdonald and ","textAfter":", 2015 and","comments":null,"startOffset":1540,"endOffset":1546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c6160551574f6abdf86d0aadcb5ea9b","type":"CBI_author","value":"Yewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.55603,"y":388.05},"width":36.350098,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"5.1.1/05 MacDonald and ","textAfter":", 2015). Male","comments":null,"startOffset":2880,"endOffset":2886,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"748b336fe2df6c9cc33279fbcd1a7b5e","type":"CBI_author","value":"Macdonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.1049,"y":564.47},"width":50.547485,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"in plasma (","textAfter":" and Yewkes,","comments":null,"startOffset":1526,"endOffset":1535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4cabb491a85cf5329b6aeaba34de5908","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":437.99},"width":26.756325,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"80 mg/kg/day (","textAfter":" et al.,","comments":null,"startOffset":2493,"endOffset":2498,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7b7a54961274f0cf2abef53226eb815","type":"CBI_author","value":"Tomlinson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.57523,"y":564.47},"width":48.714874,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"Yewkes, 2015 and ","textAfter":" et al.,","comments":null,"startOffset":1557,"endOffset":1566,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc1d3d8329732d792db94c885fc28113","type":"CBI_author","value":"Pekari","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":153.38449,"y":475.91},"width":29.030563,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"et al., 1981; ","textAfter":" et al.,","comments":null,"startOffset":2205,"endOffset":2211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3ce99f6638624d9f69da77b2a7a7d37","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":475.91},"width":27.38559,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"not accumulate (","textAfter":" et al.,","comments":null,"startOffset":2185,"endOffset":2190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eba1ab513211a1f4b286e7c2dadc6ad7","type":"PII","value":"2009) 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.43309,"y":614.54},"width":26.756332,"height":11.017679,"page":482},{"topLeft":{"x":268.25,"y":619.58},"width":8.619995,"height":9.43602,"page":482}],"sectionNumber":5160,"textBefore":"risk assessment (OECD, ","textAfter":" . 2,4,6-TCP","comments":null,"startOffset":1266,"endOffset":1274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787179Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed2984a90c81a936a2349b29a6f79978","type":"CBI_author","value":"Tomlinson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.72815,"y":488.39},"width":48.736908,"height":11.017679,"page":483}],"sectionNumber":5160,"textBefore":"(see K-CA 5.1.1/08 ","textAfter":" et al.,","comments":null,"startOffset":4759,"endOffset":4768,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bdb8a295d9050e3091577f9a7940d523","type":"PII","value":"085) 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-30: Maximum total mg/kg TCP related material in mice exposed to over a 7 day period\nfollowing a single oral dose of SYN545974.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.413,"y":215.70001},"width":17.541992,"height":10.0905,"page":483},{"topLeft":{"x":466.66,"y":215.70001},"width":10.053986,"height":10.0905,"page":483}],"sectionNumber":5104,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787179Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40d8fd6f9a9af0669876b1fd65cc4944","type":"PII","value":"(41) 140","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-29: Mean plasma circulating levels of TCP related material over 96 hour period,\nfollowing single oral dose SYN545974 to rats.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":267.731,"y":555.83},"width":15.984985,"height":10.0905,"page":483},{"topLeft":{"x":322.63,"y":555.83},"width":14.607971,"height":10.0905,"page":483}],"sectionNumber":5095,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787179Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dca439b82a55483653f85f11ac9d13b4","type":"PII","value":"(41) 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-29: Mean plasma circulating levels of TCP related material over 96 hour period,\nfollowing single oral dose SYN545974 to rats.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.791,"y":555.83},"width":15.984985,"height":10.0905,"page":483},{"topLeft":{"x":474.7,"y":555.83},"width":10.053986,"height":10.0905,"page":483}],"sectionNumber":5095,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fee021ab4894e539fdf9610cd95ae021","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.32397,"y":92.46399},"width":32.18802,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"000, 14 700, ","textAfter":", 31 500","comments":null,"startOffset":8934,"endOffset":8940,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5dac203b18ed0c792d67885c3be3b69","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.252,"y":92.46399},"width":32.188004,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"ad libitum containing ","textAfter":", 14 700,","comments":null,"startOffset":8918,"endOffset":8924,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13aecf289330145bccc571de3a0c141f","type":"PII","value":"46 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":274.57486,"y":92.46399},"width":32.187958,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"31 500 or ","textAfter":" ppm 2,4,6-TCP","comments":null,"startOffset":8952,"endOffset":8958,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8a1e0076e792620f82c95a3f609d7c25","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.98141,"y":92.46399},"width":32.06656,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"700, 21 500, ","textAfter":" or 46","comments":null,"startOffset":8942,"endOffset":8948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b7ad219cbfbf5a509425e07a5a5da9e8","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.68285,"y":205.62},"width":37.089775,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"male and female ","textAfter":"-Dawley rats (Bercz","comments":null,"startOffset":8116,"endOffset":8123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a664ebc304de030cb5d04ae390d45c53","type":"PII","value":"14 700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":151.90942,"y":92.46399},"width":32.06656,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"containing 10 000, ","textAfter":", 21 500,","comments":null,"startOffset":8926,"endOffset":8932,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c294e6774efad5354fff76d2d0b90d8","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.87186,"y":205.62},"width":26.756332,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"Sprague-Dawley rats (","textAfter":" et al.,","comments":null,"startOffset":8137,"endOffset":8142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6057f53e5f16bbd4849fc280503e79c5","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.85248,"y":615.62},"width":27.38559,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"extent isomerized (","textAfter":", 1981). In","comments":null,"startOffset":7215,"endOffset":7220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04b11684923c16041a1f6fd50f47dada","type":"CBI_author","value":"Pekari","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.98743,"y":615.62},"width":29.251404,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"a study by ","textAfter":" et al.,","comments":null,"startOffset":7243,"endOffset":7249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cc67da70dfd10150fa565d39f41c5a3","type":"CBI_author","value":"Balikova","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.0143,"y":577.67},"width":40.677765,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"Additional data by ","textAfter":" et al.,","comments":null,"startOffset":7537,"endOffset":7545,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a3eb36c8a7f2b30c6af9257f948fb40","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":242.0},"width":443.0,"height":248.0,"page":484}],"sectionNumber":5160,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2453919689542548ff9e34b6240939ea","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":131.71294,"y":627.62},"width":31.713303,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"and females at ","textAfter":" ppm. Treatment","comments":null,"startOffset":10091,"endOffset":10097,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f627b3c9fd26fe8d4b9f01dbf508fc26","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.01328,"y":615.02},"width":31.238571,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"effects observed at ","textAfter":" ppm are","comments":null,"startOffset":10202,"endOffset":10208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13829d319a7fc68a4907e8ae9b5dc76a","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.63983,"y":388.53},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively","comments":null,"startOffset":11792,"endOffset":11798,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f0612ac598086576904ed471a5d692a","type":"CBI_author","value":"Stoner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.79788,"y":489.11},"width":29.759186,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"for 2,4,6-TCP (","textAfter":", 1986)) .","comments":null,"startOffset":11144,"endOffset":11150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f49697dc05c65662df2d372a2b82c6a5","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":128.8755,"y":287.37},"width":32.066574,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively.","comments":null,"startOffset":12579,"endOffset":12585,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"058f8aa847ac5a84d75e2bdb6b313e3b","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.37807,"y":665.66},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"000, 14 700, ","textAfter":" or 31","comments":null,"startOffset":9818,"endOffset":9824,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9682bd7260cb7bad6168f18dbfad06f","type":"PII","value":"10 428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.1874,"y":73.0},"width":31.359955,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 214 and ","textAfter":" ppm respectively..","comments":null,"startOffset":14194,"endOffset":14200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c189d64533a6ee77d44331f414fee1c","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.2131,"y":665.66},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"containing 6 800, ","textAfter":", 14 700,","comments":null,"startOffset":9802,"endOffset":9808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7093a0254696b6f7db52182695fe0a48","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.89655,"y":652.94},"width":33.148438,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"and females at ","textAfter":" ppm. A","comments":null,"startOffset":9964,"endOffset":9970,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"04d515d3c0e28758e646ea2ef3da95a5","type":"PII","value":"10 428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.63983,"y":161.58002},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 214 and ","textAfter":" ppm respectively","comments":null,"startOffset":13432,"endOffset":13438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0092f8ef2f726f86aa2a8ee2bf60430a","type":"PII","value":"20 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.23795,"y":237.41998},"width":32.552307,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"10 000 or ","textAfter":" ppm (females),","comments":null,"startOffset":12835,"endOffset":12841,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"153f32388ec7d656e2807e1c5d3cc52f","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":151.08815,"y":274.76996},"width":26.756332,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"rat study by ","textAfter":" (1990). In","comments":null,"startOffset":12682,"endOffset":12687,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f549d00bfa9ea36a633cb3a217076d7","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.41586,"y":401.25},"width":32.06656,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"at 5000 and ","textAfter":" ppm respectively","comments":null,"startOffset":11701,"endOffset":11707,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ab7d64d85c2cb598b07a0111bfb6aca","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":228.90416,"y":439.19},"width":32.905594,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm for","comments":null,"startOffset":11398,"endOffset":11404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12eeab8cda6486ef9c6ab760504aa285","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.37708,"y":85.62402},"width":33.027008,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively","comments":null,"startOffset":14115,"endOffset":14121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787184Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"931a5f42bae62afb734c8c724612c0f7","type":"PII","value":"14 700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":476.40393,"y":640.34},"width":32.430847,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"in males at ","textAfter":" ppm and","comments":null,"startOffset":10065,"endOffset":10071,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787184Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"70411e2207d636e0f4f664c12690312e","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.96222,"y":627.62},"width":31.656311,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"not observed at ","textAfter":" ppm, any","comments":null,"startOffset":10166,"endOffset":10172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787184Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41e4de06f876781cf1e813d21faffd67","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.1859,"y":702.86},"width":26.756348,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"day study by ","textAfter":", 1990). In","comments":null,"startOffset":9671,"endOffset":9676,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43f7e63f03eb0077b32ee9e992eda02b","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.44717,"y":174.18},"width":31.94513,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively","comments":null,"startOffset":13341,"endOffset":13347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6316b9923f16e66cdf7ad7a563cfdc3d","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.43008,"y":237.41998},"width":32.673782,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"000ppm (males) and ","textAfter":" or 20","comments":null,"startOffset":12825,"endOffset":12831,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"354b45a0fa3350d16d131e7eb4fcc58d","type":"PII","value":"14 700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.11342,"y":665.66},"width":32.552338,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"800, 10 000, ","textAfter":", 21 500","comments":null,"startOffset":9810,"endOffset":9816,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f07ab4d54d817fd0285cad257a48ff99","type":"PII","value":"46 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":728.18},"width":31.359993,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"observed only at ","textAfter":" ppm (~2","comments":null,"startOffset":9405,"endOffset":9411,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c58b571f4eeef1b2b46d92e8647164e3","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":464.51},"width":25.49775,"height":10.929359,"page":485}],"sectionNumber":5160,"textBefore":"(Stoner, 1986)) . ","textAfter":" term toxicity","comments":null,"startOffset":11161,"endOffset":11165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cd3f95abf8a92675e0441c6bb9b9ecb","type":"PII","value":"10 428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.35454,"y":212.10004},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 214 and ","textAfter":" ppm. In","comments":null,"startOffset":13026,"endOffset":13032,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2b807cca48b2190b1d145f0ba30ba4f","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":271.82162,"y":665.66},"width":32.430847,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"21 500 or ","textAfter":" ppm 2,4,6-TCP","comments":null,"startOffset":9828,"endOffset":9834,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787186Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"875ce448ee2a4738cf6df7c79a15a0dd","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.151344,"y":425.87},"width":24.305428,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"of 40 female ","textAfter":"-Evans hooded rats","comments":null,"startOffset":16603,"endOffset":16607,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d1be89df4841a24d5d00f301441d8f9","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.93173,"y":615.02},"width":24.30542,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"15 adult male ","textAfter":"-Evans hooded (LEH)","comments":null,"startOffset":15260,"endOffset":15264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4026c58759bfbab99299f31bdeae92","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.52061,"y":262.05},"width":24.30545,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"a study by ","textAfter":" and Koller","comments":null,"startOffset":17757,"endOffset":17761,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e09d33f9f57328ea0a6050f9cc53be85","type":"CBI_author","value":"Blackburn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":221.32466,"y":400.53},"width":46.694565,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"during gestation (","textAfter":", 1986). Dams","comments":null,"startOffset":16827,"endOffset":16836,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e58e6bfb442d689429b396adda0b2b41","type":"PII","value":"12-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.80203,"y":211.5},"width":26.787933,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"on treatment for ","textAfter":" weeks. The","comments":null,"startOffset":18211,"endOffset":18216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787186Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4f174ad31604dda1ad08e9080592007","type":"CBI_author","value":"Evans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":336.91,"y":615.02},"width":27.948639,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"adult male Long-","textAfter":" hooded (LEH)","comments":null,"startOffset":15265,"endOffset":15270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ed2519a12b221ed3ef3ac576ec43a50","type":"CBI_author","value":"Stoner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":172.21875,"y":728.18},"width":29.604645,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"was investigated (","textAfter":", 1986). Lungs","comments":null,"startOffset":14448,"endOffset":14454,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c364278ca4e78217c9d7ad4fb1032f5e","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.50046,"y":262.05},"width":29.129929,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"by Exon and ","textAfter":" (1985) weanling","comments":null,"startOffset":17766,"endOffset":17772,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1bf1c8d9eba273c8861e7b34c55061a8","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":323.82,"y":262.05},"width":36.968292,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"(1985) weanling female ","textAfter":" Dawley (SD)","comments":null,"startOffset":17796,"endOffset":17803,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9ab8f7207f84882acd873bc38afc8b5","type":"CBI_author","value":"Blackburn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":116.03615,"y":615.02},"width":46.827057,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"been conducted (","textAfter":", 1986). Groups","comments":null,"startOffset":15218,"endOffset":15227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6e596183be35b9a7a9b6805a50fc07d","type":"CBI_author","value":"Evans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.82,"y":425.87},"width":27.948647,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"40 female Long-","textAfter":" hooded rats","comments":null,"startOffset":16608,"endOffset":16613,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28fada601dc250eaa4277d00dcd47645","type":"PII","value":"323-327","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":681.5},"width":31.020996,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":"CHEMOSPHERE, (1981), 10: ","textAfter":".","comments":null,"startOffset":263,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787187Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5020ea410674af38044f80c76e2eb028","type":"CBI_author","value":"Ward","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.7431,"y":84.54401},"width":23.240723,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"J.K; Goodman J.I; ","textAfter":" J.M; Loughran","comments":null,"startOffset":19227,"endOffset":19231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28de600ba6186816666d2f788133adcb","type":"CBI_author","value":"Balikova M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.31,"y":593.18},"width":43.65103,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":null,"textAfter":"; Stipek S;","comments":null,"startOffset":332,"endOffset":342,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34098840ff926e48c1f20a31cb301c0","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.13,"y":624.98},"width":22.027008,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":"TOXICOLOGY, (1986), 59: ","textAfter":".","comments":null,"startOffset":376,"endOffset":381,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787187Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98cbbc66f98da30f82676cb75cbdf85c","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":737.78},"width":35.4971,"height":10.018499,"page":487}],"sectionNumber":5106,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f412903b503ab3f2d378af9fe21f04e","type":"CBI_author","value":"Haseman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.24088,"y":84.54401},"width":38.110962,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"in Thomas J; ","textAfter":" J.K; Goodman","comments":null,"startOffset":19201,"endOffset":19208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ef5d3038cd97af01892434b9a93ad38","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.344,"y":107.58002},"width":24.127129,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"of 2,4,6-TCP 15 ","textAfter":" granular lymphocyte","comments":null,"startOffset":18928,"endOffset":18933,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9b9e29772877f338e238bfd5163838d","type":"CBI_author","value":"Parnell","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.738,"y":478.55},"width":26.623016,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"L; Page N.P; ","textAfter":" M.J; Wolfe","comments":null,"startOffset":285,"endOffset":292,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d67f9bbb60dbcec16f0b2edd5306555","type":"CBI_author","value":"Boudène C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.83704,"y":666.38},"width":32.94095,"height":10.0905,"page":487},{"topLeft":{"x":417.43,"y":655.94},"width":7.0029907,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":"Pekari K; ","textAfter":"; Aitio A.","comments":null,"startOffset":320,"endOffset":329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6945041522b8081d5aa3c39ac760dffe","type":"CBI_author","value":"Bercz J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":499.31},"width":27.648987,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":null,"textAfter":".P; Robinson M;","comments":null,"startOffset":243,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8519766aaea5c21bfaedc986533e596a","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.3752,"y":73.119995},"width":30.332245,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"lymphocytic leukemia in ","textAfter":" 344 rats","comments":null,"startOffset":19323,"endOffset":19330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6cf496f8a5654f616b8976ddce255c4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":50.080017},"width":38.05121,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"Science. 99(1): 3-19. ","textAfter":" File No.","comments":null,"startOffset":19478,"endOffset":19486,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b5628c2b1dceb7ee163b3dc7f700627","type":"CBI_author","value":"Jones","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.96603,"y":488.87},"width":20.934998,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"J.P; Robinson M; ","textAfter":" L; Page","comments":null,"startOffset":266,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"448662ac02bb92959e89c51d40f04a32","type":"CBI_author","value":"Crkovska J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.24902,"y":582.71},"width":41.077026,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":"M; Stipek S; ","textAfter":". BIOCHEMIA CLINICA","comments":null,"startOffset":354,"endOffset":364,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7363fc22f7539f38dfe0686860f7e7e8","type":"CBI_author","value":"BOHEMOSLOVAC A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.03,"y":551.75},"width":75.87085,"height":10.0905,"page":487},{"topLeft":{"x":402.67,"y":541.31},"width":7.497986,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":null,"textAfter":null,"comments":null,"startOffset":384,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d316f419ebdfd4a5e6ac673529c63216","type":"CBI_author","value":"Aitio A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.221,"y":655.94},"width":28.234009,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":"K; Boudène C; ","textAfter":". ARCHIVES OF","comments":null,"startOffset":331,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55df3c0f71fe9478690c742f274b52cb","type":"CBI_author","value":"Page N.P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.34805,"y":488.87},"width":18.541016,"height":10.0905,"page":487},{"topLeft":{"x":406.27,"y":478.55},"width":14.751984,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":null,"textAfter":null,"comments":null,"startOffset":275,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50fe4ec4c7a07274b3bef0c58d694b7f","type":"CBI_author","value":"Kraus A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.11203,"y":712.58},"width":22.375,"height":10.0905,"page":487},{"topLeft":{"x":415.51,"y":702.14},"width":7.497986,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":"Bahig M. E; ","textAfter":"; Klein W.","comments":null,"startOffset":220,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1cab476268d5316c826ec97b0085d209"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a66a2664a7e4a60082ce356255ec61d","type":"CBI_author","value":"Thomas J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.66503,"y":84.54401},"width":42.334023,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"of evidence approach. ","textAfter":" et al.,","comments":null,"startOffset":19152,"endOffset":19161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9dfb1d416c35184aeefdbb00f63acb9b","type":"CBI_author","value":"Pekari K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.27,"y":666.38},"width":32.797028,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":null,"textAfter":"; Boudène C;","comments":null,"startOffset":310,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"752d37a9770c6c38f951ceae22c501d3","type":"CBI_author","value":"Robinson M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.71402,"y":499.31},"width":35.36197,"height":10.0905,"page":487},{"topLeft":{"x":406.15,"y":488.87},"width":9.001007,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"Bercz J.P; ","textAfter":"; Jones L;","comments":null,"startOffset":254,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"445e9ed1632733ae9cfbf24d2c69d2e0","type":"CBI_author","value":"Wolfe G.W.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.51,"y":468.11},"width":45.10901,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"N.P; Parnell M.J; ","textAfter":" JOURNAL OF","comments":null,"startOffset":298,"endOffset":308,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a4cda711264ba73b51317e28714b7ac","type":"CBI_author","value":"Klein W.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.661,"y":702.14},"width":33.949005,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":"E; Kraus A; ","textAfter":" CHEMOSPHERE, (1981),","comments":null,"startOffset":229,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1cab476268d5316c826ec97b0085d209"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1882d2b10ba9604edb09e8ed5d8add97","type":"CBI_author","value":"Bahig M. E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":403.51,"y":712.58},"width":42.804993,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":null,"textAfter":"; Kraus A;","comments":null,"startOffset":208,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1cab476268d5316c826ec97b0085d209"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cab476268d5316c826ec97b0085d209","type":"published_information","value":"CHEMOSPHERE","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":403.39,"y":691.82},"width":67.07794,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":null,"textAfter":null,"comments":null,"startOffset":238,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1af91ede5d149b0a42e65b65c266298a","type":"CBI_author","value":"Thomas","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.77936,"y":84.54401},"width":33.16089,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"(2007). Published in ","textAfter":" J; Haseman","comments":null,"startOffset":19191,"endOffset":19197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"720ab83e6d938359c8a8df4bd2f36f58","type":"CBI_author","value":"Spencer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":73.119995},"width":33.10108,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"J.M; Loughran T.P; ","textAfter":" P.J. (2007).","comments":null,"startOffset":19251,"endOffset":19258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3665f6b30644176dcbd50cd76a71f5bf","type":"CBI_author","value":"Stipek S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.77606,"y":593.18},"width":24.07602,"height":10.0905,"page":487},{"topLeft":{"x":411.43,"y":582.71},"width":6.003998,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":"Balikova M; ","textAfter":"; Crkovska J.","comments":null,"startOffset":344,"endOffset":352,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3a41a0308433f19458a7e1ab546a711","type":"CBI_author","value":"Loughran T.P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.52927,"y":84.54401},"width":56.746246,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19237,"endOffset":19249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3ff430fc091960de6f70b93bcc9a9f6","type":"CBI_author","value":"Goodman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.234,"y":84.54401},"width":40.501404,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"J; Haseman J.K; ","textAfter":" J.I; Ward","comments":null,"startOffset":19214,"endOffset":19221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb086a18241e61663bff15267300c763","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.87,"y":466.91},"width":20.016968,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":null,"textAfter":" J.H; Koller","comments":null,"startOffset":467,"endOffset":471,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23fd95adcc619b987e2c9380d5e98e7a","type":"published_information","value":"FUNDAMENTAL AND APPLIED TOXICOLOGY","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":403.39,"y":571.07},"width":69.47189,"height":10.0905,"page":488},{"topLeft":{"x":408.19,"y":560.75},"width":59.760925,"height":10.0905,"page":488},{"topLeft":{"x":406.99,"y":550.43},"width":59.931885,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":513,"endOffset":547,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75945b33d5f935376bb278e65f8b743a","type":"CBI_author","value":"Zenick H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.625,"y":612.62},"width":25.92102,"height":10.0905,"page":488},{"topLeft":{"x":401.35,"y":602.18},"width":7.497986,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":460,"endOffset":468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["NER"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c94b5347089ddad5f0f1c4e82af649e","type":"CBI_author","value":"George","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.72604,"y":591.86},"width":27.336945,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"Manson J M; ","textAfter":" E L;","comments":null,"startOffset":490,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"609b8b9c5ccca0e43ae93debb562a1af","type":"published_information","value":"CHEMOSPHERE","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":403.39,"y":716.78},"width":67.07794,"height":10.0905,"page":488}],"sectionNumber":5115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":416,"endOffset":427,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf5af3922d13a4a5e28e2eafbfabfbd1","type":"CBI_author","value":"Zetterqvist M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.67,"y":310.89},"width":50.25711,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":null,"textAfter":null,"comments":null,"startOffset":258,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9cc21021a2db6f71abd6ebc872df2f7","type":"CBI_author","value":"Arrhenius","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.43,"y":341.97},"width":36.99997,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":null,"textAfter":" E; Renberg","comments":null,"startOffset":221,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"969ab93c3cc423b2aeac0ca89e1168aa","type":"CBI_author","value":"Manson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":444.622,"y":602.18},"width":29.962006,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"H; Hope E; ","textAfter":" J M;","comments":null,"startOffset":478,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb0996039c65b8950e354b0f989faf6f","type":"PII","value":"35-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.13,"y":279.93},"width":22.027008,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":"INTERACTIONS, (1977), 18: ","textAfter":".","comments":null,"startOffset":311,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787189Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4624540315665624ee0ae34eb8373cc8","type":"PII","value":"521-525","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.59705,"y":706.58},"width":30.993958,"height":10.0905,"page":488}],"sectionNumber":5115,"textBefore":"CHEMOSPHERE, (2012), 89: ","textAfter":".","comments":null,"startOffset":441,"endOffset":448,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ebf7627beda9d9d306dea4b7d76eafa5","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":488}],"sectionNumber":5114,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9c5a350af41e57fa00018ea5c200845","type":"PII","value":"307-330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.71997,"y":394.53},"width":30.991028,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":"(1985), chapter 25: ","textAfter":".","comments":null,"startOffset":577,"endOffset":584,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cd6f3bbb6c6fc082391dbb96aa76249a","type":"PII","value":"12-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.35399,"y":375.69},"width":22.156006,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":"treatment for another ","textAfter":" weeks for","comments":null,"startOffset":297,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e241733eb8b769d0f8a78474b50a5947","type":"CBI_author","value":"Renberg L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.19,"y":331.53},"width":39.240967,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":null,"textAfter":null,"comments":null,"startOffset":234,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"566792dec0a4f0e146bc80cfa25dbe61","type":"CBI_author","value":"Huff J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.99,"y":727.22},"width":23.680023,"height":10.0905,"page":488}],"sectionNumber":5115,"textBefore":null,"textAfter":"; CHEMOSPHERE, (2012),","comments":null,"startOffset":408,"endOffset":414,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["609b8b9c5ccca0e43ae93debb562a1af"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90c82d4d4d4d2fc4ff097eb57769dd99","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.23697,"y":466.91},"width":23.904999,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":"Exon J.H; ","textAfter":" L.D; WATER","comments":null,"startOffset":477,"endOffset":483,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"092b39eeed08a3a5af35d1bb69e6eea9","type":"CBI_author","value":"Blackburn K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.55,"y":612.62},"width":47.304993,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":"; Zenick H;","comments":null,"startOffset":447,"endOffset":458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b757b0fe664ac406ce3fb88a2f1cada1","type":"CBI_author","value":"Hope E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":412.618,"y":602.18},"width":28.314972,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":470,"endOffset":476,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["NER"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad2c3f2eb091cc5950384a3578d6d6e5","type":"CBI_author","value":"Johansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.95,"y":321.21002},"width":37.98999,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":"E; Renberg L; ","textAfter":" L; Zetterqvist","comments":null,"startOffset":245,"endOffset":254,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"251f589d1d852e8e4867400b0280d9e8","type":"PII","value":"233-239","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.305,"y":540.11},"width":31.126007,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"TOXICOLOGY, (1986), 6: ","textAfter":".","comments":null,"startOffset":560,"endOffset":567,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ff8dca1a4e4db31c255e2a1e44ecca8","type":"CBI_author","value":"Smith","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":415.99,"y":581.39},"width":22.40207,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"George E L; ","textAfter":" M K;","comments":null,"startOffset":502,"endOffset":507,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b45b1b07bf07361d2ce53f10818ea73","type":"CBI_author","value":"Greim","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.64902,"y":467.63},"width":24.067017,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":"R; Schwarz L.R; ","textAfter":" H; ARCH.","comments":null,"startOffset":649,"endOffset":654,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a2b65384cf6289119ec63b78d369d3f","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":489}],"sectionNumber":5120,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6a675732d6a91b299552ce571e69684e","type":"PII","value":"147-155","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":446.99},"width":31.020996,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":"TOXICOL., (1980), 44: ","textAfter":".","comments":null,"startOffset":686,"endOffset":693,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787191Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"812e1530e41d7a9915847790705eaedf","type":"CBI_author","value":"Kitchin K.T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.11,"y":286.16998},"width":44.623016,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":null,"textAfter":"; Brown J.L;","comments":null,"startOffset":255,"endOffset":266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ccbb16231bd3d53356d299996b905ed","type":"CBI_author","value":"Gotz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.87,"y":478.07},"width":18.414978,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":null,"textAfter":" R; Schwarz","comments":null,"startOffset":628,"endOffset":632,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea56fe6270c7ea684b52640e7178246c","type":"CBI_author","value":"Conran P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.914,"y":139.85999},"width":34.668976,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"Stoner G; ","textAfter":"; Greisiger E;","comments":null,"startOffset":352,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6dcb9f618632ffde1c26c9369153ee76","type":"CBI_author","value":"TOXICOLOGICAL PATHOLOGY","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":202.62},"width":74.40387,"height":10.0905,"page":489},{"topLeft":{"x":409.03,"y":192.18},"width":55.82788,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":null,"textAfter":null,"comments":null,"startOffset":419,"endOffset":442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ea0f75d15bfeb3740c33fef07c7cd2b","type":"CBI_author","value":"Stober J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.62805,"y":129.41998},"width":30.394012,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"P; Greisiger E; ","textAfter":"; Morgan M;","comments":null,"startOffset":375,"endOffset":383,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbf616efb2ad334d2a91e10434afc2bc","type":"CBI_author","value":"Heil","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.27,"y":342.69},"width":16.44403,"height":10.0905,"page":489}],"sectionNumber":5123,"textBefore":null,"textAfter":" J; Reifferscheid","comments":null,"startOffset":153,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b733e71e249345fb92b5a753910038d","type":"PII","value":"19-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.924,"y":77.67999},"width":22.03299,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"PHARMACOL., (1986). 82:","textAfter":".","comments":null,"startOffset":444,"endOffset":449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787191Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e49c236d96445095d97ab64b2dff175b","type":"CBI_author","value":"Britt A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.43,"y":212.94},"width":26.317047,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"M; Herren S; ","textAfter":"; Khoury M;","comments":null,"startOffset":400,"endOffset":407,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24d8e4dc3b6fd12670bc8cdd3f225610","type":"PII","value":"31-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.13,"y":265.52997},"width":22.027008,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":"TOXICOLOGY, (1994), 88: ","textAfter":".","comments":null,"startOffset":303,"endOffset":308,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787192Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"312ea27ee93b788f7551b21e00c2ee39","type":"CBI_author","value":"CARCINOGENESIS ,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.83,"y":321.93},"width":78.45386,"height":10.0905,"page":489},{"topLeft":{"x":403.63,"y":311.61},"width":3.25,"height":10.0905,"page":489}],"sectionNumber":5123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":178,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff3f01efa41e9699f595b25119e60653","type":"CBI_author","value":"Stoner G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":139.85999},"width":33.39099,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":null,"textAfter":"; Conran P;","comments":null,"startOffset":342,"endOffset":350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27258ebfe65f8c542625cdaa1a31ce3b","type":"PII","value":"145-151","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":706.58},"width":31.020996,"height":10.0905,"page":489}],"sectionNumber":5121,"textBefore":"TOXICOLOGY, (1978), 11: ","textAfter":".","comments":null,"startOffset":861,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787192Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09ada6b27981ee7a7b32be6cdcde79a2","type":"CBI_author","value":"Periera M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.54504,"y":118.97998},"width":26.479034,"height":10.0905,"page":489},{"topLeft":{"x":410.35,"y":108.65997},"width":9.001007,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"J; Morgan M; ","textAfter":"; TOXICOL. APPL.","comments":null,"startOffset":395,"endOffset":404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4704a49b2c107f1d99a1539a22282e5","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.91,"y":223.38},"width":36.811035,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":null,"textAfter":"; Herren S;","comments":null,"startOffset":379,"endOffset":388,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90b16416095925c217aeabdbb81a3676","type":"CBI_author","value":"Brown J.L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.43103,"y":286.16998},"width":25.416962,"height":10.0905,"page":489},{"topLeft":{"x":398.95,"y":275.85004},"width":12.25,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":"Kitchin K.T; ","textAfter":"; TOXICOLOGY, (1994),","comments":null,"startOffset":268,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fda77b502334209390a615bb21bf0ac1","type":"CBI_author","value":"Khoury M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.40005,"y":212.94},"width":38.727997,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"S; Britt A; ","textAfter":"; TOXICOLOGICAL PATHOLOGY,","comments":null,"startOffset":409,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8ae6015d96fe8d1c8d634c151f147bd0","type":"CBI_author","value":"Carlson G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.91,"y":727.22},"width":37.836975,"height":10.0905,"page":489}],"sectionNumber":5121,"textBefore":null,"textAfter":"; TOXICOLOGY, (1978),","comments":null,"startOffset":826,"endOffset":835,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8af7fade0edb080c2c7518dc04161355","type":"CBI_author","value":"Schwarz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.326,"y":478.07},"width":31.860962,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":"Gotz R; ","textAfter":" L.R; Greim","comments":null,"startOffset":636,"endOffset":643,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d60e1b31cc3442fa4e57d01a38666f63","type":"CBI_author","value":"Herren S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.43707,"y":223.38},"width":33.229004,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"Pereira M; ","textAfter":"; Britt A;","comments":null,"startOffset":390,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"264673c11c5a9c7b5116eae7e2494bdc","type":"CBI_author","value":"Greisiger E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.71,"y":129.41998},"width":42.121033,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"G; Conran P; ","textAfter":"; Stober J;","comments":null,"startOffset":362,"endOffset":373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28e5707ce587bfdbaea439cac53a5011","type":"CBI_author","value":"TOXICOLOGY,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.89804,"y":275.85004},"width":62.172882,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":null,"textAfter":null,"comments":null,"startOffset":279,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ce4fbcbd9a4447237b0d32cbf575093","type":"CBI_author","value":"Morgan M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.03,"y":118.97998},"width":39.808014,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"E; Stober J; ","textAfter":"; Periera M;","comments":null,"startOffset":385,"endOffset":393,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf1a39f18f6076c093b73195c10ed595","type":"CBI_author","value":"Reifferscheid G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.26205,"y":342.69},"width":49.41101,"height":10.0905,"page":489},{"topLeft":{"x":433.15,"y":332.25},"width":7.497986,"height":10.0905,"page":489}],"sectionNumber":5123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":161,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"08285532153a01f6330b8f852545457f","type":"CBI_author","value":"TOXICOLOGY,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.99,"y":716.78},"width":62.145874,"height":10.0905,"page":489}],"sectionNumber":5121,"textBefore":null,"textAfter":null,"comments":null,"startOffset":837,"endOffset":848,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3dad225521ad30543c3c037fda605b28","type":"PII","value":"11-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.15802,"y":181.97998},"width":22.039001,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"PATHOLOGY, (1982), 10(2), ","textAfter":".","comments":null,"startOffset":459,"endOffset":464,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787194Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dedea144785f168d6ab472cf6e892214","type":"CBI_author","value":"Ahler S J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.76306,"y":618.26},"width":28.665985,"height":10.0905,"page":490},{"topLeft":{"x":402.91,"y":607.82},"width":4.501007,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":null,"textAfter":null,"comments":null,"startOffset":268,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82237812ddfeced15266748bcc5af29b","type":"CBI_author","value":"Butt","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.63,"y":701.78},"width":16.552032,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":null,"textAfter":" C.M.; Wang","comments":null,"startOffset":282,"endOffset":286,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04284aed92deebb8bfcbf86bcbd6e815","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":155.18,"y":230.10004},"width":19.044998,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":" cells treated","comments":null,"startOffset":59,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e7a460cd3ba44d9b0f41020d4e00dc9","type":"CBI_author","value":"TOXICOLOGY,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.16302,"y":607.82},"width":62.073883,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":null,"textAfter":null,"comments":null,"startOffset":279,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"589b2f4f4846d7cc346f695ca097bf4c","type":"CBI_author","value":"Cascorbi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":618.26},"width":33.013,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":null,"textAfter":" I; Ahler","comments":null,"startOffset":256,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b71054c0752b9d40128f7d1443c4538c","type":"CBI_author","value":"Henschler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.83,"y":447.11},"width":37.486023,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":null,"textAfter":" R; Appel","comments":null,"startOffset":679,"endOffset":688,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f65a9765f88da433b97debf99b1c50e1","type":"CBI_author","value":"Judis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":144.65997},"width":19.585022,"height":10.0905,"page":490}],"sectionNumber":5136,"textBefore":null,"textAfter":" J; JOURNAL","comments":null,"startOffset":285,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95bfe62c8aa663082befe463c6c411e4","type":"PII","value":"302-305","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.39,"y":166.14001},"width":31.080994,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"ENVIRON. HEALTH, 270(4): ","textAfter":".","comments":null,"startOffset":542,"endOffset":549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787194Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"238e039c0f539aa12e5c00b3a2df2500","type":"CBI_author","value":"Wang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.7241,"y":701.78},"width":22.41098,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"Butt C.M.; ","textAfter":" D; Stapleton,","comments":null,"startOffset":293,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56211681b35a6a16d9fc4631b592eab5","type":"PII","value":"197-210","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.484,"y":597.5},"width":31.026978,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":"TOXICOLOGY, (1989), 58:","textAfter":".","comments":null,"startOffset":302,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787195Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce9993d92220c3eacd352e45ea3470ad","type":"CBI_author","value":"Shi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.71,"y":217.73999},"width":13.087006,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"R-W; Liao T-T; ","textAfter":" Y-L; Wang","comments":null,"startOffset":468,"endOffset":471,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9eff4f63bb55b23bc48cc0836b09d28d","type":"CBI_author","value":"Wang L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.778,"y":217.73999},"width":30.11499,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"T-T; Shi Y-L; ","textAfter":"; Xia J;","comments":null,"startOffset":477,"endOffset":483,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e36617a152e04c93291dca14b12d3fc9","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":490}],"sectionNumber":5128,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"527eacae0af8428ecf2909fc9dd30ff0","type":"CBI_author","value":"Heyworth C.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.24002,"y":436.67},"width":36.793,"height":10.0905,"page":490},{"topLeft":{"x":412.39,"y":426.35},"width":17.272003,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":null,"textAfter":null,"comments":null,"startOffset":704,"endOffset":716,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a4777fef68448fb7d1fb246d1284d3eb","type":"CBI_author","value":"Glatt","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":433.47705,"y":426.35},"width":18.86502,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":"E; Heyworth C.M; ","textAfter":" H; TOXICOLOGY","comments":null,"startOffset":718,"endOffset":723,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69dafd40939bd85a7863af468ccc3a91","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.79,"y":280.76996},"width":29.007996,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c25ed06e1dbe6bb7cc765cd2baf8e66","type":"CBI_author","value":"Selling J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":439.84305,"y":551.27},"width":32.302063,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":320,"endOffset":329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["NER"],"reference":["242d77004e49a6946765f7ee1d65d7b9"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0af497ef024b48e2171f6c6bf9824fa7","type":"CBI_author","value":"Jia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.79,"y":228.18},"width":10.999023,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":" R-W; Liao","comments":null,"startOffset":449,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"242d77004e49a6946765f7ee1d65d7b9","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":447.01602,"y":540.95},"width":24.894958,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":343,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc8904500f382ba6dff15eac7f39e861","type":"CBI_author","value":"Appel K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.35703,"y":447.11},"width":22.932953,"height":10.0905,"page":490},{"topLeft":{"x":408.91,"y":436.67},"width":9.747986,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":"Henschler R; ","textAfter":" E; Heyworth","comments":null,"startOffset":692,"endOffset":700,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e760660ca0e852485c9655aead097678","type":"PII","value":"178-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.844,"y":530.63},"width":26.596008,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":"ATLA (1987), 14:","textAfter":null,"comments":null,"startOffset":359,"endOffset":365,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787196Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77e99e25f69cbf68857e7fc000539a51","type":"CBI_author","value":"Liao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.21503,"y":228.18},"width":17.39801,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"Jia R-W; ","textAfter":" T-T; Shi","comments":null,"startOffset":458,"endOffset":462,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98239bec65cf0d533764c13f807f6287","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.388,"y":280.76996},"width":28.891022,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":"Jansson K; ","textAfter":" V; TOXICOL","comments":null,"startOffset":178,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"766dffa9dc9ef0bb2eecca16322c0d7f","type":"CBI_author","value":"Johnels, D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":404.23,"y":540.95},"width":39.132996,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":331,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["NER"],"reference":["242d77004e49a6946765f7ee1d65d7b9"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7c5670c4a5e0fe75dea8a9ef74f4a92a","type":"PII","value":"289-294","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":260.13},"width":31.020996,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":"LETT; (1993), 69: ","textAfter":".","comments":null,"startOffset":215,"endOffset":222,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787196Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b07d3892deb182de886aec4ea2e2aeb6","type":"PII","value":"31-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.701,"y":395.37},"width":22.098999,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":"VITRO, (2001), 15:","textAfter":".","comments":null,"startOffset":759,"endOffset":764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787196Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b090f553421142ce8d6061eeca5ee98","type":"PII","value":"339-347","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.517,"y":660.38},"width":30.993988,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"SCIENCE, (2011), 124:","textAfter":".","comments":null,"startOffset":352,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787197Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d358118208a93fffb5e26355ddba523","type":"CBI_author","value":"Ekwall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.35,"y":551.27},"width":26.407013,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":" B; Selling","comments":null,"startOffset":310,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["242d77004e49a6946765f7ee1d65d7b9"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b6c8dc0ff2d66d4bcf8d896aae958d5","type":"CBI_author","value":"TOXICOLOGICAL SCIENCE","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":681.02},"width":74.40387,"height":10.0905,"page":490},{"topLeft":{"x":403.39,"y":670.58},"width":38.52997,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":null,"textAfter":null,"comments":null,"startOffset":317,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ccaeeb9c36fc7ac035ac971e42fe0f6c","type":"CBI_author","value":"Stapleton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.67,"y":691.34},"width":35.002075,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"C.M.; Wang D; ","textAfter":", H M;","comments":null,"startOffset":301,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5398dfa4e16655f3db97b85d371ab468","type":"CBI_author","value":"C.M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.47705,"y":701.78},"width":19.44101,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"Butt ","textAfter":"; Wang D;","comments":null,"startOffset":287,"endOffset":291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f50ef10d68abe083a594b33de09cf77b","type":"CBI_author","value":"TOXICOL LETT","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.206,"y":270.33002},"width":64.54892,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":null,"textAfter":null,"comments":null,"startOffset":189,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b86888d8435e596cf9f7e6f2ec4a6f28","type":"CBI_author","value":"Lu B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.80603,"y":207.41998},"width":19.224976,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":492,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bbb00bdf8c5a3f615625da41051deb7b","type":"CBI_author","value":"Xia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.19,"y":207.41998},"width":14.085999,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"Y-L; Wang L; ","textAfter":" J; Lu","comments":null,"startOffset":485,"endOffset":488,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"48f8831c3a17c74180e11b6a1ed58b9c","type":"PII","value":"(10-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":173.99901,"y":532.55},"width":29.541992,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":"and high dose ","textAfter":" mM) of","comments":null,"startOffset":69,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787197Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33157f792f7f6cf31725b98f42dde8f0","type":"CBI_author","value":"Fukui.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.63,"y":629.18},"width":32.36502,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"J-I; Ishiwata M; ","textAfter":"; Utsumi H;","comments":null,"startOffset":329,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a3f64b71f14c19e5fef8b5d7476504f","type":"CBI_author","value":"Kakoda M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.55408,"y":334.77},"width":28.980988,"height":10.0905,"page":491},{"topLeft":{"x":407.11,"y":324.45},"width":9.001007,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":289,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"309cc76f02883c26f1a53b55582b67fa","type":"CBI_author","value":"Bevan D.R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.64703,"y":401.61},"width":23.859985,"height":10.0905,"page":491},{"topLeft":{"x":428.95,"y":391.29},"width":15.750977,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"G.D; Dietrich A.M; ","textAfter":"; ENVIRONEMTAL TOXICOLOGY","comments":null,"startOffset":296,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f3c07a897587f824ae7c22133841fe0","type":"CBI_author","value":"Herwijnen M.H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.57303,"y":216.18},"width":38.988983,"height":10.0905,"page":491},{"topLeft":{"x":402.91,"y":205.73999},"width":17.794006,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":409,"endOffset":422,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6914f9de92fe8e78e21d24a42fbc6c89","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.42502,"y":716.78},"width":13.897003,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"C; Lam P.K.S; ","textAfter":" R.S.S; Giesy","comments":null,"startOffset":276,"endOffset":278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d09e011a2a4e94f04c4f588e88b57f3c","type":"CBI_author","value":"Dietrich A.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.43,"y":401.61},"width":49.402008,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"R.D; Boardman G.D; ","textAfter":"; Bevan D.R;","comments":null,"startOffset":282,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0dc372c64909f6e37712ced726399739","type":"CBI_author","value":"Manabe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.51,"y":314.01},"width":30.051971,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"M; Kiyoshige K; ","textAfter":" H; Mitade","comments":null,"startOffset":312,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4baa8728986f131342a40bb3340c66fa","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.54807,"y":505.79},"width":27.370056,"height":10.0905,"page":491},{"topLeft":{"x":407.35,"y":495.47},"width":7.497986,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"H; Umetani K; ","textAfter":"; Nakamuro K;","comments":null,"startOffset":333,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52225404aed9ae1febf51ffa1e4643d6","type":"CBI_author","value":"Boardman G.D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.91,"y":411.93},"width":55.809967,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"Shannon R.D; ","textAfter":"; Dietrich A.M;","comments":null,"startOffset":268,"endOffset":280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59f6f8c9947580c2b83e2e7285aa109a","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.70206,"y":629.18},"width":36.154053,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"Ishiwata M; Fukui.M; ","textAfter":"; Hamada A;","comments":null,"startOffset":338,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53483882ad02d18b69dcb9078a465201","type":"CBI_author","value":"Ishiwata M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.99,"y":639.62},"width":41.626038,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"Murayama J-I; ","textAfter":"; Fukui.M; Utsumi","comments":null,"startOffset":317,"endOffset":327,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a211396b7c6c5743ecdf452112ee2cf3","type":"CBI_author","value":"Murayama J-I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.95,"y":649.94},"width":51.666992,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":null,"textAfter":"; Ishiwata M;","comments":null,"startOffset":303,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf1adab9f66ca3227b86fe44af5ee732","type":"PII","value":"267-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.33798,"y":598.34},"width":31.093018,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"KAGAKU; (1990), 36: ","textAfter":".","comments":null,"startOffset":384,"endOffset":391,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787198Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d25515aa4a1ff1f985fc7316f914790","type":"CBI_author","value":"ANALYTICAL BIOCHEMISTRY","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.67,"y":551.99},"width":58.92389,"height":10.0905,"page":491},{"topLeft":{"x":402.55,"y":541.67},"width":68.44592,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":null,"textAfter":null,"comments":null,"startOffset":254,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5dcc8fabf0dcc7caedc3a8d9c440a0f7","type":"PII","value":"57-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.26202,"y":350.01},"width":22.014984,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"CHEMISTRY; (1991); 10: ","textAfter":".","comments":null,"startOffset":358,"endOffset":363,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787198Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e1b837c7503c39483aa5e18022bad798","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.153,"y":303.69},"width":15.96698,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"C; Murayama J; ","textAfter":" S.K; Hamada","comments":null,"startOffset":344,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f70a9d8c0d79c3beb503163bb227c78f","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.277,"y":293.37},"width":39.645996,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"J; Han S.K; ","textAfter":"; WATER SCIENCE","comments":null,"startOffset":353,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"915459d564e9ba2a26c6ceb056084cba","type":"CBI_author","value":"Strong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":275.93,"y":651.86},"width":25.156006,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":null,"textAfter":" morphological changes","comments":null,"startOffset":157,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5611aa9628560bb9d07592c20b95163f","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.63,"y":334.77},"width":36.154053,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":"; Kakoda M;","comments":null,"startOffset":279,"endOffset":287,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"154c485d6c0d4e4040175a32cb74125a","type":"CBI_author","value":"Ma Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.87,"y":727.22},"width":21.753998,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":null,"textAfter":null,"comments":null,"startOffset":252,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cc9f8d29ae0dab7646fc089f56fdd56a","type":"CBI_author","value":"Zhang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.075,"y":583.07},"width":23.994965,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"H; Liu J; ","textAfter":" Z; Li","comments":null,"startOffset":210,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1697a4f71a04263f1358d9519fd9c4bb","type":"CBI_author","value":"Ueno H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.09903,"y":516.23},"width":29.313965,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"Sakazaki H; ","textAfter":"; Umetani K;","comments":null,"startOffset":314,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8040a697dc99136ffa8f31371de27eb5","type":"CBI_author","value":"Liu J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.08,"y":583.07},"width":19.243011,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"Qin H; ","textAfter":"; Zhang Z;","comments":null,"startOffset":203,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04e814686030f3c5cdaa650821945781","type":"CBI_author","value":"Qin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.99,"y":583.07},"width":14.5,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":null,"textAfter":" H; Liu","comments":null,"startOffset":196,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cf00af916a3ff40571ee5fa039bffb0","type":"CBI_author","value":"EISEI KAGAKU","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.23697,"y":618.86},"width":23.049988,"height":10.0905,"page":491},{"topLeft":{"x":402.55,"y":608.54},"width":39.915894,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"H; Hamada A; ","textAfter":"; (1990), 36:","comments":null,"startOffset":358,"endOffset":370,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f450a39f780c4edf656995d967bd5b8","type":"CBI_author","value":"Murayama","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.70102,"y":303.69},"width":39.880005,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"H; Mitade C; ","textAfter":" J; Han","comments":null,"startOffset":332,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f42ee48c193e16f8081f8e6026cd2db2","type":"CBI_author","value":"Yuan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.538,"y":562.31},"width":20.493988,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"G; Yang Y; ","textAfter":" X; Wu","comments":null,"startOffset":240,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"326c30b611599489b0121b2c9ef8c5c1","type":"CBI_author","value":"van","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.145,"y":226.5},"width":13.897003,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":"van Agen E; ","textAfter":" Breda S.G.J;","comments":null,"startOffset":392,"endOffset":395,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef5c6ad5db3d7fbf9f569bd0886ee34f","type":"CBI_author","value":"van den Berg K.L","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":404.11,"y":142.97998},"width":65.47595,"height":10.0905,"page":491}],"sectionNumber":5146,"textBefore":null,"textAfter":null,"comments":null,"startOffset":248,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c1920d91f2fded43b70460210969c1c5","type":"CBI_author","value":"Sakazaki H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.19,"y":516.23},"width":42.139008,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":null,"textAfter":"; Ueno H;","comments":null,"startOffset":302,"endOffset":312,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8daf87e92cb54b05e472ddc7dc46eb6","type":"CBI_author","value":"van Agen E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":462.61905,"y":236.94},"width":13.897003,"height":10.0905,"page":491},{"topLeft":{"x":403.15,"y":226.5},"width":28.197968,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":380,"endOffset":390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58edbc207e54d7dc53200aa282870d60","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.35,"y":696.02},"width":32.787964,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"J.P; Hecker M; ","textAfter":"; Zhou B;","comments":null,"startOffset":307,"endOffset":314,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aaa2123af5310d913ffe4fc06fbe4139","type":"CBI_author","value":"Staal Y.C.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.47403,"y":205.73999},"width":46.180054,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":424,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a942e50ff95e0b12ef156e118d0dae64","type":"CBI_author","value":"Kiyoshige K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.92603,"y":324.45},"width":46.58499,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":299,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b577628c1962be72a482998500d1a880","type":"CBI_author","value":"Giesy J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.83,"y":706.46},"width":27.640015,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"P.K.S; Wu R.S.S; ","textAfter":".P; Hecker M;","comments":null,"startOffset":286,"endOffset":293,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2b9ed11d5738d19f225aaca109e16d2","type":"CBI_author","value":"CHEMICOBIOLOGICAL INTERACTIONS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":415.27,"y":132.53998},"width":45.547028,"height":10.0905,"page":491},{"topLeft":{"x":410.11,"y":122.22003},"width":55.935913,"height":10.0905,"page":491},{"topLeft":{"x":403.63,"y":111.900024},"width":66.339905,"height":10.0905,"page":491}],"sectionNumber":5146,"textBefore":null,"textAfter":null,"comments":null,"startOffset":266,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb6e6621703f0d5c2c998326739198f0","type":"CBI_author","value":"Breda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.36398,"y":226.5},"width":22.50998,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":"Agen E; van ","textAfter":" S.G.J; Herwijnen","comments":null,"startOffset":396,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6335d3e36421a8efcdae54b204ae93c6","type":"CBI_author","value":"Zhou","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.908,"y":696.02},"width":19.890991,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"M; Zhang X; ","textAfter":" B; TOXICOLOGY,","comments":null,"startOffset":316,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36f62db2ad38c8bede999eb5580707b9","type":"CBI_author","value":"Mitade C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.06198,"y":314.01},"width":26.46106,"height":10.0905,"page":491},{"topLeft":{"x":399.91,"y":303.69},"width":7.0029907,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":322,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0034a263852cdc8343981c839c5e6c11","type":"CBI_author","value":"Shannon R.D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.03,"y":422.39},"width":49.563965,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":null,"textAfter":"; Boardman G.D;","comments":null,"startOffset":255,"endOffset":266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae730512ecb1f3c690727328b696a04d","type":"CBI_author","value":"Liu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.394,"y":727.22},"width":13.402008,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"Ma Y; ","textAfter":" C; Lam","comments":null,"startOffset":258,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e7476ccc1dcb3f21047e92077c94558","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.83,"y":618.86},"width":39.753967,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"Fukui.M; Utsumi H; ","textAfter":"; EISEI KAGAKU;","comments":null,"startOffset":348,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b2d116474cb0dbf23fe56a595be3ac9","type":"PII","value":"258-271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.33798,"y":454.19},"width":31.093018,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"SCIENCE; (2001); 47: ","textAfter":".","comments":null,"startOffset":394,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787201Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9af25301728a1e9b712b6cc60794d054","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":491}],"sectionNumber":5138,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b91fbe32c8cc5e5d77a70cde2a13918","type":"CBI_author","value":"Lam","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.92703,"y":727.22},"width":17.362,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"Y; Liu C; ","textAfter":" P.K.S; Wu","comments":null,"startOffset":265,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a020e0ae05da2781145a12d3848a92b","type":"PII","value":"63-75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.26202,"y":101.70001},"width":22.014984,"height":10.0905,"page":491}],"sectionNumber":5146,"textBefore":"INTERACTIONS; (1990); 76: ","textAfter":".","comments":null,"startOffset":310,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787202Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c21c7d4d6686b1b940c733a08aa528c","type":"CBI_author","value":"Nakamuro K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.618,"y":495.47},"width":47.67099,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"K; Utsumi H; ","textAfter":"; JOURNAL OF","comments":null,"startOffset":343,"endOffset":353,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3a358cb6b3383ccb59db996c4487937","type":"PII","value":"325-332","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.70203,"y":252.09003},"width":31.008972,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"TECHNOLOGY; (1992); 25: ","textAfter":".","comments":null,"startOffset":405,"endOffset":412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787202Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"24f2f238e88253c21eac4c9215cb313b","type":"CBI_author","value":"Umetani K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.07,"y":505.79},"width":40.70804,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"H; Ueno H; ","textAfter":"; Utsumi H;","comments":null,"startOffset":322,"endOffset":331,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53ce65cf74d4b617b18f5ebb66f59e10","type":"CBI_author","value":"Yang Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.25003,"y":572.75},"width":20.60196,"height":10.0905,"page":491},{"topLeft":{"x":403.27,"y":562.31},"width":7.497986,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"J; Gao G; ","textAfter":"; Yuan X;","comments":null,"startOffset":232,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40ff317add5e2fdf6b79e8375a6f8492","type":"CBI_author","value":"Gao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.92706,"y":572.75},"width":15.849976,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"Z; Li J; ","textAfter":" G; Yang","comments":null,"startOffset":225,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1179d517cf852a8552c64cb3b6886523","type":"CBI_author","value":"van Delft J.H.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.43,"y":236.94},"width":59.347046,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":363,"endOffset":378,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3aae5f448942b99d27a46194b6810c7","type":"CBI_author","value":"Hecker M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.66504,"y":706.46},"width":37.07202,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"R.S.S; Giesy J.P; ","textAfter":"; Zhang X;","comments":null,"startOffset":297,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aa9b1bc4c3a14b5d53fcdf06542f58b8","type":"PII","value":"60-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.296,"y":531.47},"width":22.138,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"BIOCHEMISTRY; (2014), 462: ","textAfter":".","comments":null,"startOffset":292,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787202Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f16b199a62fb90d1bdff39a5329f987b","type":"CBI_author","value":"Kleinjans J.C.S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.43,"y":195.41998},"width":56.863037,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":437,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e25f96897fc328989253b5fa87e1bed8","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.62198,"y":562.31},"width":13.897003,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"Y; Yuan X; ","textAfter":" D; ANALYTICAL","comments":null,"startOffset":248,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e6884281e6681700dd92f5fdcb69453","type":"CBI_author","value":"Huang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.76703,"y":643.58},"width":25.047974,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"Z; Qi Y; ","textAfter":" D; Zhang","comments":null,"startOffset":362,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21dbb1ad87e5d2c1117627ab0254acd0","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":492}],"sectionNumber":5148,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4a1743190f079e8d1244e6c8d170ba3","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":119.480995,"y":696.02},"width":19.04499,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"flow cytometry on ","textAfter":" cells","comments":null,"startOffset":66,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7c5b11dd39d1fdf2f50a6c408a46cd8","type":"CBI_author","value":"Zhang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.058,"y":633.26},"width":24.08496,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"Y; Huang D; ","textAfter":" Y; INTERNATIONAL","comments":null,"startOffset":371,"endOffset":376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94850b841a2a69615ed3d54e96d07986","type":"PII","value":"769-816","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.85,"y":356.85},"width":31.110992,"height":10.0905,"page":492}],"sectionNumber":5156,"textBefore":"(1999) 71 (2) ","textAfter":null,"comments":null,"startOffset":125,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11896c2be05640f75e7650fa879e6d29","type":"PII","value":"(1999) 71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.63,"y":356.85},"width":36.306976,"height":10.0905,"page":492}],"sectionNumber":5156,"textBefore":"chemicals to humans, ","textAfter":" (2) 769-816","comments":null,"startOffset":111,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a69cb8002accd7157b7517059c3c692e","type":"PII","value":"(1989) 93 208","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":469.66013,"y":306.45},"width":51.89499,"height":10.0905,"page":492}],"sectionNumber":5158,"textBefore":"Environmental Health Criteria, ","textAfter":" p","comments":null,"startOffset":97,"endOffset":110,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39ada536879d7e1217fe73ea683f3dbd","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.19,"y":654.02},"width":32.787964,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":null,"textAfter":"; Zhang X;","comments":null,"startOffset":331,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47caa614ef4cbb8c320af140971120db","type":"PII","value":"479-487","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.72107,"y":673.46},"width":31.029938,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"; (2008); 3:","textAfter":".","comments":null,"startOffset":463,"endOffset":470,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c619d4d87204704cc2529e5fabcc2fd3","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":355.63,"y":306.45},"width":80.686066,"height":10.0905,"page":492}],"sectionNumber":5158,"textBefore":null,"textAfter":null,"comments":null,"startOffset":66,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4119fdf37905ddad05339a8ef0e2d71b","type":"CBI_author","value":"Zhou","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.35,"y":716.9},"width":20.007996,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"Y-L; Wang L; ","textAfter":" Q; ASIAN","comments":null,"startOffset":412,"endOffset":416,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d35b6b845b3bf1d22b92cd184ab4789e","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.748,"y":654.02},"width":32.67096,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"Zhang X; ","textAfter":"; Niu Z;","comments":null,"startOffset":340,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8d23184d7dc82aabbceb4049a94b9e9","type":"CBI_author","value":"Niu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.23,"y":643.58},"width":14.5,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"X; Zhang X; ","textAfter":" Z; Qi","comments":null,"startOffset":349,"endOffset":352,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f1f596dcff0697dbc88edb890666604","type":"PII","value":"047 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.203,"y":331.65},"width":25.669037,"height":10.0905,"page":492}],"sectionNumber":5157,"textBefore":"Agency, (1984) EPA/540/1-86/","textAfter":" p","comments":null,"startOffset":129,"endOffset":135,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787204Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"339ed99f955bba8ac317f3434851185d","type":"hint_only","value":"author","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":76.224,"y":473.63},"width":28.872993,"height":10.018499,"page":492}],"sectionNumber":5153,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0586cbce364f01488b026d9d143463a1","type":"published_information","value":"ISSN","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":394.231,"y":428.03},"width":20.449005,"height":10.0905,"page":492}],"sectionNumber":5154,"textBefore":null,"textAfter":null,"comments":null,"startOffset":152,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2115fd6d84f9b8b92d514c3ba7c476a9","type":"CBI_author","value":"Shi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.71,"y":727.22},"width":13.087006,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":null,"textAfter":" Y-L; Wang","comments":null,"startOffset":395,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e627d949bb6c498f22dbc7a81373f7a","type":"PII","value":"28 113","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.72302,"y":392.37},"width":25.659973,"height":10.0905,"page":492}],"sectionNumber":5155,"textBefore":"Service, (1990) ATSDR/TP-90/","textAfter":" p","comments":null,"startOffset":159,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787204Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"194faca4c11841896c8a12dbf32cf392","type":"CBI_author","value":"Wang L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.778,"y":727.22},"width":30.11499,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"Shi Y-L; ","textAfter":"; Zhou Q;","comments":null,"startOffset":404,"endOffset":410,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d74afecd23fd11757d5614d26608c08","type":"PII","value":"48 144 240 480","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.95,"y":260.73004},"width":10.059998,"height":10.0905,"page":493},{"topLeft":{"x":447.1,"y":260.73004},"width":42.940002,"height":10.095,"page":493},{"topLeft":{"x":507.46,"y":260.73004},"width":14.620026,"height":10.095,"page":493}],"sectionNumber":5172,"textBefore":null,"textAfter":null,"comments":null,"startOffset":82,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787204Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07458a37cc2c7f4b975fb7a7ce679e8e","type":"PII","value":"100 300 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.67,"y":315.45},"width":14.619995,"height":10.0905,"page":493},{"topLeft":{"x":447.1,"y":315.45},"width":77.12503,"height":10.095,"page":493}],"sectionNumber":5169,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787205Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57e0b0961ff15b43956540b7f0958066","type":"PII","value":"112 224","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":305.33,"y":260.73004},"width":14.619995,"height":10.095,"page":493},{"topLeft":{"x":337.27,"y":260.73004},"width":14.619995,"height":10.095,"page":493}],"sectionNumber":5172,"textBefore":null,"textAfter":null,"comments":null,"startOffset":70,"endOffset":77,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787205Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"94b03923baa01fe4130a44a3fb0b374c","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.73137,"y":404.73},"width":38.83629,"height":9.65418,"page":493}],"sectionNumber":5183,"textBefore":"the study of ","textAfter":" and Jewkes","comments":null,"startOffset":2875,"endOffset":2884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d81ac212d57f5e675f8601e3065585ad","type":"CBI_author","value":"Jewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.08485,"y":404.73},"width":23.914017,"height":9.65418,"page":493}],"sectionNumber":5183,"textBefore":"of MacDonald and ","textAfter":" (2015) presented","comments":null,"startOffset":2889,"endOffset":2895,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb108cc4d66f35ce8a2a0d4beebd5766","type":"PII","value":"300 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":315.45},"width":14.619995,"height":10.0905,"page":493},{"topLeft":{"x":305.33,"y":315.45},"width":48.704987,"height":10.095,"page":493}],"sectionNumber":5170,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787205Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7937bf6147f6b389b86396989fc64c6e","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.223,"y":690.26},"width":53.05365,"height":11.017679,"page":493}],"sectionNumber":5183,"textBefore":"The study of ","textAfter":" and Jewkes","comments":null,"startOffset":1744,"endOffset":1753,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5657fb60773d532a1cd2dfe8f3bf775c","type":"CBI_author","value":"Jewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.62802,"y":690.26},"width":32.86142,"height":11.017679,"page":493}],"sectionNumber":5183,"textBefore":"of MacDonald and ","textAfter":" (2015) showed","comments":null,"startOffset":1758,"endOffset":1764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fd7bc0e5679e57d43e8fef66183f61a","type":"PII","value":"28 85 142 283","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.95,"y":244.14001},"width":10.059998,"height":10.0905,"page":493},{"topLeft":{"x":449.38,"y":244.14001},"width":40.660004,"height":10.095,"page":493},{"topLeft":{"x":507.46,"y":244.14001},"width":14.620026,"height":10.095,"page":493}],"sectionNumber":5173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787206Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"950e6084d16dcc35a3ed93efdc902695","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":335.7582,"y":288.93},"width":56.009155,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":null,"textAfter":null,"comments":null,"startOffset":328,"endOffset":339,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5289dd30fdd8deceef6bee03ed64f36","type":"CBI_author","value":"Klein W","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.25687,"y":300.45},"width":35.222595,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Kraus A and ","textAfter":" (1981). Excretion","comments":null,"startOffset":247,"endOffset":254,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f611f79a49d05b26c3191d7ee658672e","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.283,"y":186.29999},"width":82.55249,"height":11.017679,"page":494}],"sectionNumber":5183,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6849,"endOffset":6866,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4fc6e55da3f0b48af9005ff62ed5ba0","type":"CBI_author","value":"Bahig M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.1009,"y":300.45},"width":36.118988,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"8042, Neuherberg. Published: ","textAfter":", Kraus A","comments":null,"startOffset":226,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd441af64bf5d5f1c11ce6cd16e020ce","type":"CBI_author","value":"Kraus A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":298.2696,"y":300.45},"width":34.684753,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Published: Bahig M, ","textAfter":" and Klein","comments":null,"startOffset":235,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c60cfb442fcec2b0cb91cf604f363aed","type":"CBI_author","value":"Bahig M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.01263,"y":323.37},"width":38.608963,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Report: K-CA 5.8.1/14 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f6fcd540394ad5d554ec93663731bb69","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.62666,"y":701.54},"width":20.239716,"height":9.65418,"page":494}],"sectionNumber":5183,"textBefore":"* Based on ","textAfter":" et al.","comments":null,"startOffset":4448,"endOffset":4453,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3ac012e43de7bf63a99af306d1409cf","type":"PII","value":"225 114","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-35: Estimated doses of systemic exposure after oral administration of 2,4,6 TCP at\ndoses eliciting leukemia in males rats in the long-term study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":711.38},"width":14.619995,"height":10.0905,"page":494},{"topLeft":{"x":381.43,"y":711.38},"width":14.619995,"height":10.0905,"page":494}],"sectionNumber":5179,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787206Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db3496cdf11f26428ecaceb832933e95","type":"PII","value":"323-327","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.1257,"y":288.93},"width":34.42395,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Rats. Chemosphere 10:","textAfter":". Syngenta File","comments":null,"startOffset":343,"endOffset":350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787207Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86bf47e9c6cd8c1ad787f33467550d15","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":444.6193,"y":288.93},"width":37.931763,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Rats. Chemosphere 10:323-327. ","textAfter":" File No.","comments":null,"startOffset":352,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6ce302019c1a5dbdc3b60b2f4cd9b12","type":"CBI_author","value":"Balikova","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.68526,"y":86.46399},"width":40.567337,"height":11.017679,"page":494}],"sectionNumber":5183,"textBefore":"data reported by ","textAfter":" (1988) (see","comments":null,"startOffset":7415,"endOffset":7423,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd0177d2856ccbda4939174e2a313541","type":"CBI_address","value":"Gesellschaft für Strahlen- und Umweltforschung, Institut für Ökologische Chemie, D – 8042, Neuherberg","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":169.7756,"y":311.85004},"width":350.14438,"height":10.526819,"page":494},{"topLeft":{"x":133.82,"y":300.45},"width":73.10045,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"C In Rats. ","textAfter":". Published: Bahig","comments":null,"startOffset":112,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8799649efd9e27ab2caa3e8f7a87ece","type":"PII","value":"250 127","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-35: Estimated doses of systemic exposure after oral administration of 2,4,6 TCP at\ndoses eliciting leukemia in males rats in the long-term study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":733.1},"width":14.619995,"height":10.0905,"page":494},{"topLeft":{"x":381.43,"y":733.1},"width":14.619995,"height":10.0905,"page":494}],"sectionNumber":5177,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787207Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff2d36c3250313f58af3b64b53c152b7","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":123.206985,"y":361.05},"width":27.981995,"height":10.018499,"page":495}],"sectionNumber":5185,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62d95b1d64be573f08398a02b2bfed79","type":"CBI_author","value":"Berthold","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":364.02765,"y":336.33},"width":39.507477,"height":11.017679,"page":496}],"sectionNumber":5188,"textBefore":"a scanner (","textAfter":"-Frieseke, Karlsruhe). Isolation","comments":null,"startOffset":1219,"endOffset":1227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0b9b8c80d7a1af9069401de72ffb8fb","type":"PII","value":"80-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.45947,"y":108.53998},"width":32.24051,"height":11.017679,"page":496}],"sectionNumber":5188,"textBefore":"m, chromosorb W-AW-DMCS ","textAfter":" mesh 1%","comments":null,"startOffset":2684,"endOffset":2690,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787207Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b291f8226fa1cde0e95684814233cdcc","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.081,"y":728.18},"width":30.528961,"height":10.0905,"page":496}],"sectionNumber":5186,"textBefore":"Wistar, ","textAfter":" Dawley","comments":null,"startOffset":49,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93401a6530fd5ec5b9b16fcdbf020dd8","type":"PII","value":"225-250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":715.34},"width":31.05101,"height":10.0905,"page":496}],"sectionNumber":5186,"textBefore":null,"textAfter":" g","comments":null,"startOffset":86,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787208Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a50d953f1b88e7ca06b180324acf850","type":"published_information","value":"Archives of Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":320.5999,"y":275.25},"width":97.89102,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":null,"textAfter":null,"comments":null,"startOffset":334,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e84c26b99f68388aec1f85d3374855a1","type":"CBI_author","value":"Aitio A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":377.05328,"y":286.76996},"width":33.370056,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"K, Boudène C, ","textAfter":" (1986). Kinetics","comments":null,"startOffset":251,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c139ea20d361473221b22e0073c1d58","type":"CBI_author","value":"Pekari K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.50897,"y":286.76996},"width":38.39981,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"37, Finland. Published: ","textAfter":", Boudène C,","comments":null,"startOffset":230,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21b809422042146440e04be54daa3216","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (~99%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":173.82},"width":82.55249,"height":11.017679,"page":497}],"sectionNumber":5196,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f07d97c957ed472062a184738a0cfb7","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":433.48672,"y":275.25},"width":24.863098,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"of Toxicology 59:","textAfter":". Syngenta File","comments":null,"startOffset":360,"endOffset":365,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787208Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af599ad5d3b52f714d5bb3caa80611b1","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":466.3636,"y":275.25},"width":38.15088,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"of Toxicology 59:41-44. ","textAfter":" File No.","comments":null,"startOffset":367,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f38af46d74e86750e3de4575804d1d6c","type":"CBI_author","value":"Pekari K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.49072,"y":309.81},"width":38.85797,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"Report: K-CA 5.8.1/15 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f35dec4d02b4e909da7b8173c1b77f2","type":"CBI_author","value":"Bahig M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.09946,"y":349.65},"width":39.838715,"height":11.017679,"page":497}],"sectionNumber":5195,"textBefore":"extent isomerized. (","textAfter":" et al.,","comments":null,"startOffset":2008,"endOffset":2015,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a4d3f39328c73f1d05ee79657e8e164","type":"CBI_author","value":"Boudène C","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.09988,"y":286.76996},"width":47.812073,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"Published: Pekari K, ","textAfter":", Aitio A","comments":null,"startOffset":240,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5552a758630da4a2826a4b4059ff4e0d","type":"CBI_address","value":"Sigma Chemical Company","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":190.74384,"y":343.29},"width":123.33423,"height":11.017679,"page":498}],"sectionNumber":5200,"textBefore":"(Deventer, Netherlands) or ","textAfter":" (St. Loius,","comments":null,"startOffset":333,"endOffset":355,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d3dc93142b7933481e4537f5a51638c","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":472.19},"width":28.467995,"height":10.018499,"page":498}],"sectionNumber":5198,"textBefore":null,"textAfter":null,"comments":null,"startOffset":138,"endOffset":145,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bdca927dba2c07160332ede7b8493b3b","type":"CBI_author","value":"Merk","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.74716,"y":356.01},"width":24.86847,"height":11.017679,"page":498}],"sectionNumber":5200,"textBefore":"were purchased from ","textAfter":" (Darmstadt, F.R.G),","comments":null,"startOffset":260,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7016724f92885e1ae17617beb9672a1","type":"CBI_author","value":"Baker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.71063,"y":356.01},"width":27.098572,"height":11.017679,"page":498}],"sectionNumber":5200,"textBefore":"(Darmstadt, F.R.G), J.T. ","textAfter":" Chemicals (Deventer,","comments":null,"startOffset":290,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0846190790d510a936028636ef487d96","type":"CBI_author","value":"Balikova M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.31741,"y":637.82},"width":51.622635,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Report: K-CA 5.8.1/16 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f98e2bf08844cfe82b73f4edf81e6407","type":"CBI_author","value":"Pekari K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.85944,"y":690.26},"width":39.794617,"height":11.017679,"page":500}],"sectionNumber":5204,"textBefore":"1.8 hours). (","textAfter":" et al.,","comments":null,"startOffset":1231,"endOffset":1239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec1567b2c1197d02f13e591f45b687dc","type":"CBI_author","value":"Crkovska J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.9938,"y":603.26},"width":46.955475,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"M, Stipek S, ","textAfter":" (1988). Process","comments":null,"startOffset":307,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e3897183ccc27dbb93d620a7ba2dee8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":490.31},"width":82.55249,"height":11.017679,"page":500}],"sectionNumber":5204,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1448,"endOffset":1465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdd134f42521518e850c7e853729c1fc","type":"CBI_author","value":"Charles","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.8324,"y":614.78},"width":31.48761,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"of General Medicine, ","textAfter":" University, Prague.","comments":null,"startOffset":246,"endOffset":253,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e95b80bab5088b72044cc2559ec47d41","type":"CBI_author","value":"Stipek S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.859,"y":603.26},"width":35.800247,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Published. Balikova M, ","textAfter":", Crkovska J","comments":null,"startOffset":297,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8618e7c58ca2630b8274b9bd9fbca9f7","type":"PII","value":"243-248","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.83263,"y":580.31},"width":34.536972,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Clinica Bohemoslovaca, 17: ","textAfter":". Syngenta File","comments":null,"startOffset":482,"endOffset":489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787209Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b486aad431f2fc7e10c4104a676aed02","type":"CBI_author","value":"Balikova M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.82,"y":603.26},"width":49.664566,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"University, Prague. Published. ","textAfter":", Stipek S,","comments":null,"startOffset":285,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7cfbf5a834b7276df846b7a0371da0a4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":256.32968,"y":580.31},"width":38.05127,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Bohemoslovaca, 17: 243-248. ","textAfter":" File No.","comments":null,"startOffset":491,"endOffset":499,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb7d64c68ac8b377fc2e6779c54d94f2","type":"PII","value":"100 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-37: Rates of elimination in urine of 2,4,6-TCP in free form (% of a single oral dose)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.37,"y":269.37},"width":14.490997,"height":10.0905,"page":502},{"topLeft":{"x":402.91,"y":269.37},"width":9.937012,"height":10.0905,"page":502}],"sectionNumber":5212,"textBefore":null,"textAfter":null,"comments":null,"startOffset":195,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78721Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"046462670f7fae86daed231b2e557181","type":"PII","value":"497-506","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Nephrotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.07877,"y":617.78},"width":34.790863,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"of Toxicology, 9(5): ","textAfter":". Syngenta File","comments":null,"startOffset":441,"endOffset":448,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78721Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4eb901c114b519af6a0a545356455cb","type":"CBI_author","value":"Bercz J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":198.15404,"y":663.74},"width":34.28633,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Report: K-CA 5.8.1/17 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b00ddfd89ed120bb7e4a6d2a183d48bb","type":"CBI_author","value":"Sprague","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":652.22},"width":33.599075,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"of 2,4,6-Trichlorophenol in ","textAfter":"-Dawley Rats. Environmental","comments":null,"startOffset":103,"endOffset":110,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"605065ec60430bde65f139a9d9f1ac26","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99.8%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":516.35},"width":82.55249,"height":11.017679,"page":503}],"sectionNumber":5217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":87,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea4cfe0bfdac19f590567fe3366180a0","type":"published_information","value":"Journal of the American College of Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":191.2693,"y":617.78},"width":194.75212,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":null,"textAfter":null,"comments":null,"startOffset":388,"endOffset":433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7384761a4ba0911bb4056167a1bdc073","type":"CBI_author","value":"Bercz","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":346.148,"y":640.7},"width":24.346252,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Protection Agency. Published: ","textAfter":" JP, Robinson","comments":null,"startOffset":243,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8baded9d897b71246560d7459d7513a","type":"CBI_author","value":"Balikova M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Nephrotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.17944,"y":716.18},"width":53.141907,"height":11.017679,"page":503}],"sectionNumber":5216,"textBefore":"Wistar rats. (","textAfter":" et al,","comments":null,"startOffset":671,"endOffset":681,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7ce3d8e9e74c0aa875c9f716c8bd4aa","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Nephrotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":276.54755,"y":565.55},"width":36.968292,"height":11.017679,"page":503}],"sectionNumber":5216,"textBefore":"toxicity studies in ","textAfter":"-Dawley rats, for","comments":null,"startOffset":738,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9cd0135cb4831e2b30ac15333f47a3a","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.26369,"y":416.37},"width":37.089783,"height":11.017679,"page":503}],"sectionNumber":5218,"textBefore":"Male and female ","textAfter":"-Dawley rats (10/sex/dose)","comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bda47f0fbc754ba46a2674ef61d122a","type":"CBI_author","value":"Parnell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":629.18},"width":29.296371,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"L, Page NP, ","textAfter":" MJ, Wolfe","comments":null,"startOffset":283,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ca8702fd38ad1fb0a6dd63c31c17692","type":"CBI_author","value":"Robinson M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":389.8923,"y":640.7},"width":52.18451,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Published: Bercz JP, ","textAfter":", Jones L,","comments":null,"startOffset":253,"endOffset":263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ca5baa81b71a906a680184a188908cf","type":"CBI_author","value":"Page NP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":486.88287,"y":640.7},"width":37.344055,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":null,"textAfter":null,"comments":null,"startOffset":274,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["NER"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fce7a6048be82b672a90b4a8f748eb4","type":"CBI_author","value":"Jones","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":447.80975,"y":640.7},"width":23.200897,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"JP, Robinson M, ","textAfter":" L, Page","comments":null,"startOffset":265,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3d40813d8b22e0973b5bf4500148ae9","type":"CBI_author","value":"Wolfe GW","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":182.59413,"y":629.18},"width":45.16263,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"NP, Parnell MJ, ","textAfter":" (1990). Subchronic","comments":null,"startOffset":295,"endOffset":303,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7dc8bc1d3ca9e5ce2533b5ef424da05c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":452.53687,"y":617.78},"width":37.931763,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Toxicology, 9(5): 497-506. ","textAfter":" File No.","comments":null,"startOffset":450,"endOffset":458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e430b6dbd2fd4fef07b2e7bb033c4447","type":"CBI_address","value":"Charles River Laboratories, Inc., Raleigh, NC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":208.97,"y":545.99},"width":166.12305,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"700d62e8524472a15d04c348a2421a2d","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.027,"y":506.87},"width":22.48294,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":"Purina Certified ","textAfter":" 5002 (Ralston-Purina","comments":null,"startOffset":210,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c55f6adbc05a4f83653eff992ac4ff79","type":"PII","value":"240 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.73,"y":267.09003},"width":14.619995,"height":10.0905,"page":504},{"topLeft":{"x":350.47,"y":267.09003},"width":10.059998,"height":10.0905,"page":504},{"topLeft":{"x":469.18,"y":267.09003},"width":10.059998,"height":10.0905,"page":504}],"sectionNumber":5226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787211Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ed62360535a2daeb7e6fd9bd155d7c4","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.97,"y":572.03},"width":30.528992,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ed483d84f183401474ed7a1734c7ead","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":689.78},"width":28.467995,"height":10.018499,"page":504}],"sectionNumber":5219,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4273746f1e90747b13114efac6b88adf","type":"PII","value":"720 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.73,"y":252.21002},"width":14.619995,"height":10.0905,"page":504},{"topLeft":{"x":350.47,"y":252.21002},"width":10.059998,"height":10.0905,"page":504},{"topLeft":{"x":469.18,"y":252.21002},"width":10.059998,"height":10.0905,"page":504}],"sectionNumber":5227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787212Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdee4905086669b96779bb990cff2ed3","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":83.94403},"width":49.874084,"height":11.017679,"page":505}],"sectionNumber":5229,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2834,"endOffset":2845,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d0b6f4e544e6891435700a7fff99e98","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":65.424,"y":123.900024},"width":21.916,"height":10.0905,"page":505}],"sectionNumber":5229,"textBefore":"Jejunum Colon Pancreas ","textAfter":" lesions (except","comments":null,"startOffset":2688,"endOffset":2693,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"593ae4133b25342f500adea7f2db782e","type":"PII","value":"80 240 720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-38: Clinical chemistry values in rats administered 2,4,6-TCP by gavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.33,"y":169.38},"width":10.059998,"height":10.0905,"page":506},{"topLeft":{"x":384.91,"y":169.38},"width":14.619995,"height":10.0905,"page":506},{"topLeft":{"x":479.14,"y":169.38},"width":14.619995,"height":10.0905,"page":506}],"sectionNumber":5231,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8be423e79ba5b68b8c009d7e76c6b41f","type":"PII","value":"80 240 720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-40: Organ to total body weight ratios for rats administered 2,4,6-TCP by gavage for 90\ndays","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.33,"y":406.05},"width":10.059998,"height":10.0905,"page":507},{"topLeft":{"x":384.91,"y":406.05},"width":14.619995,"height":10.0905,"page":507},{"topLeft":{"x":479.14,"y":406.05},"width":14.619995,"height":10.0905,"page":507}],"sectionNumber":5251,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8fe96f2853bac8e15b7d13eebe09f266","type":"PII","value":"80 240 720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-39: Absolute organ weights for rats administered 2,4,6-TCP by gavage for 90 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.33,"y":559.67},"width":10.059998,"height":10.0905,"page":507},{"topLeft":{"x":384.91,"y":559.67},"width":14.619995,"height":10.0905,"page":507},{"topLeft":{"x":479.14,"y":559.67},"width":14.619995,"height":10.0905,"page":507}],"sectionNumber":5241,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ba3392d6463a3969b07ea588765e2c9","type":"PII","value":"(2004) 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.3819,"y":110.22003},"width":36.306976,"height":10.0905,"page":508}],"sectionNumber":5274,"textBefore":"AND CHEMICAL TOXICOLOGY, ","textAfter":"(8), 1323-37","comments":null,"startOffset":215,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f92dd6cfd52b826b4e638e43d352c572","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":285.45},"width":21.906998,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e71ac367490dd7f03bcae2d084056e22","type":"PII","value":"1323-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":99.900024},"width":31.059998,"height":10.0905,"page":508}],"sectionNumber":5274,"textBefore":"TOXICOLOGY, (2004) 42(8), ","textAfter":null,"comments":null,"startOffset":229,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787214Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e0b1949f3938a0e1095c4d77c2e8053","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":358.41},"width":21.900002,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"634dbc964179f13842dccc57f47e5b94","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":570.35},"width":35.4971,"height":10.018499,"page":508}],"sectionNumber":5264,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f69594ee383cb9b31a66f541190cd75f","type":"CBI_author","value":"Strobel","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.67,"y":316.52997},"width":27.118011,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":null,"textAfter":" K; Grummt","comments":null,"startOffset":255,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"436373699a801e42edaa14c576bf1d70","type":"CBI_author","value":"Fujita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.07797,"y":141.29999},"width":22.114044,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":"A; Yamaguchi Y; ","textAfter":" T; Kuroda","comments":null,"startOffset":176,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15fb4387bcce1b0045ef9e74ab63ad0b","type":"CBI_author","value":"Oda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.41296,"y":208.14001},"width":16.029999,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":"I; Nunoshiba T; ","textAfter":" Y; MIZU","comments":null,"startOffset":238,"endOffset":241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e78ee08176b62ec329f1cbcd325cb3b8","type":"CBI_author","value":"Grummt T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.22504,"y":316.52997},"width":39.123993,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":null,"textAfter":null,"comments":null,"startOffset":266,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"71aa30262a8000a2280d48280fb40cd1","type":"CBI_author","value":"Kobayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.794,"y":218.58002},"width":39.240967,"height":10.0905,"page":508}],"sectionNumber":5271,"textBefore":"Ono Y; ","textAfter":" U; Somiya","comments":null,"startOffset":171,"endOffset":180,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"603ededfda81a6c7a55237d156a17ad6","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":488.87},"width":21.906998,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46dfe0e563c8bcaf1d665d9c2cb621f0","type":"CBI_author","value":"Endo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.86798,"y":130.97998},"width":20.016968,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":"T; Kuroda K; ","textAfter":" G; FOOD","comments":null,"startOffset":196,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a448996796d1897c2a621ef821c56060","type":"PII","value":"565-71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.0609,"y":358.41},"width":26.653076,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":"TOXICOL. (1977), 18(5), ","textAfter":".","comments":null,"startOffset":236,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787214Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"230778eb93f4777e5b86ebc61729df77","type":"CBI_author","value":"Ono Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.67,"y":218.58002},"width":25.353973,"height":10.0905,"page":508}],"sectionNumber":5271,"textBefore":null,"textAfter":"; Kobayashi U;","comments":null,"startOffset":164,"endOffset":169,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9887507fb8b81491315530d725d486b","type":"CBI_author","value":"Nunoshiba T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.87,"y":208.14001},"width":47.853943,"height":10.0905,"page":508}],"sectionNumber":5271,"textBefore":null,"textAfter":null,"comments":null,"startOffset":194,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"101c58127605eff0127386425a9605a2","type":"CBI_author","value":"Zeiger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.25302,"y":504.35},"width":24.400024,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"K; Speck W; ","textAfter":" E; ENVIRON.","comments":null,"startOffset":204,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce87b705e02164795c690f880b38cbfe","type":"CBI_author","value":"Haworth","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.99,"y":514.67},"width":32.46396,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":null,"textAfter":" S; Lawlor","comments":null,"startOffset":160,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2e141dc6ef1a788d2fa6eb6b5366c09b","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":426.23},"width":21.906998,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21032f12c369f8830d842733f1577b38","type":"CBI_author","value":"Rasanen","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.59,"y":379.17},"width":31.419983,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":null,"textAfter":" L; Hattula","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9311c92ca5b3498306d2d95f2ff4685e","type":"CBI_author","value":"MIZU KANKYO GAKKAISHI","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.47,"y":197.82},"width":117.36981,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":245,"endOffset":266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8f42eb82015a22cbfba5b2fb4b3b8ac3","type":"CBI_author","value":"Mortelmans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.87198,"y":514.67},"width":44.551056,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"S; Lawlor T; ","textAfter":" K; Speck","comments":null,"startOffset":181,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74f6d9955b5d749192735be0fbb24d9d","type":"CBI_author","value":"Speck","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.858,"y":504.35},"width":23.004974,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"T; Mortelmans K; ","textAfter":" W; Zeiger","comments":null,"startOffset":195,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79183fdd859afcb38ced5f876e8dfac3","type":"CBI_author","value":"Somiya I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.589,"y":218.58002},"width":33.598053,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":215,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7be54b0cb411396ea3f757f35a1d8b52","type":"CBI_author","value":"Onodera","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":354.55,"y":462.47},"width":32.09497,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":null,"textAfter":" S; Yoshimatsu","comments":null,"startOffset":120,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c0ac50df5a7b4a84dd580ee4912b8bf","type":"PII","value":"143-56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.83,"y":275.13},"width":26.49704,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":"CHEMISTRY, (1987) 14(1-2), ","textAfter":".","comments":null,"startOffset":335,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787215Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9d6f1c7a9fb4d3a2f71b38d0f8fa61d","type":"CBI_author","value":"Bercz J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.40945,"y":664.1},"width":33.601166,"height":11.017679,"page":508}],"sectionNumber":5308,"textBefore":"per day. (","textAfter":" et al,","comments":null,"startOffset":5366,"endOffset":5373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a30ad1279573178c71d5f72261fdf31b","type":"CBI_author","value":"Yamaguchi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.052,"y":141.29999},"width":42.471954,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":"Ozaki A; ","textAfter":" Y; Fujita","comments":null,"startOffset":163,"endOffset":172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7a537632385e73d3fd9d5062b35e4c0","type":"CBI_author","value":"Lawlor T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.61298,"y":514.67},"width":34.569977,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"Haworth S; ","textAfter":"; Mortelmans K;","comments":null,"startOffset":171,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d94182959af3567a2b3c94904035519","type":"CBI_author","value":"Uchida","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.778,"y":452.15},"width":27.063995,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"K; Saitoh H; ","textAfter":" A; JAPANESE","comments":null,"startOffset":155,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28eb7ecf838b60568fd3728ed1f66df7","type":"CBI_author","value":"Hattula","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.52,"y":379.17},"width":27.52304,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":"Rasanen L; ","textAfter":" M; BULL.","comments":null,"startOffset":178,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45a13b0256cc06720f659951b86d1c25","type":"PII","value":"289-299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.81897,"y":410.73},"width":31.132019,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"HEALTH, (1998) 44(4), ","textAfter":".","comments":null,"startOffset":236,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1133759c7ed6fb38cb916150ac667f73","type":"PII","value":"(1987) 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.19397,"y":285.45},"width":36.306976,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":"AND ENVIRONMENTAL CHEMISTRY, ","textAfter":"(1-2), 143-56.","comments":null,"startOffset":319,"endOffset":328,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe00e9f1a8d15e8159d3cd7b7a0932d5","type":"PII","value":"871-877","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.053,"y":187.5},"width":31.138,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":"GAKKAISHI, (1996), 19(11), ","textAfter":".","comments":null,"startOffset":284,"endOffset":291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a2838c772514ff3aeaee32063b636a9c","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.15,"y":141.29999},"width":31.248993,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":null,"textAfter":"; Yamaguchi Y;","comments":null,"startOffset":154,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76677b96e0187bb9637584f61e1c35aa","type":"PII","value":"(1998) 44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.59,"y":410.73},"width":36.306976,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"AND ENVIRONMENTAL HEALTH, ","textAfter":"(4), 289-299.","comments":null,"startOffset":222,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b6df4dd0a147ec3b7aee65b7ded4dbc","type":"CBI_author","value":"Yoshimatsu K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.57898,"y":462.47},"width":52.588043,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":131,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa76477b70e59e344ee4b55a27952cf0","type":"CBI_author","value":"Kuroda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.35,"y":130.97998},"width":28.13498,"height":10.0905,"page":508}],"sectionNumber":5274,"textBefore":"Y; Fujita T; ","textAfter":" K; Endo","comments":null,"startOffset":167,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60bbd226f2ca68a437b3f8835f3bb37e","type":"CBI_author","value":"Saitoh H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.93704,"y":462.47},"width":24.07602,"height":10.0905,"page":508},{"topLeft":{"x":391.51,"y":452.15},"width":7.497986,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":145,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8df3100b6a49ebf5087d02ae45b9f310","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":217.02002},"width":98.06488,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":null,"textAfter":null,"comments":null,"startOffset":507,"endOffset":524,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e8e4129f1681640477e5be59aa4acf72","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.18607,"y":237.65997},"width":35.865967,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":"Armstrong M.J; ","textAfter":" S.M; Ashby","comments":null,"startOffset":484,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3237ed925d1b096bc437b9022bdb0971","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.79102,"y":611.9},"width":25.40802,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":"Valencia R; ","textAfter":" J.M; Woodruff","comments":null,"startOffset":147,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"711d427c7a89243265d100d723e4f168","type":"CBI_author","value":"McBride","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.472,"y":353.01},"width":33.17801,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"P; Edwards I; ","textAfter":" D; Riach","comments":null,"startOffset":204,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70b3f66f920b2dd32d5435d175bd0f55","type":"PII","value":"325-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.83,"y":570.59},"width":26.49704,"height":10.0905,"page":509}],"sectionNumber":5280,"textBefore":"MUTAGENESIS, (1985), 7(3), ","textAfter":null,"comments":null,"startOffset":175,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787217Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42c95d8899c3dc5b33e85fffa09b041a","type":"CBI_author","value":"Fahrig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.99,"y":713.78},"width":24.544006,"height":10.0905,"page":509}],"sectionNumber":5278,"textBefore":null,"textAfter":" R; Nilsson","comments":null,"startOffset":268,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65db7ee709b18fe27aef3b7909070fdf","type":"PII","value":"101-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.04398,"y":206.70001},"width":31.147034,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":"RESEARCH, (1993), 303(3), ","textAfter":".","comments":null,"startOffset":542,"endOffset":549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787217Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7b3d924eff0ba0b49d7435568d0be133","type":"CBI_author","value":"Ashby J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.91,"y":227.34003},"width":30.151001,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":"M.J; Galloway S.M; ","textAfter":"; MUTATION RESEARCH,","comments":null,"startOffset":498,"endOffset":505,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6ffe75a58ecebd2a6e30f0ba9fc8c92","type":"CBI_author","value":"Rappe C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.72403,"y":713.78},"width":32.30194,"height":10.0905,"page":509}],"sectionNumber":5278,"textBefore":null,"textAfter":null,"comments":null,"startOffset":291,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0bc0de78c249ae691e6ce702daacc52d","type":"CBI_author","value":"Hattula","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":367.99,"y":521.75},"width":27.52304,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":null,"textAfter":" M.L; Knuutinen","comments":null,"startOffset":184,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["22c645b0a4d556d18907b39c966f7c1b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22fdc4a59a71f907b37ea36c1286cb67","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":362.23,"y":601.58},"width":36.48697,"height":10.0905,"page":509}],"sectionNumber":5280,"textBefore":"R; Mason J.M; ","textAfter":" R.C; Zimmering","comments":null,"startOffset":107,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f5a355e82f0d42aeaab4e670ad99ccf","type":"PII","value":"325-38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.95,"y":662.06},"width":26.49701,"height":10.0905,"page":509}],"sectionNumber":5277,"textBefore":"Pharmacol., Environ. Toxicol., ","textAfter":".","comments":null,"startOffset":413,"endOffset":419,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787218Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e5441e23c31b9bd0290b06812013272","type":"CBI_author","value":"Zimmering S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.93,"y":601.58},"width":48.682037,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":null,"textAfter":null,"comments":null,"startOffset":172,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc4cc2679e8e1d808133435787fdacb9","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":754.58},"width":35.4971,"height":10.018499,"page":509}],"sectionNumber":5276,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7512fe4b9cf7a9f074a9316198050ca4","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.43,"y":463.67},"width":29.007996,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":123,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4d114308f1b04811cc146aba7d00acb","type":"CBI_author","value":"Valencia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.71,"y":611.9},"width":33.04001,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":null,"textAfter":" R; Mason","comments":null,"startOffset":135,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d95427794a4ac621d5ab140c601e63ea","type":"CBI_author","value":"Brown A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.579,"y":363.33},"width":34.23694,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"McGregor D.B; ","textAfter":"; Cattanach P;","comments":null,"startOffset":171,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef0a4d266eafa5aed764c7cb7e84a487","type":"CBI_author","value":"Riach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.21802,"y":342.69},"width":21.943024,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"I; McBride D; ","textAfter":" C; Caspary","comments":null,"startOffset":215,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54e222b39b03eaac1459c62c16299970","type":"CBI_author","value":"Knuutinen J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.26508,"y":521.75},"width":44.785004,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":197,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["NER"],"reference":["22c645b0a4d556d18907b39c966f7c1b"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"814315d886907880309fccbb154e5efe","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.43,"y":408.45},"width":29.007996,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":123,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21759c5ecf48ef9066037898e37a0c11","type":"CBI_author","value":"ENVIRONMENTAL MUTAGENESIS","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.87,"y":591.26},"width":78.97589,"height":10.0905,"page":509},{"topLeft":{"x":358.87,"y":580.91},"width":64.42291,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":null,"textAfter":null,"comments":null,"startOffset":185,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e01dffd94a9cc42040536acc453191d","type":"CBI_author","value":"Nilsson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.557,"y":713.78},"width":28.423035,"height":10.0905,"page":509}],"sectionNumber":5278,"textBefore":"Fahrig R; ","textAfter":" C.A; Rappe","comments":null,"startOffset":278,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3f481c1c3284afd02a1890e60d636d6","type":"PII","value":"175-179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.04398,"y":387.69},"width":31.147034,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":"RESEARCH, (1992), 280(3), ","textAfter":".","comments":null,"startOffset":180,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1eabb179328a834fb41fdda23d995c1b","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.39,"y":237.65997},"width":40.041992,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":null,"textAfter":" M.J; Galloway","comments":null,"startOffset":469,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"38795d3f990c7819ce909cb9ac0ae3c1","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.02798,"y":463.67},"width":28.891022,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":"Jansson K; ","textAfter":" V; MUTATION","comments":null,"startOffset":134,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"428c517f9d3c7aca6b8b8a4734f7794c","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":398.01},"width":98.079895,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":null,"textAfter":null,"comments":null,"startOffset":145,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f72b3eb07237f7a66c5528f02c0d5743","type":"PII","value":"1617-1625","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.11,"y":501.11},"width":40.044983,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":"CHEMOSPHERE (1985), 14(10), ","textAfter":".","comments":null,"startOffset":238,"endOffset":247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"180ef2e31bc3beba38bd6861dae78d8f","type":"CBI_author","value":"McGregor","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":368.35,"y":363.33},"width":38.412994,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":null,"textAfter":" D.B; Brown","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69877c398ce8d67861b8e5234f2dd475","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.02798,"y":408.45},"width":28.891022,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":"Jansson K; ","textAfter":" V; MUTATION","comments":null,"startOffset":134,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"179e6f76a94c3eadbed15b5ea1e3f722","type":"CBI_author","value":"Caspary","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.27405,"y":342.69},"width":30.447998,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"D; Riach C; ","textAfter":" W.J; ENVIRONMENTAL","comments":null,"startOffset":224,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"278666f8ea4bbc0966227c5232574621","type":"CBI_author","value":"Cattanach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.03,"y":353.01},"width":36.92798,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"D.B; Brown A; ","textAfter":" P; Edwards","comments":null,"startOffset":180,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c1d166da5c14b2330b594a95aa887c6","type":"PII","value":"165-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.92902,"y":442.91},"width":30.981995,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":"RESEARCH, (1986), 171(2-3), ","textAfter":".","comments":null,"startOffset":182,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"76e5d8d88caad5e196ab12c4343ad90e","type":"CBI_author","value":"Edwards","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.108,"y":353.01},"width":32.32895,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"A; Cattanach P; ","textAfter":" I; McBride","comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eff02885fb0ba9c25c1357a87c78831e","type":"PII","value":"85-154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.15802,"y":311.61},"width":26.592987,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"MUTAGENESIS, (1988), 12(1), ","textAfter":".","comments":null,"startOffset":293,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d8b9971d8becf7a4536b2fa8738c1d8","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":453.23},"width":98.06488,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":null,"textAfter":null,"comments":null,"startOffset":145,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22c645b0a4d556d18907b39c966f7c1b","type":"published_information","value":"CHEMOSPHERE","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":354.31,"y":511.43},"width":67.07794,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":210,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82ac0dfea528cf089a338ba8996b4a23","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.95,"y":389.37},"width":36.52304,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":null,"textAfter":" A; Hayashi","comments":null,"startOffset":166,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e74dae28ced095871b95be57307407fb","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.15,"y":339.81},"width":31.248993,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":null,"textAfter":"; Yamaguchi Y;","comments":null,"startOffset":115,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cb27744f3136502d5097080856801cb","type":"CBI_author","value":"Bloom","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.35098,"y":559.67},"width":25.506989,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"B; Cannon C; ","textAfter":" A.D; Nakamura","comments":null,"startOffset":259,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d14b3358e56b0f1b160b7d072990f60","type":"published_information","value":"ISSN","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":411.952,"y":434.27},"width":20.557007,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":null,"textAfter":null,"comments":null,"startOffset":254,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3da0cf67ddbd68dad7f3632d3837f78c","type":"PII","value":"(1992) 280","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.75,"y":167.82},"width":40.743988,"height":10.0905,"page":510}],"sectionNumber":5295,"textBefore":"V; MUTATION RESEARCH, ","textAfter":"(3), 175-9","comments":null,"startOffset":223,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78722Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b4de902db7260ae3ece2919ef7a2362","type":"CBI_author","value":"Yamaguchi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.052,"y":339.81},"width":42.471954,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"Ozaki A; ","textAfter":" Y; Fujita","comments":null,"startOffset":124,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86712f3c2dee30f16f1897927319ef5e","type":"CBI_author","value":"Sofuni","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.4331,"y":389.37},"width":24.96698,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"A; Hayashi M; ","textAfter":" T; KANKYO","comments":null,"startOffset":189,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16667940de18f22767cca8cf1261312b","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.908,"y":465.35},"width":28.891022,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":"Jansson K; ","textAfter":" V; Mutation","comments":null,"startOffset":166,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["54b578ae123105ddd04939fff1068e5d","1d14b3358e56b0f1b160b7d072990f60"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d8982f28cb18b7dc7c7cd9b515a58f6","type":"CBI_author","value":"Ahmed","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.76904,"y":549.23},"width":27.333954,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"A.D; Nakamura F; ","textAfter":" M; Duk","comments":null,"startOffset":282,"endOffset":287,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26023dfa87e24029e0747d9cf4e20df1","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.908,"y":188.46002},"width":28.891022,"height":10.0905,"page":510}],"sectionNumber":5295,"textBefore":"Jansson K; ","textAfter":" V; MUTATION","comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a496c7ead638f068aaa5a7316f0d56a","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.39,"y":274.52997},"width":40.041992,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":null,"textAfter":" M.J; Galloway","comments":null,"startOffset":152,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c1ce3387c0b6226b622419a1ac6c345","type":"CBI_author","value":"Endo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.86798,"y":329.49},"width":20.016968,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"T; Kuroda K; ","textAfter":" G; FOOD","comments":null,"startOffset":157,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54b578ae123105ddd04939fff1068e5d","type":"published_information","value":"ISSN","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":387.19,"y":423.95},"width":20.557007,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":null,"textAfter":null,"comments":null,"startOffset":273,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcf238781aaa83b966034be804c1fe6a","type":"PII","value":"1323-1337","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.11,"y":298.40997},"width":40.044983,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"TOXICOLOGY, (2004), 42(8), ","textAfter":".","comments":null,"startOffset":210,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787221Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"443893af6cdb035bca6e2c7530c43295","type":"PII","value":"0027-5107","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.51703,"y":423.95},"width":40.07794,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":"ISSN: 0027-5107. L-ISSN: ","textAfter":".","comments":null,"startOffset":279,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787221Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"091583903e5725f7960b95a26aac93c1","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":178.14001},"width":98.06488,"height":10.0905,"page":510}],"sectionNumber":5295,"textBefore":null,"textAfter":null,"comments":null,"startOffset":204,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12fd9677e65e1e11b6e5d278539df15d","type":"PII","value":"159-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.858,"y":358.29},"width":31.092987,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"KENKYU, (1998) 20(3), ","textAfter":".","comments":null,"startOffset":237,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787221Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f017d0c9c90b449906b44ebeac9eb74c","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.39,"y":580.31},"width":35.955963,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":" S.M; Armstrong","comments":null,"startOffset":191,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f812966f2114568bc43665501755cb8","type":"CBI_author","value":"Cannon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":353.23,"y":559.67},"width":29.007965,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"S; Brown B; ","textAfter":" C; Bloom","comments":null,"startOffset":249,"endOffset":255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3144f3220175817a61b12a26f2cba306","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.54904,"y":580.31},"width":40.041992,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"Galloway S.M; ","textAfter":" M.J; Reuben","comments":null,"startOffset":205,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3fe02372f4eb5391cd448130c761ed2","type":"CBI_author","value":"Kuroda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.35,"y":329.49},"width":28.13498,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"Y; Fujita T; ","textAfter":" K; Endo","comments":null,"startOffset":147,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94b003a400b3584d608220de3b73aa17","type":"CBI_author","value":"Duk S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.24103,"y":549.23},"width":23.743011,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":291,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"794e0990825be08dffc4e92ab529be94","type":"CBI_author","value":"Resnik M.A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.13004,"y":538.91},"width":45.01001,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":321,"endOffset":331,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cba0a84be21331cc66258243916b853a","type":"CBI_author","value":"Rimpo J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.68207,"y":549.23},"width":31.23999,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":298,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b66f7971372b74acbdbdbbb27492ae62","type":"CBI_author","value":"Nakamura","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.86298,"y":559.67},"width":38.449005,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"C; Bloom A.D; ","textAfter":" F; Ahmed","comments":null,"startOffset":270,"endOffset":278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b757aa1f8d143afad98d2c73d6c4143","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":364.87,"y":538.91},"width":34.516052,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"S; Rimpo J; ","textAfter":" B.H; Resnik","comments":null,"startOffset":307,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad49f1ae6953d34e4d804656df08e690","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.31,"y":188.46002},"width":29.007996,"height":10.0905,"page":510}],"sectionNumber":5294,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":209,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f901e482e92d694c090f6870a8c1f9b8","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.57697,"y":569.99},"width":25.416962,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"C; Colman S; ","textAfter":" B; Cannon","comments":null,"startOffset":240,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0683f3bf846a02d4b2678671fc6994ad","type":"CBI_author","value":"Fujita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.07797,"y":339.81},"width":22.114044,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"A; Yamaguchi Y; ","textAfter":" T; Kuroda","comments":null,"startOffset":137,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"332f9352c851df7cee8abe7a66f21b68","type":"CBI_author","value":"Colman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.06793,"y":569.99},"width":29.368011,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"M.J; Reuben C; ","textAfter":" S; Brown","comments":null,"startOffset":230,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d643d8c04ba5cc79525ed489d99da2a","type":"CBI_author","value":"Ashby J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.91,"y":264.21002},"width":30.151001,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":"M.J; Galloway S.M; ","textAfter":"; MUTATION RESEARCH,","comments":null,"startOffset":181,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69af741235318da150c7143ad5d28a80","type":"PII","value":"101-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.04398,"y":243.41998},"width":31.147034,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":"RESEARCH, (1993), 303(3), ","textAfter":".","comments":null,"startOffset":225,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787222Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6cdd1324be33649cdb59c996ef0b8b95","type":"PII","value":"(1998) 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.59,"y":358.29},"width":36.306976,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"KANKYO HEN'IGEN KENKYU, ","textAfter":"(3), 159-165.","comments":null,"startOffset":223,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787223Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"55e1408bc41573c6f97a6ef024d08aac","type":"PII","value":"0027-5107","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.16202,"y":434.27},"width":40.06598,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":"code: 0400763. ISSN: ","textAfter":". L-ISSN: 0027-5107.","comments":null,"startOffset":260,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787223Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b8fe31c623b920f57a907fcc1537c61","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":754.58},"width":35.4971,"height":10.018499,"page":510}],"sectionNumber":5287,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db2f12b65343760c0c5dc53d5c489e71","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":253.77002},"width":98.06488,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":null,"textAfter":null,"comments":null,"startOffset":190,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5691b5a97e9ce80670db8b9261ae90e8","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.18607,"y":274.52997},"width":35.865967,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":"Armstrong M.J; ","textAfter":" S.M; Ashby","comments":null,"startOffset":167,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"706403b10c630aed3def08d0e4a0de30","type":"CBI_author","value":"Hayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.85605,"y":389.37},"width":30.475006,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"Matsuoka A; ","textAfter":" M; Sofuni","comments":null,"startOffset":178,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da5723d5a0ade8c288a9c6c67238cb30","type":"CBI_author","value":"Reuben","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.55,"y":569.99},"width":28.530945,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"S.M; Armstrong M.J; ","textAfter":" C; Colman","comments":null,"startOffset":220,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c23fbcdbe90b132ee1097de090433f76","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":375.31,"y":465.35},"width":29.007996,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":155,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["54b578ae123105ddd04939fff1068e5d","1d14b3358e56b0f1b160b7d072990f60"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a27a0606094f7ebc467f6bcd2ebd866e","type":"CBI_author","value":"Zeiger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.02798,"y":528.59},"width":24.400024,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"M.A; Anderson B; ","textAfter":" E; ENVIRONMENTAL","comments":null,"startOffset":345,"endOffset":351,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d754bfd62a25f1c4a17c6ffe9d288c6","type":"CBI_author","value":"KANKYO HEN'IGEN KENKYU","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":353.11,"y":368.73},"width":124.11075,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":null,"textAfter":null,"comments":null,"startOffset":199,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f0049b0210deb1bab7bf8b7ded966bf","type":"CBI_author","value":"Valcovic","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":377.884,"y":96.064026},"width":36.975586,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"E; Sheridan W; ","textAfter":" L; (1981)","comments":null,"startOffset":5874,"endOffset":5882,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d645eed65139e2fc662c7d0d0e85158c","type":"CBI_author","value":"Murata","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.309,"y":418.77},"width":27.037018,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"A; Inoue Y; ","textAfter":" T; Uno","comments":null,"startOffset":185,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23a4cdf6096aeb82c79b53835dfabc77","type":"CBI_author","value":"Witte","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.83505,"y":715.58},"width":20.926056,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":"U; Blum K; ","textAfter":" I; CHEMICO-BIOLOGICAL","comments":null,"startOffset":114,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39618c0a3cbbdece1fc009647a57e9d0","type":"CBI_author","value":"Zhao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.96304,"y":283.28998},"width":19.41397,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":"H; Hu P; ","textAfter":" Q; ENVIRONMENTAL","comments":null,"startOffset":157,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6083cef7a0fe835631fa9bd5bd87de1f","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.156,"y":584.87},"width":30.537994,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":"Female ","textAfter":"-Dawley rats Dosed","comments":null,"startOffset":30,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f9b2bc4ccb7c2a6a31bac8d6867ac00","type":"CBI_author","value":"Tsuda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.26505,"y":340.65},"width":22.977997,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"A; Ishida K; ","textAfter":" S; CRITICAL","comments":null,"startOffset":356,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3946707a0e31f0e8c424934a8115a36f","type":"CBI_author","value":"Sugiyama","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.87,"y":418.77},"width":36.883026,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"M; Takasawa H; ","textAfter":" A; Inoue","comments":null,"startOffset":164,"endOffset":172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae46b67544580537ae62e613d5376a7c","type":"CBI_author","value":"Izumiyama F","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.31,"y":350.97},"width":48.55606,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"Y.F; Sekihashi K; ","textAfter":"; Nishidate E;","comments":null,"startOffset":312,"endOffset":323,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0ffd74a388aa199635c01fc39e58ddb","type":"CBI_author","value":"Sasaki","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":74.064,"y":61.599976},"width":27.04541,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"86; 355-379. 17 ","textAfter":" et al.,","comments":null,"startOffset":6045,"endOffset":6051,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e74f1aa9be03d23b7171b671bac1104","type":"CBI_author","value":"Sasaki Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.51,"y":361.41},"width":33.157043,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":null,"textAfter":".F; Sekihashi K;","comments":null,"startOffset":287,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fcf6945b41ac79e0fdf37b79e901b01","type":"CBI_author","value":"Kitchin K.T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.35,"y":533.15},"width":44.623016,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":null,"textAfter":"; Brown J.L;","comments":null,"startOffset":322,"endOffset":333,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c5f76eb1ec1fd0bab9ffb0fc746a3a2","type":"CBI_author","value":"Sheridan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.82108,"y":96.064026},"width":36.417786,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"Von Halle E; ","textAfter":" W; Valcovic","comments":null,"startOffset":5862,"endOffset":5870,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"caddc2eeee47d9634bef5fac291de03c","type":"CBI_author","value":"Inoue Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.26202,"y":418.77},"width":30.384949,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"H; Sugiyama A; ","textAfter":"; Murata T;","comments":null,"startOffset":176,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46a4d0b5f0ff59b1eb3fdebb91fa2d13","type":"CBI_author","value":"Juhl","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.87,"y":715.58},"width":16.084015,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":null,"textAfter":" U; Blum","comments":null,"startOffset":98,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5bf8466e70ab4f92a0930686c40f6a0","type":"PII","value":"333-344","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":684.62},"width":31.050995,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":"(1989), 69 (4), ","textAfter":".","comments":null,"startOffset":172,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787225Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5177bd65ba8a68b4e2035e5950133329","type":"CBI_author","value":"CHEMICO-BIOLOGICAL INTERACTIONS","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":705.26},"width":100.4559,"height":10.0905,"page":511},{"topLeft":{"x":354.55,"y":694.94},"width":66.339905,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":null,"textAfter":null,"comments":null,"startOffset":123,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"84b7546907849aa19b44519772de56b9","type":"PII","value":"(1988) 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.67398,"y":502.07},"width":36.306976,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":"AND ENVIRONMENTAL CHEMISTRY, ","textAfter":"(3), 165- 172.","comments":null,"startOffset":389,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787225Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d2caffca19b3e48b069ea8878a396d6","type":"CBI_author","value":"Russell L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":162.50883,"y":96.064026},"width":43.051132,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"of the study. ","textAfter":".B; Selby P.B;","comments":null,"startOffset":5825,"endOffset":5834,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb0fe03efcc821dd516e354558f083b1","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":494.37628,"y":84.54401},"width":37.64276,"height":10.526819,"page":511},{"topLeft":{"x":64.104,"y":73.119995},"width":37.513367,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6010,"endOffset":6027,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ddbbde30f4480670349f0cd85180046c","type":"CBI_author","value":"Brown J.L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.67105,"y":533.15},"width":38.988953,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":"Kitchin K.T; ","textAfter":"; TOXICOLOGICAL AND","comments":null,"startOffset":335,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea04ecf52889716ffa676e5f33472720","type":"CBI_author","value":"Takasawa H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.67508,"y":429.11},"width":45.513916,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":null,"textAfter":null,"comments":null,"startOffset":152,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5adb090b4507f2de8506fa38b0500db","type":"CBI_author","value":"Mortelmans","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":276.93524,"y":169.14001},"width":49.12677,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"S, Lawlor T, ","textAfter":" K, Speck","comments":null,"startOffset":216,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a8b1b2af300a0711820cfeb97c58251","type":"CBI_author","value":"Nilsson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.557,"y":647.54},"width":28.423035,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":"Fahrig R; ","textAfter":" C.A; Rappe","comments":null,"startOffset":180,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7ed7ebb6768feb3735841c33810dd34","type":"CBI_author","value":"Speck","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":342.8904,"y":169.14001},"width":25.521545,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"T, Mortelmans K, ","textAfter":" W and","comments":null,"startOffset":230,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57076558cfb5ba188a1e86b35f62f3e7","type":"CBI_author","value":"Von Halle","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":266.4116,"y":96.064026},"width":42.95157,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"L.B; Selby P.B; ","textAfter":" E; Sheridan","comments":null,"startOffset":5849,"endOffset":5858,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"585c5f874234f9a1c339bb2922b764a8","type":"CBI_address","value":"Blum K","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.50803,"y":715.58},"width":29.557007,"height":10.0905,"page":511}],"sectionNumber":5299,"textBefore":null,"textAfter":null,"comments":null,"startOffset":95,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787226Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e73509d59e9689364e4d12ef17c28134","type":"CBI_author","value":"Haworth S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":202.35718,"y":192.18},"width":49.306,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Report: K-CA 5.8.1/18 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8363a1426874c5c10642a37c625a6d9","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":403.55685,"y":169.14001},"width":26.96576,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Speck W and ","textAfter":" E (1983).","comments":null,"startOffset":242,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"550ba26088e135be26c28e01fc42990d","type":"PII","value":"325-338","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":595.82},"width":31.050995,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":"Pharmacol., Environ. Toxicol., ","textAfter":".","comments":null,"startOffset":303,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787226Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53ac564e7959ea223700067f1ad244ae","type":"CBI_author","value":"Russell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":261.73413,"y":107.58002},"width":30.392029,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"were re-evaluated by ","textAfter":" (1981) and","comments":null,"startOffset":5734,"endOffset":5741,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"929875ab8fbf1b7a4b4f5fbb3775b3a6","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":394.35388,"y":157.62},"width":51.53711,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":null,"textAfter":null,"comments":null,"startOffset":329,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8685f8f1ad39c00212085b8e860ffff9","type":"PII","value":"157-183","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.92902,"y":387.69},"width":30.981995,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"RESEARCH, (1995), 343(2-3), ","textAfter":".","comments":null,"startOffset":251,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787226Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4acf888f351a6d7d8f5b2127567dae5c","type":"CBI_author","value":"Selby","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.67924,"y":96.064026},"width":23.848236,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"study. Russell L.B; ","textAfter":" P.B; Von","comments":null,"startOffset":5838,"endOffset":5843,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b6950ebe1d8516e50e472ab5e095828","type":"CBI_author","value":"Ishida K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":387.661,"y":340.65},"width":31.834015,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"E; Saga A; ","textAfter":"; Tsuda S;","comments":null,"startOffset":346,"endOffset":354,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70c2bdc48f6a4821b9051a6fd07d2514","type":"CBI_author","value":"Miyagawa","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.71,"y":429.11},"width":38.935028,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":null,"textAfter":" M; Takasawa","comments":null,"startOffset":140,"endOffset":148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3616f62e7e2b2eb573b125b31851e450","type":"CBI_author","value":"Haworth","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.9846,"y":169.14001},"width":36.059174,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Bethesda, Maryland. Published: ","textAfter":" S, Lawlor","comments":null,"startOffset":195,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af5d628923477d813ab1728c0d0a2479","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":485.21204,"y":157.62},"width":38.05121,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Environmental Mutagenesis l:3-142. ","textAfter":" File No.","comments":null,"startOffset":350,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc0d106422f14c7e15ab5d580e430f9d","type":"CBI_author","value":"Nishidate E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.73804,"y":350.97},"width":43.30902,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"K; Izumiyama F; ","textAfter":"; Saga A;","comments":null,"startOffset":325,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fc1b83329b71aca356ebfb688f88781","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":754.58},"width":35.4971,"height":10.018499,"page":511}],"sectionNumber":5297,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d6daca84f28577b2ae444aa19ab35b0","type":"CBI_author","value":"Saga A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.8621,"y":350.97},"width":18.424011,"height":10.0905,"page":511},{"topLeft":{"x":376.51,"y":340.65},"width":7.497986,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"F; Nishidate E; ","textAfter":"; Ishida K;","comments":null,"startOffset":338,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c735da2399806b280dca9ee617a97a97","type":"PII","value":"629-79917","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.67,"y":309.57},"width":31.050995,"height":10.0905,"page":511},{"topLeft":{"x":426.67,"y":313.52997},"width":7.0,"height":8.727,"page":511}],"sectionNumber":5303,"textBefore":"TOXICOLOGY. (2000), 30(6), ","textAfter":".","comments":null,"startOffset":412,"endOffset":421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787227Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34d6b7e0d8a1610b4bd251364d55458c","type":"PII","value":"355-379","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":120.98,"y":73.119995},"width":34.419975,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"Mutation Research, 86; ","textAfter":". 17 Sasaki","comments":null,"startOffset":6033,"endOffset":6040,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787227Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"971cb9e15966da12b30cca257a61a5e3","type":"CBI_author","value":"Yin D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":361.87,"y":283.28998},"width":23.319977,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":null,"textAfter":"; Zhu H;","comments":null,"startOffset":137,"endOffset":142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae28bc7baf99e9c6e60d7fbfa8a8b575","type":"CBI_author","value":"Lawlor T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":231.28856,"y":169.14001},"width":39.91371,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Published: Haworth S, ","textAfter":", Mortelmans K,","comments":null,"startOffset":206,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c24ff2e3e79864bb39251c1e79b5d93","type":"CBI_author","value":"Fahrig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.99,"y":647.54},"width":24.544006,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":null,"textAfter":" R; Nilsson","comments":null,"startOffset":170,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1eb7e67146687125fba69e0eea1cb706","type":"CBI_author","value":"Hu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.95,"y":283.28998},"width":11.997986,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":"D; Zhu H; ","textAfter":" P; Zhao","comments":null,"startOffset":151,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72ed982a25ea0c59ff3ff938b82e01ed","type":"CBI_author","value":"Zhu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.96,"y":283.28998},"width":15.4539795,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":"Yin D; ","textAfter":" H; Hu","comments":null,"startOffset":144,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7983081097821e7b8aaac90f606bc4a","type":"CBI_author","value":"Rappe C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.72403,"y":647.54},"width":32.30194,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":null,"textAfter":null,"comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7f4e04b79b4bb457903fdbde2d5e2423","type":"CBI_author","value":"Uno Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.63,"y":408.45},"width":25.353973,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":null,"textAfter":null,"comments":null,"startOffset":195,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df092e43d74d4cb8afce4d9a2a527e8f","type":"CBI_author","value":"Sekihashi K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.7451,"y":361.41},"width":44.77603,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"Sasaki Y.F; ","textAfter":"; Izumiyama F;","comments":null,"startOffset":299,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15ad05fd17a347c256eb417f5b473c8b","type":"CBI_author","value":"Yoshikawa","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.754,"y":408.45},"width":41.220947,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"T; Uno Y; ","textAfter":" K MUTATION","comments":null,"startOffset":202,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d196db1f6267cb63c42b38dba4c0302f","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (practical)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":679.58},"width":82.55249,"height":11.017679,"page":512}],"sectionNumber":5309,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82b45cf7360eb33612438938f188a306","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.71,"y":542.39},"width":26.513428,"height":11.017679,"page":512}],"sectionNumber":5310,"textBefore":"the methods of ","textAfter":" (Ames et","comments":null,"startOffset":291,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"211ca099ff5f84579461ae3fd2386754","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.72598,"y":542.39},"width":26.513428,"height":11.017679,"page":512}],"sectionNumber":5310,"textBefore":"of Ames (","textAfter":" et al.1975).","comments":null,"startOffset":297,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5a19e6ca1c4674f9676fc25b45206ab","type":"PII","value":"12-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.818,"y":642.14},"width":26.762024,"height":11.017679,"page":513}],"sectionNumber":5319,"textBefore":"were fasted for ","textAfter":" hr immediately","comments":null,"startOffset":342,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787228Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c2ad2db97ac5b0d1fb038a56fc6735c","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":604.22},"width":27.334244,"height":11.017679,"page":513}],"sectionNumber":5319,"textBefore":"tissue) in a ","textAfter":"-Elvehjem apparatus with","comments":null,"startOffset":547,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"463f2714f4c87caea9eb49359a40c16d","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":316.26663,"y":667.46},"width":36.968292,"height":11.017679,"page":513}],"sectionNumber":5319,"textBefore":"prepared from male ","textAfter":"-Dawley rats and","comments":null,"startOffset":93,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"399f32d90ff5788cc8175ddac5515818","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.44705,"y":106.380005},"width":44.75154,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":823,"endOffset":831,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f57b22515ae5813e912c6d9bd72fbe6d","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Protocol:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":435.23},"width":23.024803,"height":11.017679,"page":514}],"sectionNumber":5331,"textBefore":"evaluations. Evaluation criteria: ","textAfter":" to statistical","comments":null,"startOffset":1091,"endOffset":1096,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d88c7183386c9da07cf60150e9c95e8","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":118.73999},"width":74.9128,"height":10.929359,"page":514}],"sectionNumber":5334,"textBefore":null,"textAfter":null,"comments":null,"startOffset":790,"endOffset":800,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"292c0f5c01fd39aadd2ea1de761f89e4","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.53787,"y":93.664},"width":37.6521,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"Mutat. Res., 31:","textAfter":". (Haworth S","comments":null,"startOffset":964,"endOffset":971,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787228Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4dd32d7a5c4e86ee3e887496360e7b75","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":106.380005},"width":26.62384,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"the assay. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":802,"endOffset":806,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9e17fa222ffabbd58678d25d0e0f795","type":"CBI_author","value":"Haworth S","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.09946,"y":68.32001},"width":48.40576,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":null,"textAfter":null,"comments":null,"startOffset":974,"endOffset":983,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e6b17084c1d24a2fd17eb1e14d082703","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":106.380005},"width":38.91137,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":810,"endOffset":816,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd332cf83ef29f4b8038df2f919d4df","type":"PII","value":"289-299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.12387,"y":667.7},"width":34.46576,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Environmental Health 44:","textAfter":". Syngenta File","comments":null,"startOffset":472,"endOffset":479,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787228Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45fef3fdff9c246edd9dffce2c786f4d","type":"CBI_author","value":"Yoshimatsu K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":418.63217,"y":702.14},"width":59.515076,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":239,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["NER"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"784e82690340ad6824a81ea0c2a71057","type":"CBI_author","value":"Saitoh H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":483.25272,"y":702.14},"width":37.31418,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["NER"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b21220d648b21a3c1e65346e8d019f24","type":"CBI_author","value":"Onodera","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":368.89194,"y":702.14},"width":35.501495,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Tokyo, Japan. Published: ","textAfter":" S, Yoshimatsu","comments":null,"startOffset":228,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e16dba0d2e466ec98368c003a8bed44a","type":"CBI_author","value":"Onodera S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.20172,"y":725.18},"width":50.989258,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Report: K-CA 5.8.1/19 ","textAfter":" (1998). Behavior","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a6ba54120ad3f7ccb38cd4a069f5a94","type":"published_information","value":"Journal of Toxicology and","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":477.5398,"y":679.22},"width":45.42163,"height":10.526819,"page":515},{"topLeft":{"x":133.82,"y":667.7},"width":63.88742,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":422,"endOffset":447,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e6352a77d24d273aed74ddf0d9f5c9e","type":"CBI_author","value":"Uchida","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":690.62},"width":29.77443,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"K, Saitoh H, ","textAfter":" A (1998).","comments":null,"startOffset":263,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9adf0f00d89674ac9e02d2f710e92423","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":199.26715,"y":667.7},"width":89.59796,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":448,"endOffset":468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d9ca795a5222603044506a7f863811a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":576.59},"width":82.55249,"height":11.017679,"page":515}],"sectionNumber":5334,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1143,"endOffset":1160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04c8d46567f4d72ea2f2c244e913eceb","type":"CBI_address","value":"Tokyo, Japan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.50504,"y":702.14},"width":55.939484,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"University of Science, ","textAfter":". Published: Onodera","comments":null,"startOffset":203,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ceb1c88c94fa60c184ea5afb711ccb1e","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":341.65927,"y":667.7},"width":37.94171,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Environmental Health 44:289-299. ","textAfter":" File No.","comments":null,"startOffset":481,"endOffset":489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e52971540f29ef0142b8ddbd6a89e80","type":"CBI_author","value":"Hattula","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":225.06},"width":30.272415,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"Published: Räsänen L, ","textAfter":" M, Arstila","comments":null,"startOffset":281,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95b714f19b467ef8b4ea848889eb9518","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":112.140015},"width":82.55249,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1194,"endOffset":1211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4046b1a8a497e6729cc24389cc97a725","type":"PII","value":"1178-1189","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":307.46976,"y":336.09},"width":48.8002,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":"Kakusan, Kouso, 20:","textAfter":". (Onodera S","comments":null,"startOffset":1009,"endOffset":1018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78723Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"980ab019d0376c41ba51ec83dade12f9","type":"CBI_author","value":"Räsänen L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.7955,"y":259.52997},"width":46.557037,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e32f92abebee01e4dace5a461641136","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistical analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":23.024803,"height":11.017679,"page":517}],"sectionNumber":5356,"textBefore":"performed. Evaluation criteria: ","textAfter":" to statistical","comments":null,"startOffset":83,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"862fab519ea499325a873c55bfd35651","type":"PII","value":"565-571","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.55423,"y":202.02002},"width":34.55542,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"vol. 18, No.5. ","textAfter":". Syngenta File","comments":null,"startOffset":504,"endOffset":511,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78723Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"043b3ea05a4f60c9978cdd8997582b30","type":"CBI_author","value":"Räsänen L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":476.70825,"y":236.58002},"width":43.907715,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":270,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c810b8439a028184b32d87247854546c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":355.57965,"y":202.02002},"width":38.05127,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"18, No.5. 565-571. ","textAfter":" File No.","comments":null,"startOffset":513,"endOffset":521,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"154236d0aaf58f22fc170ea217b4c272","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":348.69},"width":74.9128,"height":10.929359,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":945,"endOffset":955,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9bb5154eb57753977b66cac964ec136","type":"CBI_author","value":"Yahagi T.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":336.09},"width":45.12687,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":957,"endOffset":966,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"03b0c8106094bdf21b1f1054aab22ef6","type":"CBI_author","value":"Onodera S","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.69943,"y":311.37},"width":47.787506,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1021,"endOffset":1030,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02afaa8a461273696fb311e8bf682447","type":"published_information","value":"Bulletin","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":414.01495,"y":213.53998},"width":33.200745,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":435,"endOffset":443,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf37269dbcee611a0d1b4bd428ea41b2","type":"CBI_author","value":"Arstila","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.30928,"y":225.06},"width":28.121063,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"L, Hattula M, ","textAfter":" A (1977).","comments":null,"startOffset":292,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e538f940499726bb47b9a0301a497221","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.72598,"y":678.26},"width":26.513428,"height":11.017679,"page":518}],"sectionNumber":5360,"textBefore":"of Ames (","textAfter":" et al.1975).","comments":null,"startOffset":297,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30bebe683d82aceb7995aaa4e5e082f8","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.05534,"y":82.0},"width":26.513443,"height":11.017679,"page":518}],"sectionNumber":5369,"textBefore":"as described by ","textAfter":" (Ames et","comments":null,"startOffset":280,"endOffset":284,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16e4690b3928be8116490ce15d7aa265","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.65646,"y":82.0},"width":26.513428,"height":11.017679,"page":518}],"sectionNumber":5369,"textBefore":"by Ames (","textAfter":" et al.","comments":null,"startOffset":286,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcd3dc3fc52ef70e945ac5e8efebde96","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.71,"y":678.26},"width":26.513428,"height":11.017679,"page":518}],"sectionNumber":5360,"textBefore":"the methods of ","textAfter":" (Ames et","comments":null,"startOffset":291,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9f7071351d569e8868d354046fcbac5","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":274.4712,"y":304.40997},"width":26.62384,"height":11.017679,"page":519}],"sectionNumber":5381,"textBefore":"by Ames (","textAfter":" et al.1975).","comments":null,"startOffset":355,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9df0f9210670176cf75c6ef47849e5c","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.4552,"y":304.40997},"width":26.513428,"height":11.017679,"page":519}],"sectionNumber":5381,"textBefore":"as described by ","textAfter":" (Ames et","comments":null,"startOffset":349,"endOffset":353,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47de9a93f06770138906adb560dca9b2","type":"CBI_author","value":"Vogel","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":219.76797,"y":279.09003},"width":27.915543,"height":11.017679,"page":519}],"sectionNumber":5381,"textBefore":"was as follows: ","textAfter":"-Bonner–stock solution, minimum-glucose","comments":null,"startOffset":404,"endOffset":409,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a2835eb2f2af273494dd26c142f78d3","type":"CBI_author","value":"Strobel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":384.17474,"y":450.95},"width":29.894012,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Democratic Republic. Published: ","textAfter":" K and","comments":null,"startOffset":239,"endOffset":246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88a9913010c5fde488df503a44128716","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":563.75},"width":38.91137,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":915,"endOffset":921,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee95d076a6cc47cb8b212d8936034739","type":"CBI_author","value":"Grummt T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.42883,"y":450.95},"width":44.59494,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":null,"textAfter":null,"comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c2b9806a0181f3d204bdc8a561038483","type":"CBI_author","value":"Räsänen L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.69943,"y":513.83},"width":47.798553,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1079,"endOffset":1088,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7971ca79cefefa2608e6f57e433da74","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.72598,"y":200.82},"width":26.513428,"height":11.017679,"page":520}],"sectionNumber":5386,"textBefore":"of Ames (","textAfter":" et al.1975).","comments":null,"startOffset":297,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26b74b88283471c08bd315b93d0dc705","type":"CBI_author","value":"Grummt T.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.3123,"y":473.99},"width":48.329895,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Strobel K. and ","textAfter":" (1987). Aliphatic","comments":null,"startOffset":37,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b49992fe5c4bbfba05dcbbfab2b2bb8","type":"PII","value":"143-156","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.61292,"y":427.91},"width":34.556732,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Environmental Chemistry 14:","textAfter":". Syngenta File","comments":null,"startOffset":391,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787232Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86699a21fbe710a036ecf0315201253b","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.53183,"y":563.75},"width":44.75154,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":928,"endOffset":936,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31590531ce3189e6ddaa391d7870f1b3","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":449.01923,"y":439.43},"width":74.206055,"height":10.526819,"page":520},{"topLeft":{"x":133.82,"y":427.91},"width":104.534195,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":null,"textAfter":null,"comments":null,"startOffset":346,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4650b801fe1ba736933f38c0aa0b3ee","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.4164,"y":551.15},"width":37.77356,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"Mutat. Res., 31:","textAfter":". (Räsänen L","comments":null,"startOffset":1069,"endOffset":1076,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787232Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46345f20e52b02363808582c512ff903","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":563.75},"width":26.62384,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"this assay. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":907,"endOffset":911,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d853c942b24365df264d51b28763f41","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":293.63965,"y":427.91},"width":37.94171,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Environmental Chemistry 14:143-156. ","textAfter":" File No.","comments":null,"startOffset":400,"endOffset":408,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d13c62c25cbaf0d4136e69cf0755b34a","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":576.11},"width":74.9128,"height":10.929359,"page":520}],"sectionNumber":5385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":895,"endOffset":905,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"964026577100946d6aebc1dde9ee4158","type":"CBI_author","value":"Strobel K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.81335,"y":473.99},"width":44.375793,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Report: K-CA 5.8.1/21 ","textAfter":" and Grummt","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c39df4a3cb29a615f813e2a84ef04de","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.71,"y":200.82},"width":26.513428,"height":11.017679,"page":520}],"sectionNumber":5386,"textBefore":"the methods of ","textAfter":" (Ames et","comments":null,"startOffset":291,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c24b83d81d5b09b5fb7da5bae3bc2bf","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":338.01},"width":82.68918,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1246,"endOffset":1263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"110bf93cbbb34f6f43c135a247386945","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":690.26},"width":26.62384,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"the assay. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":1065,"endOffset":1069,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a3b31c6c41d9fe6ebf5d28bee239a6d","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.4164,"y":677.66},"width":37.77356,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"Mutat. Res., 31:","textAfter":". (Strobel K","comments":null,"startOffset":1227,"endOffset":1234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787233Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45dddcadd4d14a8adfc1741a87b7174f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":262.19962,"y":565.79},"width":38.04129,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Gakkaishi, (1996) 19:871-877. ","textAfter":" File No.","comments":null,"startOffset":370,"endOffset":378,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30aa5c064df1910fb50e8d7970da4a1b","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.44705,"y":690.26},"width":44.75154,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":1086,"endOffset":1094,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"178cb3f95adcdbf869f6c906732cf1a6","type":"CBI_author","value":"Nunoshiba T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.23,"y":588.86},"width":55.40161,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":213,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe4e62c06a878048334bfb684e64284a","type":"CBI_author","value":"Ono Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.98,"y":588.86},"width":30.481598,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":183,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86011fe3ad34de1dfd3b5b2e9aa9688c","type":"PII","value":"871-877","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":221.30864,"y":565.79},"width":34.42096,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Gakkaishi, (1996) 19:","textAfter":". Syngenta File","comments":null,"startOffset":361,"endOffset":368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787234Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a5fe7ee87da06a25a4c86721fcfd1bc1","type":"CBI_author","value":"Somiya I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":280.47043,"y":588.86},"width":39.15625,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":203,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fee2b54c23ca7fcf1f5965a0d5f843d3","type":"PII","value":"(1996) 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.26749,"y":565.79},"width":40.222473,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Mizu Kankyo Gakkaishi, ","textAfter":":871-877. Syngenta File","comments":null,"startOffset":351,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787234Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"80f18750531e2cefa963d80d61823e77","type":"CBI_author","value":"Oda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.32074,"y":588.86},"width":17.53363,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"I, Nunoshiba T, ","textAfter":" Y (1996).","comments":null,"startOffset":226,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a4b7422ef894fe18e06ddb36e5adb7c","type":"CBI_author","value":"Strobel","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.57944,"y":652.34},"width":32.751038,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"Res., 31:347-364. (","textAfter":" K and","comments":null,"startOffset":1237,"endOffset":1244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"611809bb14869cade2ebb979c47af243","type":"CBI_author","value":"Grummt T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.50107,"y":652.34},"width":47.588776,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1251,"endOffset":1259,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b190bd572fdc3ed660c4d6a03cad81f5","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":690.26},"width":38.91137,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":1073,"endOffset":1079,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9054dae275e2532b02cafc2b558ab5c0","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (not indicated).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.53882,"y":474.71},"width":82.55249,"height":11.017679,"page":523}],"sectionNumber":5419,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e506492464f267594fd772a894667004","type":"CBI_author","value":"Ono Y.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.16196,"y":611.78},"width":32.86203,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Report: K-CA 5.8.1/22 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93302c3fe90c42a70d3a99a08e393e37","type":"CBI_author","value":"Kobayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.01128,"y":588.86},"width":43.698532,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Published: Ono Y, ","textAfter":" U, Somiya","comments":null,"startOffset":190,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6932b4d6dd1617bb7a76cf523b855fe","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":702.62},"width":74.9128,"height":10.929359,"page":523}],"sectionNumber":5418,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1053,"endOffset":1063,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb759ac7545bb8f0218c3629c5d86600","type":"PII","value":"10-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.93211,"y":53.080017},"width":26.757858,"height":11.017679,"page":524}],"sectionNumber":5431,"textBefore":"at 28°C. After ","textAfter":" min, the","comments":null,"startOffset":1381,"endOffset":1386,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787235Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6cb216b2c1f8e93f9d0c0a501083dfeb","type":"CBI_author","value":"Osaka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.66656,"y":157.73999},"width":25.93988,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"for Food Packaging. ","textAfter":" City Institute","comments":null,"startOffset":153,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24431f23dea53f512e29433aded84c0b","type":"CBI_author","value":"Fujita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.3884,"y":134.70001},"width":24.37616,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"A, Yamaguchi Y, ","textAfter":" T, Kuroda","comments":null,"startOffset":303,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"252f4935a1510021648c351ae04c8b33","type":"CBI_author","value":"Yamaguchi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.77213,"y":134.70001},"width":47.055084,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Published. Ozaki A, ","textAfter":" Y, Fujita","comments":null,"startOffset":290,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d7b17469de3906649014d41a461b77f","type":"PII","value":"543-0026","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.62555,"y":146.22003},"width":39.503906,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Tojo-cho, Tennouji-ku, Osaka ","textAfter":", Japan. Published.","comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787235Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a7d1f1d3984db07d7b735de7d3a55934","type":"CBI_author","value":"Kuroda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":320.2464,"y":134.70001},"width":30.949768,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Y, Fujita T, ","textAfter":" K and","comments":null,"startOffset":313,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18711e016cbe51e468397880519b36e4","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.46,"y":134.70001},"width":34.92375,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"543-0026, Japan. Published. ","textAfter":", Yamaguchi Y,","comments":null,"startOffset":281,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"725d15c9f21d73ea0d4c19d6d22c5bfc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":309.1502,"y":111.65997},"width":38.05127,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Toxicology; 42: 1323-1337. ","textAfter":" File No.","comments":null,"startOffset":494,"endOffset":502,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1205fc9ecc72f691f674f55fe81df42","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.59622,"y":169.14001},"width":37.8022,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Report: K-CA 5.8.1/23 ","textAfter":", et al.,","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3240735defbba68167fa4f33126b6df","type":"CBI_author","value":"Endo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.30527,"y":134.70001},"width":22.035583,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Kuroda K and ","textAfter":", G (2004).","comments":null,"startOffset":326,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74b93bd97801831f07473bfab15b1ee1","type":"CBI_author","value":"Osaka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.16782,"y":146.22003},"width":25.929932,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"8-34 Tojo-cho, Tennouji-ku, ","textAfter":" 543-0026, Japan.","comments":null,"startOffset":247,"endOffset":252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2232739613f348a3e4239f1f0b7c3eb","type":"PII","value":"1323-1337","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.14072,"y":111.65997},"width":44.509186,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Chemical Toxicology; 42: ","textAfter":". Syngenta File","comments":null,"startOffset":483,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787235Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b21e73cf9a1bfbc6e0ffe5dc1a4eaea1","type":"CBI_author","value":"Ono Y","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.76944,"y":220.97998},"width":30.686554,"height":11.017679,"page":525}],"sectionNumber":5434,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1106,"endOffset":1111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0dfb09358feffd43a6af48b871ea9fa","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions reported in this paper, 2,4,6-TCP gave a positive genotoxic response in both\nthe Rec-assay in Bacillus subtilis and in vitro comet assay in HL-60 cells.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":292.05},"width":28.467995,"height":10.018499,"page":526}],"sectionNumber":5437,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"377d1edc0ebf53f2225f17212f3bc0ae","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>97%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":728.9},"width":82.55249,"height":11.017679,"page":526}],"sectionNumber":5435,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"114418816192c84eee394a8f4a64d0f8","type":"PII","value":"325-338","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":318.63,"y":478.55},"width":34.340027,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"Vol. 12, pp ","textAfter":". Syngenta File","comments":null,"startOffset":385,"endOffset":392,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787236Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3e7e5d1f6d1fd12f87e0654d40d8dd3a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":400.65},"width":82.55249,"height":11.017679,"page":528}],"sectionNumber":5448,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44f7071768388b20681d2d1f1746717e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":357.04984,"y":478.55},"width":37.931763,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"12, pp 325-338. ","textAfter":" File No.","comments":null,"startOffset":394,"endOffset":402,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2057d700b0f32e641a2eca0b913e8b2","type":"CBI_author","value":"Rappe C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":155.04477,"y":490.07},"width":40.0233,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":null,"textAfter":null,"comments":null,"startOffset":262,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0344af5d4a36450ba0e2571051ae23f6","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":344.31473,"y":501.59},"width":38.110992,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"i. Br., West ","textAfter":". Published: Fahrig","comments":null,"startOffset":218,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f65c59490aee10eb90c3330cbdb6926","type":"CBI_author","value":"Nilsson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.8664,"y":501.59},"width":31.527527,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"Published: Fahrig R, ","textAfter":" C and","comments":null,"startOffset":248,"endOffset":255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"216ab6ce899e095f7cfa251ad638f90d","type":"CBI_author","value":"Fahrig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.70972,"y":501.59},"width":27.085266,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"West Germany. Published: ","textAfter":" R, Nilsson","comments":null,"startOffset":238,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"619660d1e3e040fcd695ddf46365423f","type":"CBI_author","value":"Freiburg i. Br.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.46953,"y":501.59},"width":61.018967,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":null,"textAfter":null,"comments":null,"startOffset":196,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db202dd44f0c3ee4d3901dd391055fbb","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.44943,"y":576.35},"width":37.884644,"height":11.017679,"page":528}],"sectionNumber":5447,"textBefore":"conditions described. (","textAfter":" et al,","comments":null,"startOffset":1014,"endOffset":1021,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2f7caa0f54bb34f0968abf61417bf78","type":"CBI_author","value":"Fahrig R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.164,"y":524.51},"width":39.585052,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"Report: K-CA 5.8.1/24 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb1c911f63481fd41f7cafc02250f565","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":665.06},"width":28.467995,"height":10.018499,"page":529}],"sectionNumber":5450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca579c6339d61dc30a2b6e552e928c1b","type":"PII","value":"42 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.87,"y":116.46002},"width":10.059998,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":116.46002},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5465,"textBefore":null,"textAfter":null,"comments":null,"startOffset":42,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"abbe0215f97260fd65cdd955ef461a81","type":"CBI_address","value":"black coat","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":440.92603,"y":539.99},"width":37.67502,"height":10.0905,"page":530}],"sectionNumber":5459,"textBefore":null,"textAfter":null,"comments":null,"startOffset":98,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf7cb588680f8f2fb37a88ffb31f16c8","type":"PII","value":"36 181","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.87,"y":146.22003},"width":10.059998,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":146.22003},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5463,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"953e1c9c4929d44e221fddcfee097c8e","type":"PII","value":"152 967","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.59,"y":161.10004},"width":14.619995,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":161.10004},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5462,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9d8e3400a64967d7a572734937d331f","type":"PII","value":"38 159","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.87,"y":131.34003},"width":10.059998,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":131.34003},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5464,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d208047d6db74fe72dde53dd58ca52b5","type":"CBI_author","value":"Valcovic","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":271.12576,"y":143.34003},"width":36.975586,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"E; Sheridan W; ","textAfter":" L; (1981).","comments":null,"startOffset":314,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea47cc881adbd5532be4bffcc3c4131c","type":"PII","value":"100 42 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":143.9,"y":354.93},"width":14.619995,"height":10.0905,"page":531},{"topLeft":{"x":191.57,"y":354.93},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":354.93},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5473,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"edc03eb578a05ec912c31e9bab363b42","type":"CBI_author","value":"Sheridan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":215.36969,"y":143.34003},"width":36.417755,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Von Halle E; ","textAfter":" W; Valcovic","comments":null,"startOffset":302,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1181d11922bd0576576c38a95bd8cb26","type":"CBI_author","value":"Fahrig R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.85944,"y":217.62},"width":39.794586,"height":11.017679,"page":531}],"sectionNumber":5477,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1318,"endOffset":1326,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e9cd9e4c3c72b58b44ad2386baeaf2b","type":"CBI_author","value":"Russell L.B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.20786,"y":177.77997},"width":51.0988,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["RULE"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bab6dd2e1e4f7149645e59ed1f94e715","type":"CBI_author","value":"Russell L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.85703,"y":154.85999},"width":39.475555,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"TN 37830. Published: ","textAfter":".B; Selby P.B;","comments":null,"startOffset":265,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"433ff1097f8fe0259ea80e2654929ddd","type":"PII","value":"355-379","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.63193,"y":120.29999},"width":34.457672,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Mutagenesis Research 86:","textAfter":". Syngenta File","comments":null,"startOffset":475,"endOffset":482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"96611b6e84d51fe7c8f3c1dcebef561e","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.66916,"y":120.29999},"width":38.05124,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Mutagenesis Research 86:355-379. ","textAfter":" File No.","comments":null,"startOffset":484,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89b995c2989ef9e0e87b502172df08f2","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":471.20514,"y":131.82},"width":51.636658,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":null,"textAfter":null,"comments":null,"startOffset":451,"endOffset":462,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2dafe90fd591e8485036b4277ada3ef3","type":"PII","value":"50 36 181","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.18,"y":400.53},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":191.57,"y":400.53},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":400.53},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5471,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787239Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66db57285a721233a17c0d4455db39ca","type":"CBI_author","value":"Von Halle","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":155.54,"y":143.34003},"width":43.798096,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"L.B; Selby P.B; ","textAfter":" E; Sheridan","comments":null,"startOffset":289,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e332302727990345bdd3e3305beea4ef","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":500.14,"y":456.35},"width":27.109009,"height":10.018499,"page":531}],"sectionNumber":5469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":50,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcbb71062ed2890d0b2112131b78a14d","type":"PII","value":"50 38 159","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.18,"y":377.73},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":191.57,"y":377.73},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":377.73},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5472,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787239Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"921e4cb5b63b47fd6aee10cfd25edf99","type":"PII","value":"152 967","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.29,"y":423.47},"width":14.619995,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":423.47},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5470,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787239Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"601cd14af93287bee55f57d8614b3c6f","type":"CBI_author","value":"Selby","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":499.21283,"y":154.85999},"width":23.848206,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Published: Russell L.B; ","textAfter":" P.B; Von","comments":null,"startOffset":278,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7bac5c8224e6a164d407bd0841c255d","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":142.7,"y":514.31},"width":56.63057,"height":11.017679,"page":532}],"sectionNumber":5481,"textBefore":null,"textAfter":null,"comments":null,"startOffset":424,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfdda5d7bea2d1be64b3948e7efbe6c7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.43916,"y":554.99},"width":37.931686,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Mutagenesis 7:325- 348. ","textAfter":" File No.","comments":null,"startOffset":455,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ccaf8071f2deb3497e733e561711d46c","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":267.92145,"y":577.91},"width":51.43753,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":303,"endOffset":314,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86ac2d647377740af5375e2ca8d68191","type":"CBI_author","value":"Woodruff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":469.41275,"y":589.46},"width":40.381927,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"R, Mason J, ","textAfter":" R, Zimmering","comments":null,"startOffset":262,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f905a5d4023663f56d6c20ad8df0992","type":"CBI_author","value":"Russell L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":418.25943,"y":640.34},"width":42.89679,"height":11.017679,"page":532}],"sectionNumber":5481,"textBefore":"is required. (","textAfter":".B.. et al.,","comments":null,"startOffset":384,"endOffset":393,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c7bac5c8224e6a164d407bd0841c255d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea729f9c671886fa08ad3f39c1880a1c","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":441.26556,"y":566.51},"width":51.53711,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":431,"endOffset":442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f927b9f0ddca87213ece79c1ec0b659e","type":"CBI_author","value":"Valencia","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":374.45407,"y":589.46},"width":36.36801,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Wisconsin, Madison. Published: ","textAfter":" R, Mason","comments":null,"startOffset":241,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"575cdfbc9e35472e73661dbb5b88f9e7","type":"CBI_author","value":"Zimmering S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":577.91},"width":55.44136,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":274,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d500960d2c1eb9ed6d8428bccd38da67","type":"CBI_author","value":"Fahrig","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":475.08377,"y":678.26},"width":29.670898,"height":11.017679,"page":532}],"sectionNumber":5481,"textBefore":"2,4,6-TCP reported in ","textAfter":" et al.,","comments":null,"startOffset":204,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["c7bac5c8224e6a164d407bd0841c255d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78c386b327d15f9b3ef692c4ede84095","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":357.41995,"y":612.5},"width":51.54712,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":59,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1bb7ce78e1d7a2056860d8b6da8c7a26","type":"CBI_author","value":"Valencia R.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.61816,"y":612.5},"width":49.794052,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Report: K-CA 5.8.1/26 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5910da440aaf09002763e5e81da64fed","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (Practical)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":464.99},"width":82.55249,"height":11.017679,"page":532}],"sectionNumber":5482,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b01b3e5e91f03be3f77441c2b04af3b4","type":"CBI_author","value":"Mason","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":427.4612,"y":589.46},"width":28.16095,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Published: Valencia R, ","textAfter":" J, Woodruff","comments":null,"startOffset":253,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c31ef819862805ca6cc1addccd0fe6e","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":479.58142,"y":661.82},"width":44.37616,"height":11.017679,"page":533}],"sectionNumber":5486,"textBefore":"described previously (","textAfter":" et al,","comments":null,"startOffset":154,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a70d376d2e202d38908474d26be053e4","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":123.962875,"y":60.159973},"width":42.013626,"height":11.017679,"page":533}],"sectionNumber":5487,"textBefore":"as suggested by ","textAfter":" (Margolin et","comments":null,"startOffset":2856,"endOffset":2864,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bef5fc7b92ade374c32e235aaf278310","type":"CBI_author","value":"Zimmering","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":132.3643,"y":649.22},"width":50.43715,"height":11.017679,"page":533}],"sectionNumber":5486,"textBefore":null,"textAfter":null,"comments":null,"startOffset":179,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"232eeab0080a54d2bd96f78d366e3803","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.33553,"y":60.159973},"width":42.107758,"height":11.017679,"page":533}],"sectionNumber":5487,"textBefore":"by Margolin (","textAfter":" et al,","comments":null,"startOffset":2866,"endOffset":2874,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3eb373e4b054ea0b8eb5180b73bf0fb4","type":"PII","value":"189-202","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.97583,"y":282.33002},"width":37.77414,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 6:","textAfter":". Zimmering S,","comments":null,"startOffset":1009,"endOffset":1016,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78724Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2cee6ec7caa23a3f66ba1468eea9ee0d","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":345.57},"width":42.013596,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"test described. REFERENCES: ","textAfter":" B, Collings","comments":null,"startOffset":574,"endOffset":582,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd2975ec8742807320902cf690a7d06e","type":"PII","value":"3074 2817 2598","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":511.55},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78724Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0a710850d260d097fa8eed4247b8a95","type":"CBI_author","value":"Zimmering S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.09,"y":307.52997},"width":59.898407,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":780,"endOffset":791,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a7bf19fee5245c3fe118bd5357d5173","type":"CBI_author","value":"Knuutinen J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.7208,"y":178.5},"width":52.235474,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Hattula M. and ","textAfter":" (1985). Mutagenesis","comments":null,"startOffset":37,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1e7989c317dc0c7b927f409252c712d","type":"CBI_author","value":"Collings B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.65024,"y":345.57},"width":51.90544,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":586,"endOffset":596,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b73908a73e07eb873290fa045b1b0eed","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":344.20877,"y":178.5},"width":51.417603,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":58,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e82b829b01e1be9a0fa37957916fae5","type":"CBI_author","value":"Knuutinen J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.60693,"y":155.58002},"width":52.592896,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":257,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["NER"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ebfd8f7d7d8fa1a06630a41247b2f6ce","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":307.52997},"width":44.39824,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 5:705-716. ","textAfter":" R, Mason","comments":null,"startOffset":747,"endOffset":755,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa58bb718068ea42f9ac6b8d9aaa084c","type":"CBI_author","value":"Hattula","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":365.94666,"y":155.58002},"width":30.38205,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Jyväskylä, Finland. Published: ","textAfter":" M and","comments":null,"startOffset":243,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2c4b4209fa4fae9eb0af305146ce23e","type":"PII","value":"2549 2482 2320","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":557.15},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5490,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787241Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e426e46c620752c83226e20df28fb61","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":357.93},"width":74.9128,"height":10.929359,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":562,"endOffset":572,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89764e9479ca134a11a99da4e279e294","type":"CBI_author","value":"Valencia R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.05664,"y":307.52997},"width":50.8125,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":768,"endOffset":778,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65758a96e327cb59bef9ec2ad9c28904","type":"PII","value":"705-716","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.6917,"y":332.85},"width":37.818268,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 5:","textAfter":". Woodruff R,","comments":null,"startOffset":738,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787241Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5de4c3ddc64874b34bb04c165100395a","type":"CBI_author","value":"Zimmering S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":257.01},"width":59.666557,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1018,"endOffset":1029,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9557ae714f73eb8dd721d4ebb0a0bef5","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.30512,"y":307.52997},"width":31.084023,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"5:705-716. Woodruff R, ","textAfter":" J, Valencia","comments":null,"startOffset":759,"endOffset":764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40adb218f4a6918e82c68132e740a1d5","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":202.0161,"y":132.53998},"width":56.01906,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":374,"endOffset":385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a99176da42f127cc699bedd4a82c369","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":227.45984,"y":257.01},"width":44.37616,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"J, Valencia R, ","textAfter":" R (1985).","comments":null,"startOffset":1052,"endOffset":1060,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd7f2c3b616f41fa2874e269e29b5781","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":133.82,"y":144.06},"width":51.43744,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":277,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0023b9b975447edd5b37d813bf4a02b","type":"CBI_author","value":"Valencia R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.29944,"y":219.06},"width":50.20529,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1221,"endOffset":1231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97d1c22020342e52ef17a6676938751d","type":"PII","value":"1617-1625","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":274.88348,"y":132.53998},"width":44.44641,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"chloroguaiacols. Chemosphere 14: ","textAfter":". Syngenta File","comments":null,"startOffset":390,"endOffset":399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"78260989ca19695fea2f3ac47bbe992a","type":"CBI_author","value":"Hattula M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.1222,"y":178.5},"width":44.13675,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Report: K-CA 5.8.1/27 ","textAfter":" and Knuutinen","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"967ca87214da75681644522e02894014","type":"PII","value":"87-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":496.30896,"y":244.26001},"width":32.311096,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 7: ","textAfter":". (Valencia R","comments":null,"startOffset":1212,"endOffset":1218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0089965e28ef4c793e78081e32ae92b5","type":"PII","value":"3782 3574 3535","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":534.35},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5491,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ccde80c8000784953aca50f6c1c5491","type":"PII","value":"3520 3266 3226","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":580.07},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5489,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe6bee63fe7d91bc652a0422808c6f8f","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":187.49806,"y":345.57},"width":31.084015,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"B, Collings B, ","textAfter":" J (1983).","comments":null,"startOffset":598,"endOffset":603,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df621a3d409ddf82a993b4049fdf6703","type":"CBI_author","value":"Valencia R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.9507,"y":257.01},"width":50.680023,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1040,"endOffset":1050,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc74227644da5333149255feae409b63","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.39954,"y":132.53998},"width":37.94171,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Chemosphere 14: 1617-1625. ","textAfter":" File No.","comments":null,"startOffset":401,"endOffset":409,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efe91970a9c7028424e0f80ec1b658c8","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":128.62177,"y":257.01},"width":31.158234,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"6:189-202. Zimmering S, ","textAfter":" J, Valencia","comments":null,"startOffset":1031,"endOffset":1036,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ea6507a27ad4a33727c4a710d8af10e","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>99.95%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.47955,"y":753.5},"width":82.55249,"height":11.017679,"page":535}],"sectionNumber":5498,"textBefore":null,"textAfter":null,"comments":null,"startOffset":89,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"062954086eeb543479833c71fb833d63","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP showed mutagenic potential in V79 cells in\nvitro, when tested in the absence of metabolic activation.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":342.69},"width":28.467995,"height":10.018499,"page":535}],"sectionNumber":5500,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74472baabd8b929bd4408b77d3fc40b0","type":"PII","value":"12-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":505.76276,"y":349.41},"width":26.937256,"height":11.017679,"page":536}],"sectionNumber":5518,"textBefore":"dishes per point ","textAfter":" days after","comments":null,"startOffset":1149,"endOffset":1154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787243Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1829870364bd4a8a360b68b7ff738ee","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":266.82898,"y":299.49},"width":36.968292,"height":11.017679,"page":536}],"sectionNumber":5518,"textBefore":"months old male ","textAfter":"-Dawley rats were","comments":null,"startOffset":1325,"endOffset":1332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"198ca697ba499d4b14a4d09a1380928d","type":"CBI_author","value":"Hattula","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.09946,"y":487.31},"width":33.369263,"height":11.017679,"page":537}],"sectionNumber":5529,"textBefore":"metabolic activation. (","textAfter":" MI and","comments":null,"startOffset":775,"endOffset":782,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85d05c10b6d0d1c017f85e174e8ba1ef","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":245.56123,"y":400.29},"width":76.85545,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":null,"textAfter":null,"comments":null,"startOffset":395,"endOffset":412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"062043cc19f91bdab1a0027263c0f95d","type":"CBI_author","value":"Jansson K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.85721,"y":446.39},"width":46.069,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Report: K-CA 5.8.1/28 ","textAfter":" and Jansson","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76246fe6f136830c6db57c3b8a89fd1f","type":"CBI_author","value":"Knuutinen J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.01575,"y":487.31},"width":54.378357,"height":11.017679,"page":537}],"sectionNumber":5529,"textBefore":null,"textAfter":null,"comments":null,"startOffset":790,"endOffset":801,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b43b878e54ff5ef180c6c23bb672b719","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>99.5%).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":322.40997},"width":82.55249,"height":11.017679,"page":537}],"sectionNumber":5530,"textBefore":null,"textAfter":null,"comments":null,"startOffset":89,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1d34ff9f514340ab4223862360a563b","type":"PII","value":"165-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.7252,"y":400.29},"width":34.514893,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Mutation Research 171:","textAfter":". Syngenta File","comments":null,"startOffset":417,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787243Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3db822146ea305713921a2c206e4207","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":152.04681,"y":411.81},"width":32.015427,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Jansson K and ","textAfter":" V (1986).","comments":null,"startOffset":278,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15ce4a0b2e8a6de1ef0a12ee2cbaa996","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":480.32977,"y":423.35},"width":32.12506,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Jyväskylä Finland. Published: ","textAfter":" K and","comments":null,"startOffset":264,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b86ccb50830a072f6b5bd6f6c5466698","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.20016,"y":400.29},"width":38.04129,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Mutation Research 171:165-168. ","textAfter":" File No.","comments":null,"startOffset":426,"endOffset":434,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b74c356392b0a453e5a87999d8d9f27","type":"CBI_author","value":"Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.2127,"y":446.39},"width":46.06909,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Jansson K. and ","textAfter":" (1986). Inability","comments":null,"startOffset":37,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f07f46d0143746bb012257e4182cf658","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the study reported, 2,4,6-TCP did not increase the number of 6-thioguanine","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":612.74},"width":28.467995,"height":10.018499,"page":538}],"sectionNumber":5532,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dd8f640eec154cd246e6d5acebefa050","type":"CBI_author","value":"McMillan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":163.14384,"y":125.34003},"width":44.906082,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":"described previously (","textAfter":" and Fox,","comments":null,"startOffset":212,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"191686920b0407ad9428d4a042f79dfc","type":"CBI_author","value":"Fox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.704,"y":125.34003},"width":18.178253,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":"previously (McMillan and ","textAfter":", 1979). 1","comments":null,"startOffset":225,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"592b8c946f96073e4d21f292731bfee9","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":275.15247,"y":147.29999},"width":32.015533,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Jyväskylä Finland. Published: ","textAfter":" K and","comments":null,"startOffset":216,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"735b0c27029aaa6bede1d79cc9a7b429","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.43738,"y":223.5},"width":35.312256,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"(Jansson K and ","textAfter":" V, 1986)","comments":null,"startOffset":970,"endOffset":977,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f5fe490c30ed2394f8f8c1447df7712","type":"CBI_author","value":"Fox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":142.764,"y":274.05},"width":18.178253,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"McMillan S and ","textAfter":" M (1979).","comments":null,"startOffset":762,"endOffset":765,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"362be71e2ce94ad28fa6f48e1a76d0b5","type":"CBI_author","value":"Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":259.5375,"y":170.34003},"width":44.375885,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Jansson K. and ","textAfter":" (1992). Genotoxicity","comments":null,"startOffset":37,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d8f2fb5956957851028eafe3ac83dcf","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":327.40253,"y":135.89996},"width":78.04068,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":null,"textAfter":null,"comments":null,"startOffset":317,"endOffset":334,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24ef1526dab1040dc103f44e7196bd76","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.10907,"y":223.5},"width":35.42267,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"60:91- 107. (","textAfter":" K and","comments":null,"startOffset":956,"endOffset":963,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3441091bf1beae31a88ca881c758f54d","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":286.52997},"width":74.9128,"height":10.929359,"page":539}],"sectionNumber":5552,"textBefore":null,"textAfter":null,"comments":null,"startOffset":735,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"162ed5a9606df3d9f9126ee833f17f97","type":"CBI_author","value":"McMillan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":274.05},"width":45.115845,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"non mutagenic. REFERENCES: ","textAfter":" S and","comments":null,"startOffset":747,"endOffset":755,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76ef0edd7f734eefd2d58adc9a158de4","type":"CBI_author","value":"Jansson K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.36124,"y":170.34003},"width":44.266235,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Report: K-CA 5.8.1/29 ","textAfter":" and Jansson","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1498dcf6d27847fff225518e47adddf","type":"PII","value":"175-179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.96683,"y":135.89996},"width":34.772827,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Mutation Research 280:","textAfter":". Syngenta File","comments":null,"startOffset":339,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787244Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a727d769ba11ccb5f8d105b7a2141bf0","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":466.0045,"y":135.89996},"width":38.05127,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Mutation Research 280:175-179. ","textAfter":" File No.","comments":null,"startOffset":348,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ccd9b648ab8a770a10860de795edb49","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.97617,"y":147.29999},"width":32.015533,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Jansson K and ","textAfter":" V (1992).","comments":null,"startOffset":230,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c6820d1f1ca83845d18670aa0242209","type":"PII","value":"10-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":318.61572,"y":539.15},"width":26.734253,"height":11.017679,"page":540}],"sectionNumber":5553,"textBefore":"at concentrations of ","textAfter":" µg/mL. A","comments":null,"startOffset":769,"endOffset":774,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787245Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"32aebd147dfa8ab847985ca34095dbe4","type":"PII","value":"10-180","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":145.77791,"y":577.07},"width":32.002106,"height":11.017679,"page":540}],"sectionNumber":5553,"textBefore":"at concentrations of ","textAfter":" µg/mL. No","comments":null,"startOffset":540,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787245Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e206d4ca97ebb53833d740492bfa7a92","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":309.69},"width":28.467995,"height":10.018499,"page":540}],"sectionNumber":5554,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"096c8448a5b707fb3b77d964c39f5b75","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":753.5},"width":82.55249,"height":11.017679,"page":540}],"sectionNumber":5552,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1168,"endOffset":1185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf0ada07d56f2b9c91a052f54514395f","type":"CBI_author","value":"Countryman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.27945,"y":172.73999},"width":55.80252,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2701,"endOffset":2711,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b0197760daaeb27d9da9b53b5966bb5b","type":"PII","value":"23-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":185.34003},"width":26.559998,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"hyperdiploid cells with ","textAfter":" chromosomes were","comments":null,"startOffset":2546,"endOffset":2551,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787246Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c36cb3ee7f1606f5d9d5f5f272c72d0d","type":"CBI_author","value":"Leong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.3205,"y":134.82},"width":29.207184,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"as described by ","textAfter":" et al.","comments":null,"startOffset":2840,"endOffset":2845,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e96c4c6761134f24b801b7db8a79580e","type":"PII","value":"21-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":505.62677,"y":248.58002},"width":26.953247,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"(50 cells/slide) with ","textAfter":" chromosomes were","comments":null,"startOffset":2126,"endOffset":2131,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787246Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2373c91484eac02964b9aa4fd59a91dd","type":"CBI_author","value":"Heddle","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.56583,"y":172.73999},"width":32.7731,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"described (Countryman and ","textAfter":", 1976). Statistical","comments":null,"startOffset":2716,"endOffset":2722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09daa5b7e276da8e4234866b5e8ba73f","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.38287,"y":210.65997},"width":43.802063,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"as described (","textAfter":" et al.","comments":null,"startOffset":2397,"endOffset":2405,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cf4767c8ef9771297b255c23bf18115","type":"CBI_author","value":"Nakamura","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.15668,"y":112.5},"width":46.80493,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"C, Bloom A, ","textAfter":" F, Ahmed","comments":null,"startOffset":1973,"endOffset":1981,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8b7089451f3f45763a0f2739d772305","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":156.92831,"y":99.900024},"width":42.01361,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"S, Rimpo J, ","textAfter":" B, Resnick","comments":null,"startOffset":2010,"endOffset":2018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64b35fdbe60f227406058d5780afd90e","type":"CBI_author","value":"Rimpo J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.75088,"y":99.900024},"width":38.28208,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2001,"endOffset":2008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d01d0bc941ed0079e7a79503a4cf46a4","type":"CBI_author","value":"Bloom","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.5522,"y":112.5},"width":31.06189,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"B, Cannon C, ","textAfter":" A, Nakamura","comments":null,"startOffset":1964,"endOffset":1969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e58f7ba437fd6b645476405cf96b2d3","type":"PII","value":"24 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":438.95},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":353.59,"y":438.95},"width":10.053986,"height":10.0905,"page":542}],"sectionNumber":5577,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787246Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad72e5718b8d9c7fc040fb7ad4571e37","type":"CBI_author","value":"Duk S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.81392,"y":99.900024},"width":29.085754,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1994,"endOffset":1999,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"004694ae65cd63f7822858eb3b87412a","type":"CBI_author","value":"Ahmed","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.80405,"y":112.5},"width":33.369293,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"A, Nakamura F, ","textAfter":" M, Duk","comments":null,"startOffset":1985,"endOffset":1990,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5601f7a4b29228956edfedfd402ba2bf","type":"PII","value":"34 17 126","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":425.15},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":355.87,"y":425.15},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":458.5,"y":425.15},"width":14.619995,"height":10.0905,"page":542}],"sectionNumber":5578,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92b56a88de149852a022aef06bbfca7e","type":"CBI_author","value":"Resnick M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.12656,"y":99.900024},"width":49.311066,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2022,"endOffset":2031,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51fe23f39e8563f9b7f0b94a5f784cc7","type":"PII","value":"30 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":356.37},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":353.59,"y":356.37},"width":10.053986,"height":10.0905,"page":542}],"sectionNumber":5583,"textBefore":null,"textAfter":null,"comments":null,"startOffset":29,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11b4e8dfb1f80099b9a8a892f5257359","type":"CBI_author","value":"Cannon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.2162,"y":112.5},"width":35.30124,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"S, Brown B, ","textAfter":" C, Bloom","comments":null,"startOffset":1954,"endOffset":1960,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13ff897ab4d4b82660ac8e1d816d9478","type":"PII","value":"39 12 112","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":342.69},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":355.87,"y":342.69},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":458.5,"y":342.69},"width":14.619995,"height":10.0905,"page":542}],"sectionNumber":5584,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f7aeb1bac098c68e230c1c113a1304ef","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.21887,"y":112.5},"width":30.98462,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"C, Colman S, ","textAfter":" B, Cannon","comments":null,"startOffset":1945,"endOffset":1950,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb9da418ec6acadff47606c359b961e9","type":"CBI_author","value":"Colman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.60046,"y":112.5},"width":35.77597,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"M, Reuben C, ","textAfter":" S, Brown","comments":null,"startOffset":1935,"endOffset":1941,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a8d716dc2039ed06da51c1211734f2d","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.737434,"y":112.5},"width":48.72593,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"332 Galloway S, ","textAfter":" M, Reuben","comments":null,"startOffset":1912,"endOffset":1921,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa7fef5817be7c473d13fc67eeb45527","type":"CBI_author","value":"Countryman P,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":150.41998},"width":69.27134,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1736,"endOffset":1749,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66ca0d65efadd8c69beac999a9ba1b15","type":"CBI_author","value":"Reuben","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.8827,"y":112.5},"width":34.70514,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"S, Armstrong M, ","textAfter":" C, Colman","comments":null,"startOffset":1925,"endOffset":1931,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2c8c24cd9aae13cbb729eea3d87d51a","type":"CBI_author","value":"Heddle","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":157.18222,"y":150.41998},"width":32.662735,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"Countryman P, and ","textAfter":" J (1976).","comments":null,"startOffset":1754,"endOffset":1760,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9de50ccfc72eb157e9c30193e3138614","type":"CBI_author","value":"Zeiger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.53745,"y":99.900024},"width":29.604675,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"Anderson B and ","textAfter":" E (1987).","comments":null,"startOffset":2048,"endOffset":2054,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1485e49417ecf8ca2a7382ccb6119e96","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":162.89996},"width":74.9128,"height":10.929359,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1724,"endOffset":1734,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de84111641856703f870f4a443204942","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":112.5},"width":43.912476,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"Res. 41:321- 332 ","textAfter":" S, Armstrong","comments":null,"startOffset":1900,"endOffset":1908,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0ccf6c08ea96f1b42811696cdbbd721","type":"CBI_author","value":"Thilly W","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.59807,"y":753.5},"width":43.66957,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2237,"endOffset":2245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2832e4df21d48ef378c2e514ded7ee8c","type":"CBI_author","value":"North","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":414.7917,"y":640.58},"width":24.425964,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Research Triangle Park, ","textAfter":" Carolina. Accepted:","comments":null,"startOffset":342,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19067f519f58e7a8f109c51159254cd3","type":"CBI_author","value":"Leong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":29.207184,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":"(Suppl. 10), 1-175. ","textAfter":" P, Thilly","comments":null,"startOffset":2228,"endOffset":2233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a9af205a382218650084918071918e0","type":"CBI_author","value":"McBride","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":448.03067,"y":629.06},"width":36.577118,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"P, Edwards I, ","textAfter":" D, Riach","comments":null,"startOffset":439,"endOffset":446,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1872adf698d0200c443d1d2ff823637","type":"CBI_author","value":"McGregor D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.36124,"y":675.02},"width":54.90352,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Report: K-CA 5.8.1/30 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27631cd50e9d6f42365cf69b367504eb","type":"CBI_author","value":"Morgenthaler S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.66428,"y":753.5},"width":72.36258,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2250,"endOffset":2264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0749f597cf59ae3270b6fc0f0be8406c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.43916,"y":594.62},"width":37.931686,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Mutagenesis l2:85- 154. ","textAfter":" File No.","comments":null,"startOffset":633,"endOffset":641,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"badc12ee5c851f57b9975ded93a2be94","type":"CBI_author","value":"Riach","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":498.8366,"y":629.06},"width":24.336304,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"I, McBride D, ","textAfter":" C, Caspary","comments":null,"startOffset":450,"endOffset":455,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21715811de5b8894dee64ee5d59e7b7a","type":"CBI_author","value":"Brown A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.28143,"y":629.06},"width":38.270355,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Published: McGregor D, ","textAfter":", Cattanach P,","comments":null,"startOffset":406,"endOffset":413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"afb724de5d69071ca69be8f98cd93dc4","type":"PII","value":"10-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.54701,"y":130.85999},"width":26.742966,"height":11.017679,"page":543}],"sectionNumber":5589,"textBefore":"RTG range of ","textAfter":"% was achieved,","comments":null,"startOffset":1194,"endOffset":1199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787249Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b16220003df1172460e85ae6d91f43dd","type":"CBI_author","value":"Cattanach","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":347.82062,"y":629.06},"width":40.889862,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"D, Brown A, ","textAfter":" P, Edwards","comments":null,"startOffset":415,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18af6cb381a22d8c9f7abc6f9feca37e","type":"CBI_author","value":"Caspary","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":148.20226,"y":617.54},"width":33.917816,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"D, Riach C, ","textAfter":" W (1988).","comments":null,"startOffset":459,"endOffset":466,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d2bf7b231360117a2d7b38b2236cc8d","type":"CBI_author","value":"McGregor","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":248.47952,"y":629.06},"width":42.56311,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"March 1988. Published: ","textAfter":" D, Brown","comments":null,"startOffset":394,"endOffset":402,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26641d57bbddb5844fa2e652bf1b5baf","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":443.5065,"y":606.14},"width":51.53711,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":null,"textAfter":null,"comments":null,"startOffset":609,"endOffset":620,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21f67f43eddb3ecccba5e92ed6e2eb68","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.03041,"y":640.58},"width":90.26152,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":null,"textAfter":null,"comments":null,"startOffset":287,"endOffset":307,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99c934942ce9e22cd0c7d64288208959","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":516.59},"width":82.55249,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2617,"endOffset":2634,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6939adafc0f95a87e81f91e7dcf70a2","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.10907,"y":715.58},"width":35.42267,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":"150:403- 410. (","textAfter":" K and","comments":null,"startOffset":2432,"endOffset":2439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"922d55e9d9965e971e7f003d000a44af","type":"CBI_author","value":"Edwards","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.79626,"y":629.06},"width":35.90988,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"A, Cattanach P, ","textAfter":" I, McBride","comments":null,"startOffset":428,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1aef7987508cc5fa3228ba0efcad89d2","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.43738,"y":715.58},"width":35.312256,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":"(Jansson K and ","textAfter":" V, 1992)","comments":null,"startOffset":2446,"endOffset":2453,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"212d79d62ce1e958d980b72e2a2f1b34","type":"PII","value":"11-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":215.60594,"y":551.15},"width":26.644073,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"were incubated for ","textAfter":" days in","comments":null,"startOffset":1490,"endOffset":1495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78725Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1f9a319a66a068ad4c3ae9d06e0782b7","type":"CBI_address","value":"Artek 880 Automated Colony","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.94049,"y":525.83},"width":146.14279,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1559,"endOffset":1585,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c25a1959061b1d3d5a8dc4213765f464","type":"CBI_author","value":"Caspary","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":424.55},"width":37.22223,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"system (Lee and ","textAfter":", 1983) and","comments":null,"startOffset":2016,"endOffset":2023,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36cf1533d4f99661276c077097118414","type":"CBI_author","value":"Noble","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.28134,"y":639.62},"width":27.849274,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"F20p) containing 0.35% ","textAfter":" agar and","comments":null,"startOffset":1098,"endOffset":1103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00be8c95b5b127dba4ce20fda24f6804","type":"CBI_author","value":"Noble","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.16144,"y":576.35},"width":27.970703,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"concentrations of 0.35% ","textAfter":" agar and","comments":null,"startOffset":1334,"endOffset":1339,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c49bf81f6cfeb6c0961a799d8aa6806","type":"CBI_author","value":"Lee","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.71454,"y":437.27},"width":17.54898,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"this system (","textAfter":" and Caspary,","comments":null,"startOffset":2008,"endOffset":2011,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb4fbd6e79ab561114d0e3d7b42d0139","type":"CBI_author","value":"Caspary","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":102.22512,"y":72.27997},"width":37.100807,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":"REFERENCES: Lee YJ, ","textAfter":" WJ (1983).","comments":null,"startOffset":2183,"endOffset":2190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b5c3ae716f32c7ab5e83fde3929a36ff"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5c3ae716f32c7ab5e83fde3929a36ff","type":"published_information","value":"Mutat Res","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":64.104,"y":59.679993},"width":46.562096,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2270,"endOffset":2279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e97732d7be230d873a6acdcbbc04146","type":"PII","value":"417-430","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":132.0,"y":59.679993},"width":37.62001,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":"Mutat Res 113:","textAfter":". (McGregor D.","comments":null,"startOffset":2284,"endOffset":2291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78725Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"832830c802584ec06f1c2fc0ebe1d28b","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":84.784},"width":74.9128,"height":10.929359,"page":546}],"sectionNumber":5619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2163,"endOffset":2173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"055933f0f876b36e82a23a95cab3b073","type":"CBI_author","value":"Lee","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":72.27997},"width":17.548958,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":"lymphoma assay. REFERENCES: ","textAfter":" YJ, Caspary","comments":null,"startOffset":2175,"endOffset":2178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b5c3ae716f32c7ab5e83fde3929a36ff"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88f60344c794abd53b0bf5ceb51c886a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":586.79},"width":82.55249,"height":11.017679,"page":547}],"sectionNumber":5619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2477,"endOffset":2494,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b6373e7ef1431045619ab2d5b0d8e34","type":"CBI_author","value":"Armstrong M.J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.5264,"y":711.86},"width":70.25186,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["RULE"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8abbd7e0492480ba6fe49551ce265926","type":"CBI_address","value":"Merck Research Laboratories","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":348.0462,"y":700.34},"width":122.74991,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Aneuploidy In Vitro. ","textAfter":", WP45-305, West","comments":null,"startOffset":135,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30b0f8847e96eb18a50acee44881cac6","type":"CBI_address","value":"West Point, PA 19486","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":688.82},"width":92.15393,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Research Laboratories, WP45-305, ","textAfter":", USA. Accepted","comments":null,"startOffset":174,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"49a183179893e812954432b9b9d82a67","type":"PII","value":"101-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.73409,"y":665.9},"width":34.51555,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Mutation Research 303:","textAfter":". Syngenta File","comments":null,"startOffset":380,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787251Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74749db8c5eb3c97e06a3a0bd3eb745d","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.03818,"y":688.82},"width":39.80426,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Published: Armstrong MJ, ","textAfter":" SM, Ashby","comments":null,"startOffset":248,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3b52c401641d6c94e8fdfa23aaaf5cd","type":"CBI_author","value":"McGregor D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":419.21945,"y":753.5},"width":60.25168,"height":11.017679,"page":547}],"sectionNumber":5619,"textBefore":"Res 113:417-430. (","textAfter":" et al,","comments":null,"startOffset":2294,"endOffset":2305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b5c3ae716f32c7ab5e83fde3929a36ff"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68b5e78eab3db9e3e295885dfaad5790","type":"CBI_author","value":"Armstrong","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.31802,"y":688.82},"width":44.22647,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"July 1993. Published: ","textAfter":" MJ, Galloway","comments":null,"startOffset":234,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85a74e87db31898516fd0738724287ac","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":294.71964,"y":665.9},"width":38.023926,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Mutation Research 303:101-108. ","textAfter":" File No.","comments":null,"startOffset":389,"endOffset":397,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da5b017913a8101f5c31aa22ab476d20","type":"CBI_author","value":"Ashby J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":677.42},"width":34.00743,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"MJ, Galloway SM, ","textAfter":" (1993). 2,4,6-Trichlorophenol","comments":null,"startOffset":261,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96f22ede2d2174a7c262af5c96e14693","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":157.67984,"y":665.9},"width":76.745804,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":null,"textAfter":null,"comments":null,"startOffset":358,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0861099c9f1cb41150a92c6342a70520","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.1784,"y":509.63},"width":37.089752,"height":11.017679,"page":548}],"sectionNumber":5629,"textBefore":"prepared from male ","textAfter":"-Dawley rats induced","comments":null,"startOffset":289,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5eb915e8bdd152567f6f155ba5522ec1","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":471.55936,"y":66.03998},"width":35.279144,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"of Jansson (","textAfter":" et al,","comments":null,"startOffset":652,"endOffset":659,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f7bd0818908662adbd3ef633f0cfa05","type":"PII","value":"19-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":141.29999},"width":26.559998,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"metaphase cells containing ","textAfter":" chromosomes were","comments":null,"startOffset":122,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787252Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d34ef040033cdbaf543bd9667848f930","type":"PII","value":"23-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.73776,"y":53.440002},"width":26.59224,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"metaphase cells with ","textAfter":" chromosomes were","comments":null,"startOffset":701,"endOffset":706,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787252Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"392598428666f340f3de36cabf72d7fe","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.88135,"y":66.03998},"width":35.733826,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"the criteria of ","textAfter":" (Jansson et","comments":null,"startOffset":643,"endOffset":650,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f56c2f81211d3ea243483138920935c5","type":"CBI_author","value":"Jansson K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":141.41998},"width":49.807846,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"in vitro. REFERENCES: ","textAfter":", and Jansson","comments":null,"startOffset":2426,"endOffset":2436,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3050da5a2a653bf5765f18b4eba339de","type":"PII","value":"175 179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":151.33105,"y":128.82},"width":36.63713,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"Mutation Res. 280, ","textAfter":". (Armstrong M.","comments":null,"startOffset":2547,"endOffset":2554,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787252Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f66d9df6649ef14919c29a8df510f2dc","type":"PII","value":"300-600","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":270.22086,"y":554.39},"width":37.789124,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"the dose range ","textAfter":" µg/ml were","comments":null,"startOffset":416,"endOffset":423,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787253Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0afbd134082b619a4d67c509f1027549","type":"CBI_author","value":"Armstrong M. J.","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.77945,"y":116.099976},"width":73.78674,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2557,"endOffset":2572,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89bb56f0d4db1a7c43fd9f9a4c633aed","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":153.77997},"width":74.9128,"height":10.929359,"page":550}],"sectionNumber":5670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2414,"endOffset":2424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4eb0eb0dbd02a87256ca649f7a0d0611","type":"PII","value":"150-250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.55048,"y":228.65997},"width":37.949493,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"tetraploid cells at ","textAfter":" µg/mL 2,4,6-TCP","comments":null,"startOffset":2243,"endOffset":2250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787253Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82aa046c98d90858d92d82fad70f6dcc","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.81169,"y":141.41998},"width":35.422714,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"Jansson K., and ","textAfter":" V (1992).","comments":null,"startOffset":2442,"endOffset":2449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a1215750d3cce3aac00cd0d78c66cfa5","type":"CBI_author","value":"Cannon","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.9872,"y":716.42},"width":32.115112,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"S, Brown B, ","textAfter":" C, Bloom","comments":null,"startOffset":313,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d26ae7d1f645d0df1cc9c924365b9bf1","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.6595,"y":404.73},"width":32.190506,"height":11.017679,"page":551}],"sectionNumber":5671,"textBefore":"concentration range of ","textAfter":" µg/mL both","comments":null,"startOffset":419,"endOffset":425,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787253Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8a9e2264be39f56b9314b54ee0f62e64","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":338.24695,"y":681.98},"width":51.44748,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":565,"endOffset":576,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d037cd1ba4b84037dd84820811a87c8","type":"CBI_author","value":"Armstrong","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":716.42},"width":44.21643,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Published: Galloway S, ","textAfter":" M, Reuben","comments":null,"startOffset":271,"endOffset":280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aad203802c66f8109f0807557d3f6a72","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.3156,"y":580.55},"width":82.530426,"height":11.017679,"page":551}],"sectionNumber":5670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2771,"endOffset":2788,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"496f72d970bc12170746aa6cd075c640","type":"CBI_author","value":"Colman","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":241.5763,"y":716.42},"width":32.58316,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"M, Reuben C, ","textAfter":" S, Brown","comments":null,"startOffset":294,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2d73c9d70949cb4c4ba1c6fac87c2de","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":471.22513,"y":727.94},"width":39.923767,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Kensington, Maryland. Published: ","textAfter":" S, Armstrong","comments":null,"startOffset":259,"endOffset":267,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"143a2fde0ccd355b6ffc21765d072597","type":"CBI_author","value":"Reuben","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":195.06409,"y":716.42},"width":31.645905,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"S, Armstrong M, ","textAfter":" C, Colman","comments":null,"startOffset":284,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c63616686e259ce8705cb95719d0189","type":"CBI_author","value":"Ahmed","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":477.9371,"y":716.42},"width":30.312286,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"A, Nakamura F, ","textAfter":" M, Duk","comments":null,"startOffset":344,"endOffset":349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e625e9f3e09ee5729ca8237c2d09cd87","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.32175,"y":681.98},"width":38.05127,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Molecular Mutagenesis 10:1-175. ","textAfter":" File no.","comments":null,"startOffset":587,"endOffset":595,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d87edc276a023976c5fa2a875b3beef4","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":274.26596,"y":705.02},"width":47.75226,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":381,"endOffset":390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["NER"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c3b2980661f7f8dae0a387020d7b242","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":389.35385,"y":705.02},"width":26.856201,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"M, Anderson B, ","textAfter":" E (1987).","comments":null,"startOffset":404,"endOffset":410,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b255b0865da8a050c393832140aa1694","type":"CBI_author","value":"Rimpo J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":170.7517,"y":705.02},"width":37.9516,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":360,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["NER"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3394949eefa0777a25a086c39f54bfc","type":"CBI_author","value":"Bloom","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":377.9686,"y":716.42},"width":28.280457,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"B, Cannon C, ","textAfter":" A, Nakamura","comments":null,"startOffset":323,"endOffset":328,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19843e1f9fb4d43c9b314d5b4f9a2f78","type":"PII","value":"16-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.12503,"y":366.81},"width":32.10495,"height":11.017679,"page":551}],"sectionNumber":5671,"textBefore":"µg/mL (–S9) and ","textAfter":" µg/mL (+S9),","comments":null,"startOffset":629,"endOffset":635,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787254Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40b2b2fe74bdb99b843815a66e8c0efd","type":"CBI_author","value":"Galloway S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.92291,"y":750.98},"width":52.562912,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Report: K-CA 5.8.1/32 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2bcaeeabf980fe2d50cc654abe147a5","type":"CBI_author","value":"Duk S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":705.02},"width":29.555313,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":353,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["NER"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22e484d101f5fe15be2f7bfaae857f0b","type":"CBI_author","value":"Nakamura","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.46393,"y":716.42},"width":42.592987,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"C, Bloom A, ","textAfter":" F, Ahmed","comments":null,"startOffset":332,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4316d8e673d7a06127f7730622725de","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.15933,"y":705.02},"width":38.12091,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"S, Rimpo J, ","textAfter":" B, Resnick","comments":null,"startOffset":369,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b1e58deafebe606f7d98052c471fa94","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":287.9799,"y":716.42},"width":28.151001,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"C, Colman S, ","textAfter":" B, Cannon","comments":null,"startOffset":304,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1865b55e74b8149433c16dede0001aa8","type":"PII","value":"16-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test compound concentrations used:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.55,"y":63.400024},"width":26.520996,"height":10.0905,"page":552}],"sectionNumber":5697,"textBefore":null,"textAfter":null,"comments":null,"startOffset":50,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787255Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"35b7e89069c2a730e09f84e7375ce6be","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.1926,"y":547.55},"width":36.97934,"height":11.017679,"page":552}],"sectionNumber":5680,"textBefore":"homogenate (from male ","textAfter":"-Dawley rats, induced","comments":null,"startOffset":100,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a467f881d5d9de97d58d4173bf81109a","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test compound concentrations used:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.55,"y":107.94},"width":26.520996,"height":10.0905,"page":552}],"sectionNumber":5694,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787255Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b904a5cd3862791c2c870747316411a9","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test compound concentrations used:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.55,"y":93.064026},"width":26.520996,"height":10.0905,"page":552}],"sectionNumber":5695,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787256Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2058eaf89c56f4934b6ef0c8ef2d19d6","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.09938,"y":71.67999},"width":43.802048,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"in detail (","textAfter":" et al.,","comments":null,"startOffset":3486,"endOffset":3494,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f1d3dbe80e6c9227e257c0cebf5633d","type":"PII","value":"(20-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.39566,"y":398.49},"width":30.464325,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"give a small ","textAfter":" %) increase","comments":null,"startOffset":1838,"endOffset":1844,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787256Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a36afec433928e0915b351c9ac4cc9b3","type":"CBI_author","value":"Wolff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":461.75},"width":27.341446,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"Wolff (Perry and ","textAfter":", 1974) as","comments":null,"startOffset":1250,"endOffset":1255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c24bd775dc784222109439a43ad475b","type":"CBI_author","value":"Goto","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.45169,"y":461.75},"width":23.15158,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"et a1 (","textAfter":" et a1.,","comments":null,"startOffset":1289,"endOffset":1293,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efd25d4403a86303e3bbad7fe4823bfd","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":490.3253,"y":385.89},"width":41.90323,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"in SCEs (","textAfter":" and Resnick,","comments":null,"startOffset":1953,"endOffset":1961,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc4c209ce40da2200922a0a73f549c4d","type":"PII","value":"25-26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":471.6373,"y":600.98},"width":26.86267,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"with BrdUrd was ","textAfter":" h, with","comments":null,"startOffset":335,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787256Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19ce0c0636f68203c4788ea51d56a757","type":"CBI_author","value":"Perry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":487.6425,"y":474.47},"width":24.857452,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"and Wolff (","textAfter":" and Wolff,","comments":null,"startOffset":1240,"endOffset":1245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f5b126ae9b70922c395ed19b6ae86a6d","type":"CBI_author","value":"Wolff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.71658,"y":474.47},"width":27.231018,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"of Perry and ","textAfter":" (Perry and","comments":null,"startOffset":1233,"endOffset":1238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69343124b5aeb1c9f6f29037d92006fe","type":"CBI_author","value":"Goto","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":191.30688,"y":461.75},"width":23.06897,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"as adapted by ","textAfter":" et a1","comments":null,"startOffset":1277,"endOffset":1281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e5c3bfb2c0319f1ca4b9b8fda4b06b9","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":372.93683,"y":71.67999},"width":41.9032,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"al., 1985 and ","textAfter":" et al.,","comments":null,"startOffset":3512,"endOffset":3520,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0eb50bdfbc464a99d2713751c678ee40","type":"CBI_author","value":"Perry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.99066,"y":474.47},"width":24.74704,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"the method of ","textAfter":" and Wolff","comments":null,"startOffset":1223,"endOffset":1228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"458df3e9900db3e170bf65af0d06af4d","type":"CBI_author","value":"Resnick","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.17007,"y":373.29},"width":36.48256,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1966,"endOffset":1973,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"662a198061c3b779be9f6f9a1653e490","type":"CBI_author","value":"Rimpo J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.09373,"y":108.29999},"width":38.160645,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1670,"endOffset":1677,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e472a0ae0ac8faf045e4c5dc047e6212","type":"CBI_author","value":"Wolff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":118.52015,"y":184.26001},"width":27.231026,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Perry P and ","textAfter":" S (1974).","comments":null,"startOffset":1383,"endOffset":1388,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4bb3433fcb7322399aedbbb16001715","type":"PII","value":"156-158","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.77727,"y":171.53998},"width":37.48272,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"chromatids. Nature 251:","textAfter":". Margolin B","comments":null,"startOffset":1480,"endOffset":1487,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787257Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0557bd2d945ab441ff5af9797b8dd6d3","type":"CBI_author","value":"Archer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.37053,"y":108.29999},"width":31.525604,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"M, Rimpo J, ","textAfter":" P, Galloway","comments":null,"startOffset":1679,"endOffset":1685,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd1fcc4169a7c6778bad4b23ede3921","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":108.29999},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Mutagen 7(suppl 3):48. ","textAfter":" B, Resnick","comments":null,"startOffset":1647,"endOffset":1655,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4619de2c80b55de0635824ff182329d6","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":112.42608,"y":601.7},"width":42.01362,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"by Margolin (","textAfter":" et al.","comments":null,"startOffset":4307,"endOffset":4315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad3ba778ebce36aaefefe355c4311d13","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":265.35226,"y":108.29999},"width":43.802063,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"J, Archer P, ","textAfter":" S, Bloom","comments":null,"startOffset":1689,"endOffset":1697,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dac294b23191e4b35a4e536dfa2361ac","type":"PII","value":"705-715","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.85968,"y":57.76001},"width":37.6503,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Environ Mutagen 5:","textAfter":". Goto K,","comments":null,"startOffset":2006,"endOffset":2013,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787257Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db653f8d21803e5478c490c659dda067","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.84287,"y":690.26},"width":42.36689,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"was used (","textAfter":", 1955). For","comments":null,"startOffset":3800,"endOffset":3808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1307ad8af2b82ea73a561ca2317bf3c8","type":"published_information","value":"Nature","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":501.647,"y":184.26001},"width":30.841034,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1469,"endOffset":1475,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce96038d7be02fadfa3fe6d12e25a5e2","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":70.359985},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Environ Mutagen 8:183-204. ","textAfter":" B, Collings","comments":null,"startOffset":1842,"endOffset":1850,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4af72fb5a2c93a7bfc3d6d32bfcf0925","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":370.38684,"y":108.29999},"width":29.604675,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"S, Bloom A, ","textAfter":" E (1986).","comments":null,"startOffset":1710,"endOffset":1716,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79973a9600c7f1998d68616921e6dd6b","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":137.95055,"y":146.34003},"width":49.43248,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1504,"endOffset":1513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8898827bd1e8e13f63c6946380e990d","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.64447,"y":108.29999},"width":49.43248,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1659,"endOffset":1668,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f824e0a2d11c893e6205a5b7dd9b828","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":298.45013,"y":677.66},"width":43.69168,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"considered significant (","textAfter":" et al,","comments":null,"startOffset":3950,"endOffset":3958,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1771e9b5240edda984e899f60668c406","type":"PII","value":"183-204","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.09625,"y":95.70398},"width":37.883728,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Environ Mutagen 8:","textAfter":". Margolin B,","comments":null,"startOffset":1833,"endOffset":1840,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787258Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31d06d5dbec0469a66e63b810fc525a6","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":601.7},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"that described by ","textAfter":" (Margolin et","comments":null,"startOffset":4297,"endOffset":4305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0450366535031dd9113889f29b737ae0","type":"CBI_author","value":"Bloom","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.38956,"y":108.29999},"width":31.06189,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"P, Galloway S, ","textAfter":" A, Zeiger","comments":null,"startOffset":1701,"endOffset":1706,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12238df64fbcf2fc3aff0448b28e66e3","type":"PII","value":"16-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":307.21976,"y":374.01},"width":32.13022,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"µg/mL (-S9) and ","textAfter":" µg/mL (+S9),","comments":null,"startOffset":623,"endOffset":629,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787258Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a3bede982dd8117b53602f5679a0b07","type":"CBI_author","value":"Collings B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":128.136,"y":70.359985},"width":52.137283,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1854,"endOffset":1864,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"093dd81f3a4fb5a559f37a206b80b024","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.14737,"y":424.55},"width":32.14264,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"concentration range of ","textAfter":" µg/mL, 2,4,6-TCP","comments":null,"startOffset":422,"endOffset":428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787258Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a38afefa5c70dc4d269c93f3c5da58a","type":"CBI_author","value":"Mason","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":188.33711,"y":70.359985},"width":31.084015,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"B, Collings B, ","textAfter":" J (1983).","comments":null,"startOffset":1866,"endOffset":1871,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deaf8b5d71ddb12bfe3088e9866128eb","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":196.62},"width":74.9128,"height":10.929359,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1359,"endOffset":1369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2845b71c66f36bb1be8cdd8347237354","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":146.34003},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"chromatids. Nature 251:156-158. ","textAfter":" B and","comments":null,"startOffset":1489,"endOffset":1497,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"498b043abea701723ec86da9c57a0c4e","type":"CBI_author","value":"Perry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":184.26001},"width":24.978882,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"assays described. REFERENCES: ","textAfter":" P and","comments":null,"startOffset":1371,"endOffset":1376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfce3c67f1966d27f48b2f1ee8e7e191","type":"CBI_author","value":"Archer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":338.90363,"y":702.86},"width":31.647064,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"B, Nakamura F, ","textAfter":" P, Zeiger","comments":null,"startOffset":2209,"endOffset":2215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99690ebeab61b21177a6a432caa39282","type":"CBI_author","value":"Sugiyama","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":188.31505,"y":740.9},"width":44.884018,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"S, Kano Y, ","textAfter":" T (1978).","comments":null,"startOffset":2040,"endOffset":2048,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6902695dd1479512bb6523e9de7a639b","type":"CBI_author","value":"Bloom","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.53407,"y":702.86},"width":31.061935,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"66:351-359. Galloway S, ","textAfter":" A, Resnick","comments":null,"startOffset":2165,"endOffset":2170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed780567fdafae07c859eb0370c40fff","type":"CBI_author","value":"Goto","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":740.9},"width":23.068954,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"Environ Mutagen 5:705-715. ","textAfter":" K, Maeda","comments":null,"startOffset":2015,"endOffset":2019,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a1f6fa723289bed93daa51004ba660e","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":384.2008,"y":702.86},"width":29.604675,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"F, Archer P, ","textAfter":" E (1985).","comments":null,"startOffset":2219,"endOffset":2225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"acdf8b90b1c113d559005dec1bb8b5af","type":"CBI_author","value":"Hayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.75,"y":588.86},"width":33.628998,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Published: Matsuoka A, ","textAfter":" M, Sofuni","comments":null,"startOffset":255,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d022336e8a43e3c2d486765595df3619","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99.9%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":475.91},"width":82.55249,"height":11.017679,"page":555}],"sectionNumber":5711,"textBefore":null,"textAfter":null,"comments":null,"startOffset":87,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4e02db8ccb4cccf15d72a28342a9a1e","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.80722,"y":588.86},"width":40.312195,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"July 1998. Published: ","textAfter":" A, Hayashi","comments":null,"startOffset":243,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5162fb837bb29bea604874e05affb907","type":"CBI_author","value":"Sofuni","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.18344,"y":588.86},"width":27.61316,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"A, Hayashi M, ","textAfter":" T (1998).","comments":null,"startOffset":266,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f872785aac68131360f8f4a0abf8b381","type":"CBI_author","value":"Kano","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":147.7872,"y":740.9},"width":24.8685,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"K, Maeda S, ","textAfter":" Y, Sugiyama","comments":null,"startOffset":2032,"endOffset":2036,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0fba0c904198e024bed8222c91b1ef6d","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.25943,"y":652.34},"width":43.802063,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"Mutagen 7:1-51. (","textAfter":" S, et","comments":null,"startOffset":2423,"endOffset":2431,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e39042248cbe6c3ef8e2284cc221f5b5","type":"PII","value":"159-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.19604,"y":565.79},"width":34.57361,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Mutagen Res., 20:","textAfter":". Syngenta File","comments":null,"startOffset":423,"endOffset":430,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27ad204f0d66ef01f3c0e92956a233ba","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.66685,"y":702.86},"width":41.903183,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"A, Resnick M, ","textAfter":" B, Nakamura","comments":null,"startOffset":2185,"endOffset":2193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"908d4a8ff109f3c2f17193139b6dbca5","type":"CBI_author","value":"Maeda","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":102.94272,"y":740.9},"width":30.96257,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"5:705-715. Goto K, ","textAfter":" S, Kano","comments":null,"startOffset":2023,"endOffset":2028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4e8b0390284230483444aa47c12e425","type":"CBI_author","value":"Nakamura","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.57,"y":702.86},"width":46.69455,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"M, Margolin B, ","textAfter":" F, Archer","comments":null,"startOffset":2197,"endOffset":2205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"224e5fd0a5a9996a6acc27603d463531","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":43.912476,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"chromatids. Chromosoma 66:351-359. ","textAfter":" S, Bloom","comments":null,"startOffset":2153,"endOffset":2161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1269e087afe2051ddb78c9c87f771604","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.23965,"y":565.79},"width":37.94171,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Mutagen Res., 20:159-165. ","textAfter":" File No.","comments":null,"startOffset":432,"endOffset":440,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0074ad008669255860840087e7ef434f","type":"PII","value":"351-359","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":194.6189,"y":728.18},"width":37.671112,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"chromatids. Chromosoma 66:","textAfter":". Galloway S,","comments":null,"startOffset":2144,"endOffset":2151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8724116bf2427f8fcae6eb4bcea9cd7","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":167.82478,"y":702.86},"width":49.189606,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2174,"endOffset":2183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82b0f3e1dcaf7e090e3dec896de288da","type":"CBI_author","value":"Matsuoka A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.55646,"y":611.78},"width":53.14061,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Report: K-CA 5.8.1/33 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ee7c2751cf7e9fd72a577cd2cf34151","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":211.5},"width":44.40928,"height":11.017679,"page":555}],"sectionNumber":5712,"textBefore":"control data (","textAfter":", 1991). In","comments":null,"startOffset":867,"endOffset":875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e97cf5d623629339450e8d5aec5cd45f","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":663.26},"width":28.467995,"height":10.018499,"page":556}],"sectionNumber":5713,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e85f32e0c478b1216002ced644c4a172","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":485.05917,"y":197.70001},"width":44.276764,"height":11.017679,"page":557}],"sectionNumber":5748,"textBefore":"control data (","textAfter":", 1991). Positive","comments":null,"startOffset":903,"endOffset":911,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fff5305e78de92ef46518a0422b6c1de","type":"CBI_author","value":"Juhl U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.1222,"y":534.71},"width":29.754517,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Report: K-CA 5.8.1/34 ","textAfter":" (1989). The","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf46c04d250372297b8831881945aece","type":"PII","value":"333-344","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":486.4427,"y":500.27},"width":34.536926,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Chem-Biol Interactions 69:","textAfter":". Syngenta File","comments":null,"startOffset":362,"endOffset":369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787261Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59c153ee040b5ac8dc5226cab3959323","type":"CBI_author","value":"Miyata N","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.15535,"y":601.7},"width":44.696335,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":550,"endOffset":558,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0875047072c90121ba1f63d2de7814a1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":488.75},"width":38.051224,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Chem-Biol Interactions 69:333-344. ","textAfter":" File No.","comments":null,"startOffset":371,"endOffset":379,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"503a4887fc036977bace1a16ca374a1b","type":"PII","value":"103-110","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.58377,"y":589.1},"width":37.83618,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":"Mutat. Res., 259, ","textAfter":". (Matsuoka A","comments":null,"startOffset":713,"endOffset":720,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787261Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d133e07ecfb27064654364e4a1de5f7f","type":"CBI_author","value":"Juhl","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":227.42409,"y":511.78998},"width":17.563477,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Oldenburg (F.R.G.). Published: ","textAfter":" U, Blum","comments":null,"startOffset":211,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c39d6b16092867aca94f27cb8379312","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":614.18},"width":74.9128,"height":10.929359,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":516,"endOffset":526,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e79aaca42f38a344166ba7618d8f3be","type":"CBI_author","value":"Ishidate","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.10495,"y":601.7},"width":35.764954,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":"T, Miyata N, ","textAfter":" M (1991).","comments":null,"startOffset":560,"endOffset":568,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41a5e79ecc66d26ec5cd2c40192786bc","type":"CBI_author","value":"Witte","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.1778,"y":511.78998},"width":23.200897,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"U, Blum K, ","textAfter":" I (1989).","comments":null,"startOffset":227,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ff25d4e132141f3eef6a4b8fef76bd3","type":"CBI_author","value":"Sofuni","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.30801,"y":601.7},"width":30.344322,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":"REFERENCES: Matsuoka A, ","textAfter":" T, Miyata","comments":null,"startOffset":540,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b32f8f0bcd8b354af1aa5ddade63060","type":"CBI_author","value":"Matsuoka A","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":601.7},"width":56.95072,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":528,"endOffset":538,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"152c30b8fe92170a97dec61aba08bf7c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":409.65},"width":82.55249,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":943,"endOffset":960,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b353ddb6f88d9df2e0003a8f37a266b","type":"CBI_author","value":"Matsuoka A","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.37946,"y":563.75},"width":55.140167,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":723,"endOffset":733,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"050307704afea9aeae75c9e323f8764b","type":"CBI_author","value":"Blum","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":264.10675,"y":511.78998},"width":23.25064,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Published: Juhl U, ","textAfter":" K, Witte","comments":null,"startOffset":219,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"861909870ca51a783b9903a8678877cf","type":"CBI_address","value":"Organon","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Mammalian metabolic system: S9 derived","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.02704,"y":424.43},"width":39.485413,"height":11.017679,"page":559}],"sectionNumber":5761,"textBefore":"were purchased from ","textAfter":" Technika (Freiburg,","comments":null,"startOffset":150,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9967ca3a12019f077dea268440c4dc5c","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":182.85025,"y":399.09},"width":26.623856,"height":11.017679,"page":559}],"sectionNumber":5761,"textBefore":"the method of ","textAfter":" (Ames et","comments":null,"startOffset":311,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8cf10ab740f107e8c9764c2e0e2e9a18","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.97667,"y":399.09},"width":26.513443,"height":11.017679,"page":559}],"sectionNumber":5761,"textBefore":"of Ames (","textAfter":" et al,","comments":null,"startOffset":317,"endOffset":321,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c0c144e86f8f42d290cb60afcbddfaf","type":"CBI_author","value":"Joyce","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Measurement of DNA strand breakage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.5873,"y":627.02},"width":26.038696,"height":11.017679,"page":560}],"sectionNumber":5763,"textBefore":"scanned with a ","textAfter":" Loeble Chromoscan,","comments":null,"startOffset":1081,"endOffset":1086,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ce4fcf02061503d870f1188503d8664","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":178.77943,"y":577.31},"width":31.039337,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"27711, USA. Published: ","textAfter":" K and","comments":null,"startOffset":283,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5aa2555efd0c05f95e8ae24a00f228ef","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":238.95775,"y":577.31},"width":28.150986,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Kitchin K and ","textAfter":" J (1988).","comments":null,"startOffset":297,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0cf5f566d4847d54bae151d1270c8235","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.44485,"y":611.78},"width":30.929764,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Report: K-CA 5.8.1/35 ","textAfter":" K. and","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a81b2506ae05fd214b6b30ded5618a44","type":"CBI_author","value":"Juhl U","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.61905,"y":652.34},"width":30.189758,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3186,"endOffset":3192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b9a428310d34da455d727de6a31f7416","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":185.85104,"y":565.79},"width":193.02899,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":null,"textAfter":null,"comments":null,"startOffset":376,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d652ba901153832d342e1efb86688fb9","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":690.26},"width":38.91137,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":3022,"endOffset":3028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ade608f4b57dc8c1d444def649ffd9d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (98%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.22278,"y":464.39},"width":82.55249,"height":11.017679,"page":561}],"sectionNumber":5767,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"acf3707ee39d6e6935a01b95629849e6","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":440.90097,"y":565.79},"width":37.94171,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Environmental Chemistry 16:165-172. ","textAfter":" File No.","comments":null,"startOffset":430,"endOffset":438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e66594dfba90dc50c09b723580548329","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.44705,"y":690.26},"width":44.75154,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":3035,"endOffset":3043,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deb74db8584bb41db772fed9e7323ebb","type":"PII","value":"165-172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.60086,"y":565.79},"width":34.668793,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Environmental Chemistry 16:","textAfter":". Syngenta File","comments":null,"startOffset":421,"endOffset":428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787263Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"64008257b103a1337bc07847090e920d","type":"CBI_author","value":"Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.54138,"y":611.78},"width":39.32611,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Kitchin K. and ","textAfter":" (1988). Biochemical","comments":null,"startOffset":37,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54a895c8e626dd8a796c152524191584","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":702.62},"width":74.9128,"height":10.929359,"page":561}],"sectionNumber":5766,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3002,"endOffset":3012,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2246f752182b137860557b6a10802dcc","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.4164,"y":677.66},"width":37.77356,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"Mutat. Res., 31:","textAfter":". (Juhl U","comments":null,"startOffset":3176,"endOffset":3183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787263Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"06c453b722769b784607bd0a7ae4470f","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":690.26},"width":26.62384,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"DNA damage. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":3014,"endOffset":3018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8bcb1aa7e4af4b5171b0dc74da4d238","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":663.26},"width":28.467995,"height":10.018499,"page":562}],"sectionNumber":5769,"textBefore":null,"textAfter":null,"comments":null,"startOffset":102,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d8ffdf8f9cd8fd5dfd23157dff745c0","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.16143,"y":154.97998},"width":27.352486,"height":11.017679,"page":562}],"sectionNumber":5772,"textBefore":"a size C ","textAfter":"-Elvehjem homogenizer (clearance","comments":null,"startOffset":836,"endOffset":842,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c3cc5b7364507f0ad608dede8825be6","type":"CBI_address","value":"Charles River Laboratories","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.65,"y":483.23},"width":98.42502,"height":10.0905,"page":562}],"sectionNumber":5770,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b2e8a1c576bd77b37c22028bb04ee2b","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":508.91},"width":30.528992,"height":10.09053,"page":562}],"sectionNumber":5770,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":35,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d41dc9b001d099271f2f99504f9e9395","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.20158,"y":753.5},"width":32.0224,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"The Stout and ","textAfter":" (Stout and","comments":null,"startOffset":26,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcbf0b359e3e9889fd20a1b74249f51f","type":"CBI_author","value":"Ewig R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":111.56495,"y":88.50397},"width":37.619667,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1162,"endOffset":1168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8be36a1a7ce9ebe47d4da4feafbc593a","type":"PII","value":"43 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-47: Results of 2,4,6-TCP exposure on DNA damage in blood and liver and markers of\nhepatotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.53598,"y":295.05},"width":9.937012,"height":10.0905,"page":563},{"topLeft":{"x":445.66,"y":295.05},"width":10.053986,"height":10.0905,"page":563}],"sectionNumber":5776,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787265Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98502072403661e3fd4713557b4a6bf0","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.52576,"y":753.5},"width":25.58606,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"the Kohn (","textAfter":" et al,","comments":null,"startOffset":84,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"345157bc261e3b4886ce848cd179acaf","type":"CBI_author","value":"Marcel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.0991,"y":75.76001},"width":32.243225,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"Friedberg, eds.) (","textAfter":"-Dekker, New York,","comments":null,"startOffset":1296,"endOffset":1302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f5f8fae80a03961c808611bf99731c1","type":"CBI_author","value":"Hissin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.44797,"y":639.62},"width":29.074738,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":null,"textAfter":null,"comments":null,"startOffset":755,"endOffset":761,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d5381a5b5fa0895d4e9096853db2c0b","type":"CBI_author","value":"Hanawalt and E. C. Friedberg","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":143.98941,"y":75.76001},"width":132.36496,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1259,"endOffset":1287,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"150aad31d2a9d70e2043df2d6431911c","type":"CBI_author","value":"Nebert","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.6106,"y":639.62},"width":30.929459,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":null,"textAfter":null,"comments":null,"startOffset":693,"endOffset":699,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7573269a72eee7cbe2aec21671cc967c","type":"PII","value":"45 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-47: Results of 2,4,6-TCP exposure on DNA damage in blood and liver and markers of\nhepatotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.53598,"y":322.28998},"width":9.937012,"height":10.0905,"page":563},{"topLeft":{"x":445.66,"y":322.28998},"width":10.053986,"height":10.0905,"page":563}],"sectionNumber":5775,"textBefore":null,"textAfter":null,"comments":null,"startOffset":69,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787265Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b64775a4ff69db91c233e95a42452e0","type":"CBI_author","value":"Nicolini","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":112.16113,"y":728.18},"width":37.056656,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"SDSlysis step (","textAfter":" et. al","comments":null,"startOffset":221,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24168a81ae52cc0036f1f87d1a9964cc","type":"CBI_author","value":"Erickson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":157.00557,"y":88.50397},"width":40.20305,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"K, Ewig R, ","textAfter":" L and","comments":null,"startOffset":1170,"endOffset":1178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"14b8798933bf7a9887e2ffd0732e9dc4","type":"PII","value":"379-401","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.26828,"y":75.76001},"width":37.671722,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"York, 1981), pp. ","textAfter":". Stout D","comments":null,"startOffset":1332,"endOffset":1339,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787266Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eaa68107025d68eacde4d8882becdbdd","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":174.90143,"y":753.5},"width":24.106735,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"and Becker (","textAfter":" and Becker,","comments":null,"startOffset":34,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eacda2e64c4fd635f1dbbad89448b6ca","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.54926,"y":753.5},"width":25.46463,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"modification of the ","textAfter":" (Kohn et","comments":null,"startOffset":78,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b588c6e7ff93e9f735b9339923e8baa","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.94138,"y":75.76001},"width":47.18033,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"Friedberg, eds.) (Marcel-Dekker, ","textAfter":", 1981), pp.","comments":null,"startOffset":1311,"endOffset":1319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3577fbe88e02ef04609e934408ba718b","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.283356,"y":753.5},"width":24.09568,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"DNA elution The ","textAfter":" and Becker","comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de12063a5fd9b7b3db2a13522a76724c","type":"CBI_author","value":"Kohn","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":88.50397},"width":25.586067,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"significantly increased REFERENCES: ","textAfter":" K, Ewig","comments":null,"startOffset":1154,"endOffset":1158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8ad993663413d4f8de2453625142aa2","type":"CBI_author","value":"Cohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.2148,"y":639.62},"width":24.879486,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"glutathione content (","textAfter":" et. al,","comments":null,"startOffset":736,"endOffset":740,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f62f465477140b0c428aa95f9da72da","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.83072,"y":753.5},"width":32.00032,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"Becker (Stout and ","textAfter":", 1982) modification","comments":null,"startOffset":44,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e28e700cace511da5280b86efa2b2458","type":"CBI_author","value":"Omura","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.2973,"y":627.02},"width":31.448334,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"P-450 content (","textAfter":" et al.,","comments":null,"startOffset":803,"endOffset":808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1ea5cc39f80759bcd91e0d678d3a55c","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":100.859985},"width":74.9128,"height":10.929359,"page":563}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1142,"endOffset":1152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"913915e4956e84c3c2548b0acaf310b5","type":"CBI_author","value":"Plaa","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.49648,"y":614.42},"width":19.812157,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":null,"textAfter":null,"comments":null,"startOffset":875,"endOffset":879,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdd2ce562e0247ba83ae86964071532d","type":"PII","value":"193 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":316.65506,"y":589.1},"width":36.868927,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"was spun at ","textAfter":" g for","comments":null,"startOffset":1111,"endOffset":1118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787266Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9555d776e4a8494e3d2b49ef0d9a0b6e","type":"PII","value":"157-183","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":486.40973,"y":354.81},"width":34.44989,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Mutation Research 343:","textAfter":". Syngenta File","comments":null,"startOffset":688,"endOffset":695,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787267Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d456ee5ee6f2bbc1bea9e0dec8417d0d","type":"CBI_author","value":"Sato","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":128.24638,"y":563.75},"width":20.55185,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Omura T and ","textAfter":" R (1964).","comments":null,"startOffset":2208,"endOffset":2212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"628a9863e3bd06651e05bb1130c4b7a5","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.27914,"y":253.40997},"width":82.55249,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2703,"endOffset":2720,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09fb8f1a723a442879016a46b28fdc0e","type":"published_information","value":"Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":481.53088,"y":525.83},"width":24.22818,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2444,"endOffset":2449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b87b3c8ad8d146e0d08f94c55839283a","type":"CBI_author","value":"Plaa G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":525.83},"width":31.393127,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2356,"endOffset":2362,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62c2cabfdaa520d09f58c865b60739b8","type":"PII","value":"214-226","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":234.89285,"y":589.1},"width":37.717133,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 74:","textAfter":". Omura T","comments":null,"startOffset":2187,"endOffset":2194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787267Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db2b2884c1d993451a2ab7d1699f9d96","type":"CBI_author","value":"Cohn","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":627.02},"width":24.879509,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Biol. Chem. 255:6836-6842. ","textAfter":" V and","comments":null,"startOffset":1944,"endOffset":1948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fd2fb753ec8ab8feaaff8febce67c1d","type":"CBI_author","value":"Pino A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.09375,"y":715.58},"width":32.47505,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1539,"endOffset":1545,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34cc35f8e8771d575527147b95b6567c","type":"CBI_author","value":"Yoshikawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":377.85},"width":45.839905,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"T, Uno Y, ","textAfter":" K, (1995).","comments":null,"startOffset":443,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0a23b9064a69e96cbba139c1f30c80b","type":"CBI_author","value":"Uno Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":490.15216,"y":389.37},"width":30.37207,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":436,"endOffset":441,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["NER"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecd88ecb09da55b39b2772119870ebfd","type":"PII","value":"407-445","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.91566,"y":513.11},"width":37.624344,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"York, 1982), pp. ","textAfter":". (Kitchin K","comments":null,"startOffset":2472,"endOffset":2479,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787267Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59b1757af8a0cfbf3ac703d12ecb0538","type":"CBI_author","value":"Ames","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.71341,"y":354.81},"width":24.176926,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"putative nongenotoxic (","textAfter":"-negative) mouse hepatocarcinogens.","comments":null,"startOffset":626,"endOffset":630,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb631c53924a7335f5c78144453e6bc9","type":"CBI_author","value":"Oka T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":215.14226,"y":664.94},"width":29.692963,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1780,"endOffset":1785,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df96d41acf4e07488b6f4d583285bf8f","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":510.90836,"y":525.83},"width":21.7883,"height":11.017679,"page":564},{"topLeft":{"x":64.104,"y":513.11},"width":23.665115,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"ed.) (Raven Press, ","textAfter":", 1982), pp.","comments":null,"startOffset":2451,"endOffset":2459,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"624ba4d11121ebe4b285ba5dec2aaadf","type":"CBI_author","value":"Hilf R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":122.98031,"y":601.7},"width":28.864952,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2057,"endOffset":2063,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c80b1d01fb91c025cbdd3e5436b27c76","type":"CBI_author","value":"Robbiano L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":116.963524,"y":715.58},"width":54.047203,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1527,"endOffset":1537,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce3567a393309ca9b30ad47a03b59fc1","type":"CBI_author","value":"Hewitt","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":117.09601,"y":525.83},"width":30.94049,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Plaa G and ","textAfter":" W. In:","comments":null,"startOffset":2367,"endOffset":2373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b221e1813f77bf5e8a8efce2d87edec0","type":"CBI_author","value":"Miyagawa M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.61816,"y":435.35},"width":58.787933,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Report: K-CA 5.8.1/36 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b07862d1d1c0cdcf42d80aa72f111ce","type":"CBI_author","value":"Lyle","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.1099,"y":627.02},"width":21.148003,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Cohn V and ","textAfter":" J (1966).","comments":null,"startOffset":1955,"endOffset":1959,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3968477c5f9f9949a0d4ad4bdd79ad7","type":"PII","value":"302-307","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.15567,"y":740.9},"width":37.79431,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 127:","textAfter":". Nicolini C,","comments":null,"startOffset":1506,"endOffset":1513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787268Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c5f58a507c2956c22f7af6319591e7fb","type":"CBI_author","value":"Perry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":159.7656,"y":664.94},"width":24.978897,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"D, Jensen N, ","textAfter":" J and","comments":null,"startOffset":1768,"endOffset":1773,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54bdee4395ce02991a6402f58005fa32","type":"CBI_author","value":"Miyagawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.4083,"y":389.37},"width":43.190582,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"227, Japan. Published: ","textAfter":" M, Takasawa","comments":null,"startOffset":381,"endOffset":389,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ee7b4abc21680c020a3434b230e6dea","type":"CBI_author","value":"Omura","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":563.75},"width":31.558708,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 74:214-226. ","textAfter":" T and","comments":null,"startOffset":2196,"endOffset":2201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6cc560cefd3c84be4510b934dd2cd3ee","type":"CBI_author","value":"Hayes","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":392.1015,"y":525.83},"width":28.5448,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Toxicology (A. W. ","textAfter":", ed.) (Raven","comments":null,"startOffset":2425,"endOffset":2430,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"441004caa53e5d048ec02418b650b8cd","type":"CBI_address","value":"Mitsubishi Chemical Safety Institute Ltd.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":400.89},"width":167.97949,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Hepatocarcinogens. Yokohama Laboratory, ","textAfter":", 1000, and","comments":null,"startOffset":272,"endOffset":313,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10852cf36e65eaec3fb19a4ce4cd3ae8","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.56235,"y":488.51},"width":30.896301,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"(Kitchin K and ","textAfter":" J, 1988)","comments":null,"startOffset":2496,"endOffset":2501,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61d27ed33dce5853742c9c1f35b57f22","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":383.03473,"y":354.81},"width":80.47095,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":666,"endOffset":683,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08890260164cf87bd16d3e51225655bd","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.45944,"y":488.51},"width":34.0979,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"pp. 407-445. (","textAfter":" K and","comments":null,"startOffset":2482,"endOffset":2489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1d2b1fd506c07525d0affe570787dba","type":"CBI_author","value":"Takasawa H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":280.08255,"y":389.37},"width":53.343018,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":393,"endOffset":403,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["NER"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b5e4e34fa0aa75ca8418fa982bb7dee","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":86.15088,"y":690.26},"width":68.15633,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1721,"endOffset":1735,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93b1e6c7d444b77bdc715bd5adc5003c","type":"CBI_author","value":"Nicolini","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":715.58},"width":37.0456,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 127:302-307. ","textAfter":" C, Robbiano","comments":null,"startOffset":1515,"endOffset":1523,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7b2c9389669d4784e5d7a47eac05120","type":"CBI_author","value":"Jensen","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":112.17216,"y":664.94},"width":30.498894,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"385-389. Nebert D, ","textAfter":" N, Perry","comments":null,"startOffset":1758,"endOffset":1764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36baf7d2c209824e3f5b68c836b4284b","type":"CBI_author","value":"Becker","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.58463,"y":753.5},"width":32.121758,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Stout D and ","textAfter":" F (1982).","comments":null,"startOffset":1353,"endOffset":1359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0366dd2622e7afe46b41ac320fee6b1","type":"PII","value":"434-440","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":474.97968,"y":627.02},"width":37.920288,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 14:","textAfter":". Hissin P","comments":null,"startOffset":2035,"endOffset":2042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787269Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9214c24844fab8c2cf1ce9400808233","type":"CBI_author","value":"Nebert D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":664.94},"width":42.653915,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1748,"endOffset":1756,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"108cbf4b6414d57a42f1fdefc7afe438","type":"PII","value":"2370-2378","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.84576,"y":551.15},"width":48.704193,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Biological Chemistry 239:","textAfter":". Plaa G","comments":null,"startOffset":2345,"endOffset":2354,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787269Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8fe5ff76dff46af689e1a168d58e7487","type":"CBI_author","value":"Sugiyama","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":340.09476,"y":389.37},"width":41.019318,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"M, Takasawa H, ","textAfter":" A, Inoue","comments":null,"startOffset":405,"endOffset":413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"693a5549f8dcbc55c719a9b3cc6fa270","type":"PII","value":"6836-6842","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.21027,"y":652.34},"width":48.769684,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Biol. Chem. 255:","textAfter":". Cohn V","comments":null,"startOffset":1933,"endOffset":1942,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78727Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe0d45cfe755fe078c19eeddb78a00dd","type":"CBI_author","value":"Murata","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":442.44376,"y":389.37},"width":29.874054,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"A, Inoue Y, ","textAfter":" T, Uno","comments":null,"startOffset":426,"endOffset":432,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf9ed98e9b2060a41240a7a8481d88fb","type":"CBI_author","value":"Maura A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.6187,"y":715.58},"width":41.218735,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1547,"endOffset":1554,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"140b8fbd8661df37411f9e6a86faf63d","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":343.41},"width":38.051224,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Mutation Research 343:157-183. ","textAfter":" File No.","comments":null,"startOffset":697,"endOffset":705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4a35b576b8b2863a0270a789e7242f9","type":"CBI_author","value":"Inoue Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.90457,"y":389.37},"width":35.989532,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"H, Sugiyama A, ","textAfter":", Murata T,","comments":null,"startOffset":417,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a594d719e8adc3c4b2560f20079f0268","type":"CBI_author","value":"Stout","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":24.316475,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"1981), pp. 379-401. ","textAfter":" D and","comments":null,"startOffset":1341,"endOffset":1346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9afcd2d2f9cc135afdfa00bc8aa05ba9","type":"PII","value":"385-389","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.37216,"y":690.26},"width":37.557846,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"rate. Carcinogenesis 6: ","textAfter":". Nebert D,","comments":null,"startOffset":1739,"endOffset":1746,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78727Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"200d183e1be860ffb26279cab90b2a07","type":"CBI_author","value":"Brambilla","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.00125,"y":715.58},"width":45.005432,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Finollo R and ","textAfter":" G (1985).","comments":null,"startOffset":1570,"endOffset":1579,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b1ccbc821faf77cc4d9d47c2e0482d9","type":"CBI_author","value":"Ames","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":246.84607,"y":412.29},"width":24.17694,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Putative Nongenotoxic (","textAfter":"-negative) Mouse Hepatocarcinogens.","comments":null,"startOffset":211,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a49392c3192ae0a5bf900a3e2824155","type":"CBI_author","value":"Finollo R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":259.88736,"y":715.58},"width":43.503967,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1556,"endOffset":1565,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d4918c6f7651c60cbc26c983231c8c6","type":"CBI_address","value":"Charles River Laboratories","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.81,"y":386.25},"width":98.42502,"height":10.0905,"page":565}],"sectionNumber":5788,"textBefore":null,"textAfter":" (Kanagawa)","comments":null,"startOffset":77,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f78680d3d8fac4fd097831340f9357c","type":"PII","value":"40-70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.01404,"y":310.64996},"width":22.092987,"height":10.0905,"page":565}],"sectionNumber":5788,"textBefore":"Temperature: 20-24°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":274,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787271Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d2b7310cb1f2913f3b93c0052ddd294","type":"CBI_author","value":"Uno","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":512.7585,"y":624.02},"width":19.83429,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":153,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62e9d6f1794fc7d6437c51b51027ff84","type":"CBI_author","value":"Doolittle","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.53185,"y":598.7},"width":40.203064,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":283,"endOffset":292,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1114fce925a5197d4dd5f68bd9d3e5dc","type":"CBI_author","value":"Welch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":370.89},"width":29.770248,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":"t-test or the ","textAfter":" test (a","comments":null,"startOffset":1828,"endOffset":1833,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08726450b9b9c5d018fdf4d854b1daf6","type":"CBI_author","value":"Williams","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.07697,"y":497.39},"width":41.17453,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":"5% CO2 in ","textAfter":"' medium E","comments":null,"startOffset":1170,"endOffset":1178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3974977dea78a9c5f6114def814e1cc","type":"CBI_author","value":"Williams","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.16187,"y":611.3},"width":41.284943,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":"other researchers (","textAfter":" et al.,","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cafbb2ce534872150a19dd0485f4cd9","type":"CBI_author","value":"Mirsalis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":598.7},"width":37.078743,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":260,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"496e0d43dfb3e4c86c94e85d33af10b5","type":"PII","value":"629-799","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.90497,"y":126.53998},"width":34.71466,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"2000 Nov; 30(6):","textAfter":". Syngenta File","comments":null,"startOffset":619,"endOffset":626,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787271Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"95f6010aafcaaeec791507dc2caa163f","type":"PII","value":"24 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.81,"y":546.23},"width":10.059998,"height":10.0905,"page":567},{"topLeft":{"x":306.77,"y":546.23},"width":19.044983,"height":10.0905,"page":567}],"sectionNumber":5806,"textBefore":null,"textAfter":null,"comments":null,"startOffset":64,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787272Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"980c4f61a30893d90c086eff23ff7ff9","type":"CBI_author","value":"Bermudez M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":127.065125,"y":373.89},"width":62.029144,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1130,"endOffset":1140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"171c37bf5c20d54aed0fff71cedda3ed","type":"CBI_author","value":"Ishida K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":168.23183,"y":149.46002},"width":35.272354,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"E, Saga A, ","textAfter":", Tsuda S.","comments":null,"startOffset":369,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcd796127b82096261b439fdbcc9924e","type":"CBI_author","value":"Sasaki YF","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":311.6957,"y":160.97998},"width":42.75235,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"Hachinohe, Japan. Published: ","textAfter":", Sekihashi K,","comments":null,"startOffset":311,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bddb88f93e9bd2aa37557c318f3dff34","type":"CBI_author","value":"Nishidate E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":472.0816,"y":160.97998},"width":48.33008,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"K, Izumiyama F, ","textAfter":", Saga A,","comments":null,"startOffset":348,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75ded4ac3b9e7061f2db9eee88ad10d0","type":"CBI_author","value":"Hamilton","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":291.91446,"y":323.25},"width":42.62079,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"K, Bakke J, ","textAfter":" C, Spak","comments":null,"startOffset":1401,"endOffset":1409,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55a52ce6180b8a596b9d2b728bcf478d","type":"PII","value":"07 79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":578.75},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":578.75},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5803,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787272Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"906984c1546663bd5bea1ecf2f099ab7","type":"CBI_author","value":"Miyagawa M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":162.42624,"y":424.43},"width":60.715378,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":841,"endOffset":851,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75c6aa5028f0db337cebadb5b8f99521","type":"CBI_author","value":"Murata","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":271.08197,"y":424.43},"width":32.993958,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"M, Inoue Y, ","textAfter":" T, Ogawa","comments":null,"startOffset":862,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c305c9314320dd26b6bc9eff5afcc1a3","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":111.22272,"y":297.93},"width":68.13425,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1563,"endOffset":1577,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b63494f57965db5bc958e310722c45e8","type":"PII","value":"30 76","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":567.95},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":567.95},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5804,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787272Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97c74d678bb7355b71c16e9bc094bb32","type":"CBI_author","value":"Sasaki Y.F.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.3353,"y":195.53998},"width":49.33589,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["RULE"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea59a771a5df3bec77b51bba80780846","type":"CBI_author","value":"Doolittle D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":272.61},"width":51.90544,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1591,"endOffset":1602,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31cac364c4693a01dce25c8b61393a55","type":"CBI_author","value":"Bakke J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":250.79042,"y":323.25},"width":36.2397,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"E, Steinmetz K, ","textAfter":", Hamilton C,","comments":null,"startOffset":1392,"endOffset":1399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34663bf44df239d19d4f5717d5826dc","type":"PII","value":"06 71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":557.03},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":557.03},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5805,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787273Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2fa06534ae69361bc08137b5bfef2e46","type":"CBI_author","value":"Williams","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":373.89},"width":41.284966,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Toxicol. Lett. 63:191-199. ","textAfter":" G, Bermudez","comments":null,"startOffset":1118,"endOffset":1126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d27d857ebc2baef8cb3d92621b4ea5df","type":"CBI_author","value":"Muller","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.302246,"y":272.61},"width":30.951523,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"6:1521-1524. Doolittle D, ","textAfter":" G and","comments":null,"startOffset":1604,"endOffset":1610,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c49791afcf4ad8e088274628141a4e6a","type":"PII","value":"03 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":546.23},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":461.62,"y":546.23},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5806,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787273Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"000a524412c3f356f2f93daf13ab363c","type":"CBI_author","value":"Uno","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":424.43},"width":19.955673,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"the assay. REFERENCES: ","textAfter":" Y, Takasawa","comments":null,"startOffset":822,"endOffset":825,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6584add0a5339136f6720a5c69c3cd5","type":"PII","value":"05 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":535.31},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":461.86,"y":535.31},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5807,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787274Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0653f98652593b589e5c44b8a234611","type":"CBI_author","value":"Miyagawa M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.69943,"y":222.65997},"width":60.019867,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1780,"endOffset":1790,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ccf9aeb5cf48f60d86dd60ea54aa6e9","type":"PII","value":"191-199","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":469.94553,"y":399.09},"width":37.794434,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Toxicol. Lett. 63:","textAfter":". Williams G,","comments":null,"startOffset":1109,"endOffset":1116,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787274Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"99e9d8f3c41f4d43d0f0ffaa40e828d6","type":"published_information","value":"Crit Rev Toxicol","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":300.93887,"y":126.53998},"width":69.09665,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":null,"textAfter":null,"comments":null,"startOffset":585,"endOffset":601,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6dd0360927da20efa1fd5bf169789b85","type":"CBI_author","value":"Takasawa H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":100.66847,"y":424.43},"width":56.586426,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":829,"endOffset":839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"035595abd545e0b300bc4b527b38e923","type":"CBI_author","value":"Tsuda S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.6535,"y":149.46002},"width":36.384262,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"A, Ishida K, ","textAfter":" (2000). The","comments":null,"startOffset":379,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aadf2a3286afc380d01ce181bea6f156","type":"PII","value":"28 58","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":524.51},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":524.51},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5808,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787274Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9d72f122205514dfc18052b320ff3dd1","type":"CBI_author","value":"Izumiyama F","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":413.22797,"y":160.97998},"width":54.365692,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"YF, Sekihashi K, ","textAfter":", Nishidate E,","comments":null,"startOffset":335,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34b902293bfaf6aadeb2975390d2bddd","type":"CBI_author","value":"Saga A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":149.46002},"width":30.262497,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"F, Nishidate E, ","textAfter":", Ishida K,","comments":null,"startOffset":361,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b37d2fb3ac38e70f11ff9c90960ac97","type":"CBI_author","value":"Mirsalis J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":323.25},"width":44.265785,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1351,"endOffset":1361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da75322ee670e13071c12c739ef2a89f","type":"CBI_author","value":"Scaramuzzino D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.0586,"y":373.89},"width":77.10977,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1145,"endOffset":1159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a859bf73f98b04d4d613bfe99816150a","type":"CBI_author","value":"Loh E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.90625,"y":323.25},"width":28.489594,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1372,"endOffset":1377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"498f9dcdb3ef49425e4e639606feed39","type":"PII","value":"399-405","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.72534,"y":260.01},"width":37.574615,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Chem. Toxicol. 25:","textAfter":". (Miyagawa M","comments":null,"startOffset":1770,"endOffset":1777,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787275Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d9a508f5632d80d026cc1942687c4f3","type":"PII","value":"809-817","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.61185,"y":348.57},"width":37.71817,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Cult. Assoc. 13:","textAfter":". Mirsalis J,","comments":null,"startOffset":1342,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787275Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0224cb072b24ac1d29cb998920f38fb1","type":"CBI_author","value":"Steinmetz K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":190.00415,"y":323.25},"width":55.979233,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1379,"endOffset":1390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e7ca98f1d2f435aaaa8ab22acd9f7a5","type":"CBI_author","value":"Tyson C","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":113.254105,"y":323.25},"width":38.944473,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1363,"endOffset":1370,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a92074d1f25fd961736b74ba29e663e8","type":"CBI_author","value":"Yoshikawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":386.79233,"y":424.43},"width":50.40399,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Ogawa M and ","textAfter":" K (1992).","comments":null,"startOffset":884,"endOffset":893,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"301abf9963beaf976ce2db5106e22a28","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":436.91},"width":74.9128,"height":10.929359,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":810,"endOffset":820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8602ff0d2f61a7936caa49f47b24a549","type":"CBI_author","value":"Spak D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":349.59848,"y":323.25},"width":33.921295,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1413,"endOffset":1419,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2fabb6d68ce9c7c07239eca3a49718bf","type":"PII","value":"24 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.81,"y":578.75},"width":10.059998,"height":10.0905,"page":567},{"topLeft":{"x":306.77,"y":578.75},"width":19.044983,"height":10.0905,"page":567}],"sectionNumber":5803,"textBefore":null,"textAfter":null,"comments":null,"startOffset":64,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787275Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9ff4841108e1bd9405a1b02fb7049f12","type":"CBI_author","value":"Inoue Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":228.51169,"y":424.43},"width":37.398895,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"H, Miyagawa M, ","textAfter":", Murata T,","comments":null,"startOffset":853,"endOffset":860,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f65181850e8c584a626301e4e8ff6f3","type":"CBI_author","value":"Sekihashi K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":358.81647,"y":160.97998},"width":50.023163,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"Published: Sasaki YF, ","textAfter":", Izumiyama F,","comments":null,"startOffset":322,"endOffset":333,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c41a478377d4d81912aab431ded3309","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":485.4382,"y":126.53998},"width":37.94168,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"2000 Nov; 30(6):629-799. ","textAfter":" File No.","comments":null,"startOffset":628,"endOffset":636,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"348880b2c2853a60074b185939ecaa7f","type":"CBI_author","value":"Scribner","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.05186,"y":272.61},"width":38.359375,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Muller G and ","textAfter":" H (1987).","comments":null,"startOffset":1617,"endOffset":1625,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e2718ddc8e86216a60505cd99967e8d","type":"PII","value":"1521-1524","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.65088,"y":297.93},"width":48.75914,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"treatment. Carcinogenesis 6:","textAfter":". Doolittle D,","comments":null,"startOffset":1580,"endOffset":1589,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787276Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59b006e8957d709c574301df1dfb3046","type":"CBI_author","value":"Ogawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":319.5035,"y":424.43},"width":32.088654,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Y, Murata T, ","textAfter":" M and","comments":null,"startOffset":872,"endOffset":877,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec7ec6cace846400c7b4d919d8381428","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":728.9},"width":82.55249,"height":11.017679,"page":568}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1953,"endOffset":1970,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4dbe7411d6046ca29c73e83d86871e95","type":"CBI_author","value":"Key","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":350.91235,"y":314.25},"width":17.732819,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"the Environment, State ","textAfter":" Laboratory of","comments":null,"startOffset":152,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"feaa2d7c3c1656daf734bd3ca9cd69da","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>98%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":168.65997},"width":82.55249,"height":11.017679,"page":570}],"sectionNumber":5834,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d8c98dc4e580b3c0e8461b8a3503b06","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":187.5296,"y":268.16998},"width":37.931686,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"and Chemistry 28:603-608. ","textAfter":" File No.","comments":null,"startOffset":467,"endOffset":475,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcce9a1300d17f05b98ce9bc1fa388e8","type":"CBI_author","value":"Zhao","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":346.6254,"y":291.21002},"width":21.428009,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"H, Hu P, ","textAfter":" Q (2009).","comments":null,"startOffset":326,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9baa23a222e6bfcd074fb664decb1c23","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":345.9482,"y":279.69},"width":177.01334,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":null,"textAfter":null,"comments":null,"startOffset":416,"endOffset":454,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1ec67bfc8ddee4801a272c6d6e1709d","type":"PII","value":"603-608","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.64848,"y":268.16998},"width":34.30156,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"and Chemistry 28:","textAfter":". Syngenta File","comments":null,"startOffset":458,"endOffset":465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787277Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41385cd9ec3d9f61020fb659ab1950d1","type":"CBI_author","value":"Hu","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":319.32507,"y":291.21002},"width":13.290649,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"D, Zhu H, ","textAfter":" P, Zhao","comments":null,"startOffset":320,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2645e7d7832bd0a5d0799546a55835f6","type":"CBI_author","value":"Zhu","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":286.73593,"y":291.21002},"width":17.005768,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"Published: Yin D, ","textAfter":" H, Hu","comments":null,"startOffset":313,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f88268feaa09824986a892675eff9801","type":"CBI_author","value":"Yin D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.09299,"y":291.21002},"width":26.537476,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"September 2008. Published: ","textAfter":", Zhu H,","comments":null,"startOffset":306,"endOffset":311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d07283e3897c4e4c882fc1677a077b25","type":"CBI_author","value":"Yin D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.49072,"y":325.64996},"width":28.310318,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"Report: K-CA 5.8.1/38 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3d23e6c68777831a2e3c4d9d2ca9ecc","type":"CBI_author","value":"Sasaki Y.F","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.13943,"y":362.49},"width":49.355225,"height":11.017679,"page":570}],"sectionNumber":5833,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1339,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea678d54b957380e7f9d9d6299712e65","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":71.184,"y":562.07},"width":28.467995,"height":10.018499,"page":571}],"sectionNumber":5836,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f128cb5b8d3736a2dc38fb2dfd6679da","type":"CBI_author","value":"Hamilton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.50635,"y":133.38},"width":42.62079,"height":11.017679,"page":571}],"sectionNumber":5849,"textBefore":"Spearman–Karber method (","textAfter":", 1978). DHPLC","comments":null,"startOffset":444,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f9df99083ea42718f4357bd97354fbb","type":"CBI_author","value":"Yin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":88.92192,"y":196.85999},"width":17.548958,"height":11.017679,"page":572}],"sectionNumber":5852,"textBefore":"laboratory data (","textAfter":", 2006) On","comments":null,"startOffset":1282,"endOffset":1285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bde42a39bb58e501a05bbf4b82466c2b","type":"CBI_author","value":"Fischer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":381.90225,"y":255.69},"width":33.325134,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"B6C3F1 Mice and ","textAfter":" 344 Rats.","comments":null,"startOffset":4256,"endOffset":4263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e6f78196b4a1d19617e0f374ccb43f9","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (96-97%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":169.02002},"width":82.55249,"height":11.017679,"page":573}],"sectionNumber":5853,"textBefore":null,"textAfter":null,"comments":null,"startOffset":88,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc8c4b79f50a021b813dfb7afd552051","type":"CBI_author","value":"Yin D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":451.28943,"y":361.29},"width":28.279846,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Res 609:92–101. (","textAfter":" et al,","comments":null,"startOffset":4174,"endOffset":4179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78b9b95351c8ca410a52e02fc8451c07","type":"published_information","value":"Mutat Res","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":183.26,"y":386.61},"width":45.943848,"height":11.0232,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4151,"endOffset":4160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e558103e8bf064413779b9bc88c973f","type":"CBI_author","value":"Wang X","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":152.40192,"y":399.33},"width":37.99504,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Y, Li Y, ","textAfter":", Zhao Q","comments":null,"startOffset":4040,"endOffset":4046,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95ed5b447a565697310c3832aea93622","type":"CBI_author","value":"Hamilton","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":449.87},"width":42.62079,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"assay described. REFERENCES: ","textAfter":" MA, Russo","comments":null,"startOffset":3822,"endOffset":3830,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76a7d9f93521753eb3d3423b02d9247c","type":"published_information","value":"Environ Sci Technol","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":295.13,"y":437.27},"width":92.808655,"height":11.0232,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3963,"endOffset":3982,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7810f9dfa55008127e6083842fe1f14a","type":"CBI_author","value":"Thurston RV","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.6758,"y":449.87},"width":61.620636,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3845,"endOffset":3856,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["NER"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c85c67eb06be00f952540fed3ccc312","type":"CBI_author","value":"Yin D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":399.33},"width":28.279839,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Correction 12:417 (1978). ","textAfter":", Gu Y,","comments":null,"startOffset":4021,"endOffset":4026,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e2adf8beecf0a5af1f97d7bfd89f769","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":462.35},"width":74.9128,"height":10.929359,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3810,"endOffset":3820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ea137972a0bfd9d62d73f22b8c8643b","type":"CBI_author","value":"Zhao","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":194.97215,"y":399.33},"width":23.543686,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Y, Wang X, ","textAfter":" Q (2006).","comments":null,"startOffset":4048,"endOffset":4052,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d948c4920d9030fc68e07601a1279d0","type":"CBI_author","value":"Li Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":126.48,"y":399.33},"width":21.545448,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"D, Gu Y, ","textAfter":", Wang X,","comments":null,"startOffset":4034,"endOffset":4038,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2195a9c72161a2be59f536736b9715fe","type":"CBI_author","value":"Russo","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":137.3875,"y":449.87},"width":27.849274,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"REFERENCES: Hamilton MA, ","textAfter":" RC, Thurston","comments":null,"startOffset":3835,"endOffset":3840,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87b05147e15b0f7d7827b2fa685ca2fe","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":355.81592,"y":298.52997},"width":38.05127,"height":10.526819,"page":573}],"sectionNumber":5850,"textBefore":"Maryland 20014, USA. ","textAfter":" File No.","comments":null,"startOffset":248,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"391fca1f2cd08c894c2512a66559b99f","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.984,"y":107.58002},"width":24.127129,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"and Methods: 18 ","textAfter":" granular lymphocyte","comments":null,"startOffset":29,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd24367b0c0c2c43ed185e4966123c76","type":"CBI_author","value":"Haseman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.24088,"y":84.54401},"width":38.110962,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"in Thomas J; ","textAfter":" J.K; Goodman","comments":null,"startOffset":302,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9de300f22925726dd6668727e9487e44","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":50.080017},"width":38.05121,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"Science. 99(1): 3-19. ","textAfter":" File No.","comments":null,"startOffset":579,"endOffset":587,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f1f4784f6c1037c054dd2bdd9c9aed3c","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.32782,"y":73.119995},"width":30.332245,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"lymphocytic leukemia in ","textAfter":" 344 rats","comments":null,"startOffset":424,"endOffset":431,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"115916d6e6ced502726530c532d63ba3","type":"CBI_author","value":"Thomas J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.66503,"y":84.54401},"width":42.334023,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"of evidence approach. ","textAfter":" et al.,","comments":null,"startOffset":253,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc17364f33e699182d0f65bf053f24b8","type":"CBI_author","value":"Mills","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.87582,"y":378.09},"width":24.360641,"height":11.017679,"page":574}],"sectionNumber":5859,"textBefore":"4% fat (Allied ","textAfter":", Inc., Chicago,","comments":null,"startOffset":140,"endOffset":145,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdaa1f0324510b5807a86fa14ce91eac","type":"PII","value":"45-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.814,"y":180.65997},"width":22.093018,"height":10.0905,"page":574}],"sectionNumber":5858,"textBefore":"Temperature: 22-24°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":565,"endOffset":570,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787279Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72d58dfb8045a395cf5b72a03463b570","type":"CBI_author","value":"Thomas","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.77936,"y":84.54401},"width":33.16089,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"(2007). Published in ","textAfter":" J; Haseman","comments":null,"startOffset":292,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a24752663395ed2677cfd7271f5de698","type":"CBI_author","value":"Loughran T.P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.52927,"y":84.54401},"width":56.746246,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":null,"textAfter":null,"comments":null,"startOffset":338,"endOffset":350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9ce8df9d3c8b48ae7aa1c25403c13c4a","type":"CBI_author","value":"Spencer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":73.119995},"width":33.10108,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"J.M; Loughran T.P; ","textAfter":" P.J. (2007).","comments":null,"startOffset":352,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fc02b81ee89be2145d3b079fffb2853","type":"CBI_author","value":"Goodman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.234,"y":84.54401},"width":40.501404,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"J; Haseman J.K; ","textAfter":" J.I; Ward","comments":null,"startOffset":315,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7c66868dafb8e1dbc461d022727cb60","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Materials:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":478.55},"width":28.467995,"height":10.018499,"page":574}],"sectionNumber":5857,"textBefore":null,"textAfter":null,"comments":null,"startOffset":119,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"568fdeb036e64e6148b1d5f81be6af63","type":"CBI_author","value":"Wayne","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":217.73999},"width":26.335022,"height":10.0905,"page":574}],"sectionNumber":5858,"textBefore":null,"textAfter":" Sterilizable Lab","comments":null,"startOffset":415,"endOffset":420,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de2a43565128c13a1cbc129f73a0d0dc","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":266.26703,"y":327.45},"width":27.505005,"height":10.0905,"page":574}],"sectionNumber":5858,"textBefore":"B6C3F1 mice, ","textAfter":" 344 Rats","comments":null,"startOffset":54,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"226460d488412284620912204d304eba","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":616.1},"width":35.897438,"height":10.929359,"page":574}],"sectionNumber":5855,"textBefore":"carcinogenic in male ","textAfter":" 344 rats,","comments":null,"startOffset":866,"endOffset":873,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2811ac118e54a1e2e39619603e1541c2","type":"CBI_author","value":"Ward","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.7431,"y":84.54401},"width":23.240723,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"J.K; Goodman J.I; ","textAfter":" J.M; Loughran","comments":null,"startOffset":328,"endOffset":332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fb9fec936e7d654b29acbf1ca3d5b97","type":"CBI_author","value":"Wayne","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.19733,"y":390.69},"width":32.165924,"height":11.017679,"page":574}],"sectionNumber":5859,"textBefore":"was administered via ","textAfter":" ® Sterilizable","comments":null,"startOffset":84,"endOffset":89,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"776eab6a3f90f0b3450806a3054b6a46","type":"CBI_author","value":"Kelly","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.54,"y":150.89996},"width":25.575058,"height":11.017679,"page":575}],"sectionNumber":5873,"textBefore":"in a Patterson-","textAfter":" twin-shell blender","comments":null,"startOffset":483,"endOffset":488,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"140f9ee7de99cbcaf300dc2395dc8bb2","type":"CBI_author","value":"Wayne","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":188.82},"width":32.165916,"height":11.017679,"page":575}],"sectionNumber":5873,"textBefore":"chemical with autoclaved ","textAfter":" ® Sterilizable","comments":null,"startOffset":157,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4b4a4a3c4ac41786cf058868b7f223c","type":"CBI_author","value":"Patterson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.96973,"y":150.89996},"width":41.903214,"height":11.017679,"page":575}],"sectionNumber":5873,"textBefore":"minutes in a ","textAfter":"-Kelly twin-shell blender","comments":null,"startOffset":473,"endOffset":482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a60134a2eefb9428d3d97e4521297aed","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":254.13},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":254.13},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5870,"textBefore":null,"textAfter":null,"comments":null,"startOffset":39,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45ad083dfa9b7ee75371fc9ffe64124d","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Chronic/carcinogenicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":446.51},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":446.51},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5864,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3eae808b52ed85ca28395b378256e4d3","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":239.22003},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":239.22003},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5871,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"724aed1115575bf6e908612b56ff74f9","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Chronic/carcinogenicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":431.63},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":431.63},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5865,"textBefore":null,"textAfter":null,"comments":null,"startOffset":341,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787281Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7256520869bbd2254a139a82fa5f7e7","type":"CBI_author","value":"Cox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.3954,"y":86.94403},"width":19.359497,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"(1975) extensions of ","textAfter":" methods for","comments":null,"startOffset":2737,"endOffset":2740,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c5d35c617116d4cb2def130d7bac285","type":"CBI_author","value":"Cox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.822,"y":99.65997},"width":19.238068,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"the method of ","textAfter":" (1972) for","comments":null,"startOffset":2656,"endOffset":2659,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed2459f4d3f1733b4050f46bcb2ab43b","type":"CBI_author","value":"Kaplan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.19962,"y":137.58002},"width":32.883514,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"product-limit procedure of ","textAfter":" and Meier","comments":null,"startOffset":2353,"endOffset":2359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"713719fa1be3c6eae93a2d5e4e354c20","type":"CBI_author","value":"Meier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":468.4089,"y":137.58002},"width":27.330414,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"of Kaplan and ","textAfter":" (1958). Animals","comments":null,"startOffset":2364,"endOffset":2369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d03c7068daf06bd7228709521cfb043d","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.9375,"y":627.62},"width":42.477264,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"continuity correction (","textAfter":", 1971), was","comments":null,"startOffset":3906,"endOffset":3914,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51fe43fafbaedc478da60c6fa2c94f22","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":85.091034,"y":627.62},"width":38.197594,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"are shown. The ","textAfter":"-Armitage test for","comments":null,"startOffset":3823,"endOffset":3830,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be51d8e0a225cec1b2f00f85a78b86c4","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":652.34},"width":28.544807,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"tables, where the ","textAfter":" exact P","comments":null,"startOffset":3786,"endOffset":3792,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"decffb2d062453143aec38cc334f8f20","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":353.59,"y":476.51},"width":42.598724,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"exact tests, Cochran-","textAfter":" tests, etc.)","comments":null,"startOffset":4963,"endOffset":4971,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"293cf9cb92c65e9932de9cbd30384fca","type":"CBI_author","value":"Saffiotti","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":387.7315,"y":439.19},"width":36.924164,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5167,"endOffset":5176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"653b74454cc15b507b4f9d50fed29036","type":"CBI_author","value":"Cox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.7301,"y":728.18},"width":19.359497,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"exact test (","textAfter":", 1970) was","comments":null,"startOffset":3220,"endOffset":3223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e22656892c11247f5828336f32707d4d","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":627.62},"width":42.598724,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"shown. The Cochran-","textAfter":" test for","comments":null,"startOffset":3831,"endOffset":3839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c7b03b79b77ad6e8cacc4ddd33e76d8","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":231.51456,"y":476.51},"width":28.42337,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"of tumours (","textAfter":" exact tests,","comments":null,"startOffset":4935,"endOffset":4941,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75852b0bd69865878a3c15a3c4a24e2a","type":"CBI_author","value":"Miller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":470.38705,"y":690.26},"width":28.522705,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"Bonferroni inequality (","textAfter":", 1966) requires","comments":null,"startOffset":3556,"endOffset":3562,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b0300a4fe5bb976f24c9b411430827d","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.59232,"y":476.51},"width":38.315186,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"(Fisher exact tests, ","textAfter":"-Armitage tests, etc.)","comments":null,"startOffset":4955,"endOffset":4962,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f39bcdef39b22ddaeaae4621438ebb9","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.93643,"y":728.18},"width":28.533783,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"analyses, the one-tailed ","textAfter":" exact test","comments":null,"startOffset":3201,"endOffset":3207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7acdaeb8dab28a22be89d2e1f9eaa88f","type":"PII","value":"(22) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.046,"y":501.35},"width":15.984985,"height":10.0905,"page":579},{"topLeft":{"x":488.62,"y":501.35},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5904,"textBefore":"3 (15) 11 ","textAfter":" (22) Combined","comments":null,"startOffset":99,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e00aeaa30bf179d9cb97e5f742774f9e","type":"PII","value":"(22) 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.046,"y":490.43},"width":15.984985,"height":10.0905,"page":579},{"topLeft":{"x":488.62,"y":490.43},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5903,"textBefore":"3 (15) 11 ","textAfter":" (26) Historical","comments":null,"startOffset":157,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6cb9fa09f654d4d649182eb257eb5f6","type":"PII","value":"5000 10000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.25,"y":640.1},"width":19.044998,"height":10.018499,"page":579},{"topLeft":{"x":281.57,"y":640.1},"width":23.598969,"height":10.018499,"page":579}],"sectionNumber":5895,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e64dc8e3a5eb9ed2261567f5f5e34172","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.83399,"y":554.99},"width":30.034004,"height":10.0905,"page":579}],"sectionNumber":5900,"textBefore":"Bone ","textAfter":" Hyperplasi","comments":null,"startOffset":5,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7eaea200e5ae9ce815d6cad2fbcd7b58","type":"PII","value":"(10) 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.492,"y":339.09},"width":15.994019,"height":10.0905,"page":579},{"topLeft":{"x":426.67,"y":339.09},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5915,"textBefore":null,"textAfter":null,"comments":null,"startOffset":366,"endOffset":373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5798db921ebf0604069153d2605675f1","type":"PII","value":"5000 10000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.99,"y":640.1},"width":19.044983,"height":10.018499,"page":579},{"topLeft":{"x":477.46,"y":640.1},"width":23.598969,"height":10.018499,"page":579}],"sectionNumber":5895,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50b4e0380175263e3af04dc519cf8961","type":"PII","value":"(10) 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.362,"y":414.45},"width":15.993988,"height":10.0905,"page":579},{"topLeft":{"x":230.93,"y":414.45},"width":10.054001,"height":10.0905,"page":579}],"sectionNumber":5909,"textBefore":"Liver Hyperplasia 2 ","textAfter":" (24) 6","comments":null,"startOffset":20,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ced8010773b1a42fe78c17e7953c7f8","type":"PII","value":"(45) 32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.306,"y":403.65},"width":15.984985,"height":10.0905,"page":579},{"topLeft":{"x":295.73,"y":403.65},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5909,"textBefore":"3 (15)b 22 ","textAfter":" (68) 1","comments":null,"startOffset":78,"endOffset":85,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88ced5594349420d9a7f8c5be8a86f9a","type":"PII","value":"5214 10428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.75,"y":447.11},"width":19.044983,"height":10.0905,"page":579},{"topLeft":{"x":490.54,"y":447.11},"width":23.598969,"height":10.0905,"page":579}],"sectionNumber":5907,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee26f89f051be317bf33ae8c270498b4","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.31,"y":629.54},"width":10.059998,"height":10.0905,"page":579},{"topLeft":{"x":497.26,"y":629.54},"width":10.059998,"height":10.0905,"page":579}],"sectionNumber":5896,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3012473f0db3841f54b514cef9ca13bd","type":"PII","value":"(15) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.492,"y":501.35},"width":15.994019,"height":10.0905,"page":579},{"topLeft":{"x":426.67,"y":501.35},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5902,"textBefore":"29 (58)b 3 ","textAfter":" (22) 11","comments":null,"startOffset":91,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4d98234df66caca04ee04a100162f1b","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.57,"y":629.54},"width":10.059998,"height":10.0905,"page":579},{"topLeft":{"x":304.37,"y":629.54},"width":10.059998,"height":10.0905,"page":579}],"sectionNumber":5896,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d3def3778d894e0923eae068c26a542c","type":"PII","value":"(15) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.492,"y":490.43},"width":15.994019,"height":10.0905,"page":579},{"topLeft":{"x":426.67,"y":490.43},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5902,"textBefore":"29 (58)b 3 ","textAfter":" (22) 13","comments":null,"startOffset":149,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c606ed8fa5e4b349bebf54213ec4251","type":"PII","value":"5000 10000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.01,"y":447.11},"width":19.044998,"height":10.0905,"page":579},{"topLeft":{"x":297.53,"y":447.11},"width":23.598969,"height":10.0905,"page":579}],"sectionNumber":5907,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"17a57bbb23d9fe5d470cbdb27c5b9e98","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":668.3},"width":36.42772,"height":10.67124,"page":579}],"sectionNumber":5917,"textBefore":"exposure bioassays in ","textAfter":" 344 rats","comments":null,"startOffset":378,"endOffset":385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d2f683a60d0c32b05d5317bdbe9d521","type":"CBI_author","value":"Huff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":229.0177,"y":490.91},"width":19.89412,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"NC, US. Published: ","textAfter":", J. (2012).","comments":null,"startOffset":203,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8972360421ec5311aa37d0feb1035367","type":"CBI_author","value":"Huff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.20172,"y":513.83},"width":19.674988,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Report: K-CA 5.8.1/40 ","textAfter":", J. (2012).","comments":null,"startOffset":22,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4530c89afb5aff9813a3608c910671c5","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":206.21922,"y":479.39},"width":56.01906,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":null,"textAfter":null,"comments":null,"startOffset":288,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19bfe1155002afcb11ae585eed36be8e","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Neoplastic:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.90225,"y":438.71},"width":33.325134,"height":11.017679,"page":580}],"sectionNumber":5921,"textBefore":"B6C3F1 Mice and ","textAfter":" 344 Rats","comments":null,"startOffset":1393,"endOffset":1400,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"271ce5366543ed2e0b05d72545f228df","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":64.104,"y":278.13},"width":68.25567,"height":11.017679,"page":580}],"sectionNumber":5925,"textBefore":null,"textAfter":null,"comments":null,"startOffset":30,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75ddc5f5c15de71d4e8249662c9d3c71","type":"PII","value":"521-525","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Neoplastic:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":278.738,"y":479.39},"width":34.482086,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Trichlorophenol. Chemosphere 89, ","textAfter":". Syngenta File","comments":null,"startOffset":304,"endOffset":311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787285Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b8423209eb5aec7d5e2b85b01b057a8","type":"CBI_author","value":"Fischer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":265.52997},"width":33.446564,"height":11.017679,"page":580}],"sectionNumber":5925,"textBefore":"male and female ","textAfter":" rats and","comments":null,"startOffset":132,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["271ce5366543ed2e0b05d72545f228df"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e260c2ab94c8312597502bc7a81f8078","type":"CBI_author","value":"Huff J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":472.64944,"y":101.70001},"width":28.78769,"height":11.017679,"page":580}],"sectionNumber":5925,"textBefore":"[liver tumors]. (","textAfter":", 2012) STUDY","comments":null,"startOffset":1229,"endOffset":1235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["271ce5366543ed2e0b05d72545f228df"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb4f47da63b35c262c44c09f7d94fb64","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":317.28973,"y":479.39},"width":37.94171,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Chemosphere 89, 521-525. ","textAfter":" File No.","comments":null,"startOffset":313,"endOffset":321,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"440a17e2eeff3df6bee4cb50b367176e","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Neoplastic:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.02175,"y":603.62},"width":33.34719,"height":11.017679,"page":580}],"sectionNumber":5921,"textBefore":"carcinogenic in male ","textAfter":" 344 rats,","comments":null,"startOffset":1123,"endOffset":1130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c6435dd0197497c50fa8dbb3df3859d","type":"CBI_author","value":"Long","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":302.19385,"y":490.91},"width":22.186249,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Huff, J. (2012). ","textAfter":"-term toxicology and","comments":null,"startOffset":220,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18d34225e7d13d42c97593a618d1f28a","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":291.93503,"y":502.31},"width":90.00275,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":null,"textAfter":null,"comments":null,"startOffset":129,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7975932971b118d593296114b352f1f5","type":"CBI_author","value":"Long","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":285.63275,"y":513.83},"width":21.926025,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Huff, J. (2012). ","textAfter":"-term Toxicology and","comments":null,"startOffset":39,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b2c551eaa39c153ec91f92c1e7a1a72d","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.77,"y":182.46002},"width":23.535995,"height":10.0905,"page":581}],"sectionNumber":5928,"textBefore":null,"textAfter":" Scientific and","comments":null,"startOffset":92,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db0fe4aaca2a0aed21e2a599ba68cb2c","type":"CBI_author","value":"Zenick H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":354.27484,"y":727.94},"width":39.126953,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":245,"endOffset":253,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["NER"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a14f471bae71b2ed5400a42faf576915","type":"CBI_author","value":"George","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":480.45822,"y":727.94},"width":30.362122,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"E, Manson J, ","textAfter":" E, Smith","comments":null,"startOffset":273,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25aa22a85cffc7e3125ce0eecfa722d2","type":"published_information","value":"Reproductive Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":382.58386,"y":750.98},"width":103.57825,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":69,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a033a4b8d7626e421349fdaffec9ab1","type":"CBI_author","value":"Blackburn K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.49072,"y":750.98},"width":54.923447,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Report: K-CA 5.8.1/41 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"995367ca688e58e14a8211d64bf646e2","type":"CBI_author","value":"Manson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.2796,"y":727.94},"width":33.081207,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"H, Hope E, ","textAfter":" J, George","comments":null,"startOffset":263,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93e4960a45375e6b6f7b46bb2efd7d51","type":"CBI_author","value":"Blackburn K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":296.13824,"y":727.94},"width":53.150665,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Medical Centre. Published: ","textAfter":", Zenick H,","comments":null,"startOffset":232,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43b3534f19517b4271968e7844cbd272","type":"CBI_author","value":"Smith","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":716.42},"width":24.794449,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"J, George E, ","textAfter":" M (1986).","comments":null,"startOffset":283,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de445ab5ee89acffd981baabd890fbd3","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":443.52365,"y":705.02},"width":38.05127,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Toxicology 6, 233-239. ","textAfter":" File No.","comments":null,"startOffset":438,"endOffset":446,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ad982c41fbc82a9523ccdd26c9fe187","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":374.0162,"y":739.46},"width":89.99274,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":158,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc69435a6b29e3c8c85413d4bdae584f","type":"PII","value":"233-239","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.91086,"y":705.02},"width":34.678772,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Applied Toxicology 6, ","textAfter":". Syngenta File","comments":null,"startOffset":429,"endOffset":436,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787286Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"52dd8b04a97feb90812732bd74f74a57","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99%).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":582.35},"width":82.55249,"height":11.017679,"page":581}],"sectionNumber":5926,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53378e70e455b6d878c15df2d2329754","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":169.38},"width":28.467995,"height":10.018499,"page":581}],"sectionNumber":5928,"textBefore":null,"textAfter":null,"comments":null,"startOffset":133,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6226c5797f725fbe9525370dd5e9618","type":"published_information","value":"Reproductive Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":280.01288,"y":716.42},"width":104.40494,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":317,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab332b494c1b364797239cb5f9ec6c84","type":"CBI_author","value":"Hope E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.26822,"y":727.94},"width":32.13498,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":255,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["NER"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f47901db72bda41fbfde06bd81360b7","type":"CBI_author","value":"Zenick","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.6673,"y":395.13},"width":31.569763,"height":11.017679,"page":582}],"sectionNumber":5931,"textBefore":null,"textAfter":null,"comments":null,"startOffset":559,"endOffset":565,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de794789c7e2ab68333d8e6364fd6638","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.67601,"y":618.5},"width":22.482956,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":"Purina Lab ","textAfter":" 5001 ad","comments":null,"startOffset":465,"endOffset":469,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c65aad05410b1292ac812865fc2e3382","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":691.1},"width":50.65303,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":null,"textAfter":" (Canada)","comments":null,"startOffset":194,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59e0cef3bbca03db802256e4f2f8d960","type":"CBI_author","value":"Evans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":728.18},"width":22.978027,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":"Long-","textAfter":" hooded (LEH)","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"075b2613ee867842c1f26fa5a8ebe4cf","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":728.18},"width":20.007996,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":null,"textAfter":"-Evans hooded (LEH)","comments":null,"startOffset":33,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fa14859185dbf449a390f389b9e3b0","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.2483,"y":252.09003},"width":29.759186,"height":11.017679,"page":583}],"sectionNumber":5931,"textBefore":"using a Kruskal ","textAfter":" test. Foetal","comments":null,"startOffset":5808,"endOffset":5814,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"512c7d8021af28905c4110081609202d","type":"PII","value":"40 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.86682,"y":490.43},"width":39.143158,"height":11.017679,"page":584}],"sectionNumber":5935,"textBefore":"animals; and 24/","textAfter":" mg/kg animals.","comments":null,"startOffset":208,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91e1de89ec667602c6dc1e6e6da48208","type":"PII","value":"30 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.60803,"y":490.43},"width":33.623215,"height":11.017679,"page":584}],"sectionNumber":5935,"textBefore":"mg/kg animals; 25/","textAfter":"-mg/kg animals; and","comments":null,"startOffset":179,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dbbfa9fe53a707e654301ab022fd3a63","type":"PII","value":"(76-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.3758,"y":187.5},"width":36.04416,"height":11.017679,"page":584}],"sectionNumber":5935,"textBefore":"was quite good ","textAfter":"%). Evaluation of","comments":null,"startOffset":2450,"endOffset":2457,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4951ab6985a6616b65f8eb6533d84ea9","type":"CBI_author","value":"Blackburn K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.22562,"y":702.86},"width":57.889145,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"REFERENCES: Zenick H, ","textAfter":", Hope E","comments":null,"startOffset":3249,"endOffset":3260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b573d771e9d6c2f531d84bcc52971ce","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.82,"y":590.18},"width":26.507538,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Exon J. H. ","textAfter":" L.D. (1985).","comments":null,"startOffset":179,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4f0f4dd32e4c883c2c135eccc0c8bb7","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Female reproductive segment","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":452.51},"width":82.55249,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3714,"endOffset":3731,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ccd941f994da3ae4241be8d0b41bb914","type":"PII","value":"275-283","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.53403,"y":690.26},"width":37.655945,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"App. Pharmacol. 73, ","textAfter":". (Blackburn K","comments":null,"startOffset":3414,"endOffset":3421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9df9f3f3e7d554022b174005664afb7a","type":"PII","value":"307-330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":148.89944,"y":567.11},"width":34.320145,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Chapter 25. pp. ","textAfter":". Syngenta File","comments":null,"startOffset":370,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787288Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c39c128dd6282f16d0f1670ee717b4f7","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Female reproductive segment","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":715.34},"width":74.9128,"height":10.929359,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3227,"endOffset":3237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f7c05bf99dead592ac63d49a4a54fcb","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":142.57423,"y":303.93},"width":36.97937,"height":11.017679,"page":585}],"sectionNumber":5936,"textBefore":"compentence. Weanling female ","textAfter":" Dawley (SD)","comments":null,"startOffset":493,"endOffset":500,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb258f6dcb05cc2302a070ea88cc8e86","type":"PII","value":"12-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.88217,"y":203.46002},"width":26.767792,"height":11.017679,"page":585}],"sectionNumber":5936,"textBefore":"on treatment for ","textAfter":" weeks. The","comments":null,"startOffset":1229,"endOffset":1234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787288Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"43fccac0b89ebe278407ac18757f7f66","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":99.47616,"y":102.65997},"width":40.103676,"height":10.929359,"page":585}],"sectionNumber":5936,"textBefore":"reproduction of female ","textAfter":"-Dawley rats, apart","comments":null,"startOffset":1798,"endOffset":1805,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a2aaa6a2379ec7f9abf6a783d01a2b5","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Female reproductive segment","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.68959,"y":567.11},"width":37.941635,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"25. pp. 307-330. ","textAfter":" File No.","comments":null,"startOffset":379,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1dfac94cd0f113bffc520aa096f01ee8","type":"CBI_author","value":"Baldwin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.32051,"y":702.86},"width":38.19374,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"Hope E and ","textAfter":" D (1984).","comments":null,"startOffset":3273,"endOffset":3280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"704e46dd7c43597619fd0574e4544a94","type":"CBI_author","value":"Exon J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":476.9073,"y":601.58},"width":32.49359,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Idaho, USA. Published: ","textAfter":" H. Koller","comments":null,"startOffset":168,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec49a58190a0885a1dc19388dc5a8a98","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":280.17468,"y":613.1},"width":26.507599,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Exon J.H. and ","textAfter":" L.D. (1985).","comments":null,"startOffset":36,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21b9aba1d99c8da7791978b0715baad4","type":"CBI_author","value":"Blackburn K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.85944,"y":664.94},"width":57.546906,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"73, 275-283. (","textAfter":" et al,","comments":null,"startOffset":3424,"endOffset":3435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81e636e6e637ae8dc1183833248f95b2","type":"CBI_author","value":"Zenick H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":42.43313,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3239,"endOffset":3247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9dff1aff2ed68f1330dfd136968c88df","type":"CBI_author","value":"Hope E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.9218,"y":702.86},"width":34.49536,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3262,"endOffset":3268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3bb21cc0b5641e6e74a8189cc12d7f13","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.09216,"y":613.1},"width":22.035507,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Report: K-CA 5.8.1/42 ","textAfter":" J.H. and","comments":null,"startOffset":22,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c4e9421a9cf197d7aaa31b30f1a6be1","type":"PII","value":"12-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.50014,"y":178.5},"width":26.70987,"height":11.017679,"page":586}],"sectionNumber":5941,"textBefore":"group size was ","textAfter":" dams per","comments":null,"startOffset":416,"endOffset":421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787288Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d9742dfab117a3547db876b18ea13d2","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":551.75},"width":28.467995,"height":10.018499,"page":586}],"sectionNumber":5938,"textBefore":null,"textAfter":null,"comments":null,"startOffset":113,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"325bb08f65a73de192c87788d6d6489f","type":"CBI_author","value":"Aldrich","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.77,"y":564.83},"width":28.432007,"height":10.0905,"page":586}],"sectionNumber":5938,"textBefore":null,"textAfter":" (No 75530-1)","comments":null,"startOffset":92,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a81468b38df2703dd3f5e2b2c43d79cc","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":449.39},"width":30.528992,"height":10.0905,"page":586}],"sectionNumber":5939,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f4b071c5a85479c637d0de569a3e56d","type":"PII","value":"20-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.325,"y":338.73},"width":22.098969,"height":10.0905,"page":586}],"sectionNumber":5939,"textBefore":"Temperature: ","textAfter":" oC (68-73","comments":null,"startOffset":556,"endOffset":561,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787289Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a7ebb6cba994d793d0bccce35038d1d9","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.1526,"y":326.49},"width":40.95952,"height":10.67124,"page":587}],"sectionNumber":5955,"textBefore":"system parameters of ","textAfter":"-Dawley rats* (*rats","comments":null,"startOffset":941,"endOffset":948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9683cf8449e30fd65d634f8b5087f1a","type":"PII","value":"77 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-52: Summary of reproductive effects of female rats on exposure to 2,4,6-TCP. (a)\nInclusive of still born pups; (b) Non-inclusive of still born pups; (c) p<0.1 compared with controls\nby analysis of variance and least square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":169.46,"y":457.67},"width":10.059998,"height":10.0905,"page":587},{"topLeft":{"x":233.57,"y":457.67},"width":10.054001,"height":10.0905,"page":587}],"sectionNumber":5943,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787289Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6c6e45270881e03363600b2b4c37130","type":"PII","value":"300 77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-52: Summary of reproductive effects of female rats on exposure to 2,4,6-TCP. (a)\nInclusive of still born pups; (b) Non-inclusive of still born pups; (c) p<0.1 compared with controls\nby analysis of variance and least square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":92.064,"y":425.15},"width":14.619995,"height":10.0905,"page":587},{"topLeft":{"x":169.46,"y":425.15},"width":10.059998,"height":10.0905,"page":587}],"sectionNumber":5946,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1063ad5507e0dd9e67e71af2342a2662","type":"CBI_author","value":"Johansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.56247,"y":391.29},"width":42.075165,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"E, Renberg L, ","textAfter":" L, Zetterqvist","comments":null,"startOffset":297,"endOffset":306,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4db1d1d9e7ed650f987e700b227c6f91","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.84503,"y":477.59},"width":29.129944,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":"(Exon J.H and ","textAfter":" L.D 1985)","comments":null,"startOffset":1224,"endOffset":1230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"039eb4ec5f1fbfdc71a54823e99d98c6","type":"PII","value":"09 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.25198,"y":704.06},"width":9.937012,"height":10.0905,"page":588},{"topLeft":{"x":464.86,"y":704.06},"width":10.053986,"height":10.0905,"page":588}],"sectionNumber":5958,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad8c65698d8bf77bde710f393f323c2e","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":253.64996},"width":82.55249,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1522,"endOffset":1539,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af3a161fdd5eb0313dfbee7f209e1690","type":"PII","value":"03 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.25198,"y":682.46},"width":9.937012,"height":10.0905,"page":588},{"topLeft":{"x":463.54,"y":682.46},"width":10.053986,"height":10.0905,"page":588}],"sectionNumber":5960,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d28eeb34ba749a23faf7bac9c0ee1a24","type":"PII","value":"300 262","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":100.22,"y":671.54},"width":14.619995,"height":10.0905,"page":588},{"topLeft":{"x":181.7,"y":671.54},"width":14.608002,"height":10.0905,"page":588}],"sectionNumber":5961,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a0855996d43ea3a3d2e6cce00831a9e2","type":"PII","value":"30 256","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.5,"y":682.46},"width":10.059998,"height":10.0905,"page":588},{"topLeft":{"x":181.7,"y":682.46},"width":14.608002,"height":10.0905,"page":588}],"sectionNumber":5960,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"418d195a49e3d51d2f98987815bb91e0","type":"CBI_author","value":"Arrhenius","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":182.14592,"y":391.29},"width":40.830032,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"50, Sweden. Published: ","textAfter":" E, Renberg","comments":null,"startOffset":273,"endOffset":282,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c7e168153d07147bc855357e3393a14","type":"CBI_author","value":"Zetterqvist M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.53372,"y":391.29},"width":59.246185,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":null,"textAfter":null,"comments":null,"startOffset":310,"endOffset":323,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b22b3fecd58b58f64a8920fd9598c1d","type":"PII","value":"35-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.66954,"y":368.25},"width":24.430252,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Biol. Interactions. 18:","textAfter":". Syngenta File","comments":null,"startOffset":448,"endOffset":453,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787291Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d995d664d90575e825a871b30ed1d75","type":"CBI_author","value":"Renberg L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.90192,"y":391.29},"width":47.134796,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":null,"textAfter":null,"comments":null,"startOffset":286,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c6f4554205ed954878f05c365fabee7","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":229.67935,"y":368.25},"width":38.04129,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Biol. Interactions. 18:35-46. ","textAfter":" File No.","comments":null,"startOffset":455,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da14d275ef59e8175e43316f33525624","type":"CBI_author","value":"Arrhenius E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.44077,"y":425.75},"width":57.184357,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Report: K-CA 5.8.1/43 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f818f58783cd0ffb6579f291dba0624","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.48543,"y":628.82},"width":36.97937,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":"reproduction of female ","textAfter":"-Dawley rats, apart","comments":null,"startOffset":209,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c671b20fed466c224e0e36ef94b4b72e","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.57944,"y":477.59},"width":24.30542,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":"this study. (","textAfter":" J.H and","comments":null,"startOffset":1211,"endOffset":1215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"38c5e928094b2436233e7c8ba72c4ce1","type":"PII","value":"104 05","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.99,"y":402.69},"width":32.931824,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Lilla Frescati, S-","textAfter":" Stockholm 50,","comments":null,"startOffset":233,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787291Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"466a81185d4ed43adeb8636f315161e7","type":"PII","value":"04 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.25198,"y":693.26},"width":9.937012,"height":10.0905,"page":588},{"topLeft":{"x":464.86,"y":693.26},"width":10.053986,"height":10.0905,"page":588}],"sectionNumber":5959,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787291Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b877e677faaa8368fcdc8d3394e2ac36","type":"CBI_author","value":"Arrhenius E","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.9137,"y":100.97998},"width":57.381287,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":931,"endOffset":942,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ba41e889d7850948243195785cc77ba","type":"PII","value":"16-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.34708,"y":424.19},"width":22.116913,"height":10.0905,"page":589}],"sectionNumber":5975,"textBefore":"3 pellets until ","textAfter":" h before","comments":null,"startOffset":193,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787292Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae4c2094e2571799cda28e7b16218736","type":"CBI_author","value":"Arrhenius E","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.938225,"y":226.26001},"width":54.632317,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":327,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e40320f8f2363f2054d38e7d15c8e5a","type":"CBI_author","value":"Clark","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.66016,"y":126.29999},"width":25.58609,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":"measured using a ","textAfter":" polarographic electrode","comments":null,"startOffset":762,"endOffset":767,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41db81320024535074a666465c467d7b","type":"CBI_author","value":"Estabrook","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.44879,"y":113.70001},"width":45.623703,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":801,"endOffset":810,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c3d9bb28768c327b3877d8f6897e3ba","type":"PII","value":"150-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":475.67},"width":31.05101,"height":10.0905,"page":589}],"sectionNumber":5975,"textBefore":null,"textAfter":" g","comments":null,"startOffset":71,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787292Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfdee1d4d1b5271ce55ffbe48f388e1e","type":"CBI_author","value":"Estabrook","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.07837,"y":238.85999},"width":45.745087,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":300,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ccad71f46dd5374f209fde9030fea537","type":"PII","value":"115 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.42523,"y":200.94},"width":36.868958,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":"and centrifuging at ","textAfter":" g for","comments":null,"startOffset":617,"endOffset":624,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787292Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"815030e83b0c98d11b065187d22dd5e6","type":"CBI_author","value":"Carlson G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.3295,"y":291.09003},"width":42.11496,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"47907 (U.S.A.). Published: ","textAfter":" (1978). Effect","comments":null,"startOffset":258,"endOffset":267,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"040198c49ca83010514d2a82e2f95ce9","type":"PII","value":"193 265","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.73935,"y":390.57},"width":36.758575,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"J. Biol. Chem., ","textAfter":". (Arrhenius E","comments":null,"startOffset":1328,"endOffset":1335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787293Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d496142545bb169bcd36d887aa09a3d","type":"CBI_author","value":"Arrhenius E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":440.51},"width":58.706085,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1057,"endOffset":1068,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["RULE"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d936d0ba3556969b01a512011617519","type":"CBI_author","value":"Carlson G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.52495,"y":314.01},"width":45.092926,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"Report: K-CA 5.8.1/44 ","textAfter":" (1978). Effect","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c67abce06d16ea5ddf52647dff553649","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.84095,"y":715.58},"width":30.388481,"height":11.017679,"page":590}],"sectionNumber":5977,"textBefore":"the method of ","textAfter":" (Lowry et","comments":null,"startOffset":1689,"endOffset":1694,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"985afcf31377ebc771078d6012dbb908","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.62,"y":715.58},"width":30.388489,"height":11.017679,"page":590}],"sectionNumber":5977,"textBefore":"of Lowry (","textAfter":" et al.,","comments":null,"startOffset":1696,"endOffset":1701,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16fa3f833373ca36767eff5e7d263c86","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":241.0549,"y":465.11},"width":71.380005,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1024,"endOffset":1038,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31819c6319df5919e6444ea0e6d8004d","type":"CBI_author","value":"Lowry O","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":403.17},"width":42.7864,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"Interact. 1 361. ","textAfter":", Rosebrough N,","comments":null,"startOffset":1209,"endOffset":1216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3fa9679afebd898ff19a89d02c99bae","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":134.42,"y":268.05},"width":38.051224,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"Rat. Toxicology l1:145-151. ","textAfter":" File No.","comments":null,"startOffset":363,"endOffset":371,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9aed746ee1268b4d79a77b5a11d1c8a9","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":316.95493,"y":465.11},"width":47.21344,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"X, Academic Press, ","textAfter":", p. 41.","comments":null,"startOffset":1040,"endOffset":1048,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b62ea193de7e1ccfa019fbca5a3f79e","type":"CBI_author","value":"Estabrook R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":477.83},"width":56.818237,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":887,"endOffset":898,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["NER"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d5df85d55048cf265b5d4794a9644326","type":"PII","value":"145-151","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":490.56992,"y":279.57},"width":34.84964,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"Rat. Toxicology l1:","textAfter":". Syngenta File","comments":null,"startOffset":354,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787293Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce146f93e496c65af731aee48695712c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":153.41998},"width":82.69299,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1609,"endOffset":1626,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a59454b7e03fc6dcab125b7e06baa9cb","type":"CBI_author","value":"Rosebrough N","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":113.143684,"y":403.17},"width":66.776344,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"361. Lowry O, ","textAfter":", Farr A","comments":null,"startOffset":1218,"endOffset":1230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efafd35848582704d400478eb4537b0b","type":"CBI_author","value":"Farr A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.29474,"y":403.17},"width":31.978256,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"O, Rosebrough N, ","textAfter":" and Randall","comments":null,"startOffset":1232,"endOffset":1238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57cff621c8ed462219179bb37faedeb0","type":"CBI_author","value":"Arrhenius E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.97943,"y":365.85},"width":54.4888,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1338,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["RULE"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7f6a33ff7056bce577d2fa7022f1d92c","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":490.19},"width":74.9128,"height":10.929359,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":875,"endOffset":885,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18b044d048aea5f23c654b5e2f18c703","type":"CBI_author","value":"Randall R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":246.82707,"y":403.17},"width":47.213425,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"Farr A and ","textAfter":" (1951). Protein","comments":null,"startOffset":1243,"endOffset":1252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d52e4847ff7cb1e03baeb88eb74bc7ee","type":"CBI_author","value":"Arrhenius E","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.30113,"y":728.18},"width":56.917587,"height":11.017679,"page":590}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1621,"endOffset":1632,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4721ea08410dc97462843dca9637852c","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":338.61},"width":30.528992,"height":10.0905,"page":591}],"sectionNumber":5983,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":42,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6be5032a0dd4150380882439d30ca78","type":"CBI_author","value":"Netter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.29245,"y":444.11},"width":28.412323,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"described methods (","textAfter":" et al.","comments":null,"startOffset":1135,"endOffset":1141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"066a97c5c2e4f7c536d6281b1a2d16ca","type":"CBI_author","value":"Kinoshita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.0789,"y":556.55},"width":43.90143,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"as modified by ","textAfter":" et al.","comments":null,"startOffset":513,"endOffset":522,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47ff1ae056fb6c530986307c1ad4456a","type":"CBI_author","value":"Kinoshita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":431.39},"width":43.79104,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"1964, modified by ","textAfter":" et al.","comments":null,"startOffset":1167,"endOffset":1176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3885ad948918680e2989951f0eb9122c","type":"CBI_author","value":"Neal","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.15958,"y":556.55},"width":21.810425,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"described methods (","textAfter":" et al.","comments":null,"startOffset":480,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6366cb6d06b1981c5a6e059cb9c02c7a","type":"CBI_author","value":"Carlson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.37714,"y":519.35},"width":35.17981,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"previously described (","textAfter":" et al.","comments":null,"startOffset":662,"endOffset":669,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a8a7f1d0c942a8ec9dec70730e6b62a","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.73572,"y":494.03},"width":30.388489,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"of Lowry (","textAfter":" et al.","comments":null,"startOffset":847,"endOffset":852,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd21bf2ca955bd9aadc84562e35ae0d7","type":"CBI_author","value":"Gerlach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.78323,"y":243.53998},"width":35.65454,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2203,"endOffset":2210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed332765a7026364c73e31c0641ea021","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.9992,"y":494.03},"width":30.388489,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"the method of ","textAfter":" (Lowry et","comments":null,"startOffset":840,"endOffset":845,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64e455a752729bb6939831623087996d","type":"CBI_author","value":"Dallner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":471.01633,"y":506.63},"width":34.2536,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":789,"endOffset":796,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9124b54b6fe75852cb46673fd805295b","type":"CBI_author","value":"Harper","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.1114,"y":218.22003},"width":31.525604,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"glucose-6-phosphatase determinations (","textAfter":" et al.","comments":null,"startOffset":2432,"endOffset":2438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7da7d06a48531c9248a662b2afd0cdba","type":"CBI_author","value":"Lucier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.91806,"y":343.53},"width":29.748169,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1696,"endOffset":1702,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fca373687f7f8ba68b2485fb9a0c156","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":184.15297,"y":123.900024},"width":47.286484,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Analysis, Academic Press, ","textAfter":", p. 761.","comments":null,"startOffset":2275,"endOffset":2283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31e0d096f1ae31f1e62aab29a26e5daa","type":"CBI_author","value":"DuBois KP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":139.16496,"y":410.25},"width":56.299377,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1037,"endOffset":1046,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6140c3826bc2484cfc869954db40e3f","type":"CBI_author","value":"Farr","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":193.70255,"y":248.46002},"width":19.193909,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"GH, Rosebrough NJ, ","textAfter":" AL and","comments":null,"startOffset":1692,"endOffset":1696,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65ad3f2c8f76e596f6e6f8cefbc30afd","type":"CBI_author","value":"Carlson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":323.01},"width":35.301277,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Pharmacol., 9 505. ","textAfter":" GP (1975)","comments":null,"startOffset":1361,"endOffset":1368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f5aa82d9bc1914e296d972da3fbd5c03","type":"PII","value":"146 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":292.60995,"y":198.41998},"width":31.238525,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Pharmacol. Exp. Ther., ","textAfter":". Lucier GW,","comments":null,"startOffset":1956,"endOffset":1962,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787294Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39aad7e980f1799b58fdeca74bee1b2d","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":108.20881,"y":123.900024},"width":71.52354,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2259,"endOffset":2273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93836bbb36ad3bccb2a9589836aa1567","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":184.15297,"y":86.583984},"width":47.180344,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Analysis, Academic Press, ","textAfter":", p. 788.","comments":null,"startOffset":2405,"endOffset":2413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ab3a97988f1ffceee42acadb5fa2870","type":"CBI_author","value":"DuBois KP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":209.43457,"y":372.93},"width":53.41794,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1190,"endOffset":1199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff7b588a318f652cfba768c9ef088ef3","type":"CBI_author","value":"Lowry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":248.46002},"width":30.388474,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Suppl. 166 7 ","textAfter":" GH, Rosebrough","comments":null,"startOffset":1667,"endOffset":1672,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5455a05b9c5720ae6a116a074704fc23","type":"CBI_author","value":"Randall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":252.5678,"y":248.46002},"width":35.146713,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Farr AL and ","textAfter":" RJ (1951).","comments":null,"startOffset":1704,"endOffset":1711,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80a3612432060756a71cd92cf3a6ce95","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":108.20881,"y":86.583984},"width":71.52354,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2389,"endOffset":2403,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4093f44588d39776d5502391ee5d1dc2","type":"CBI_author","value":"Netter","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":211.14001},"width":28.53376,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Chem., 193 265. ","textAfter":" KJ and","comments":null,"startOffset":1799,"endOffset":1805,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcc682663f4c31d9a5ea7cc9291ed7f9","type":"CBI_author","value":"Dallner G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":285.69},"width":46.406883,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1505,"endOffset":1514,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b5536f5d68723c45721254cd83b21d0","type":"CBI_author","value":"Matthews","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.63507,"y":173.82},"width":44.431366,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"McDaniel OS and ","textAfter":" HB (1971).","comments":null,"startOffset":1991,"endOffset":1999,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95df40abcae79f87bfa81d61b3df5307","type":"CBI_author","value":"McDaniel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.89841,"y":173.82},"width":44.961304,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"61. Lucier GW, ","textAfter":" OS and","comments":null,"startOffset":1975,"endOffset":1983,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a3665987ec091c09bde43875418c8dd","type":"CBI_author","value":"Seidel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":128.964,"y":211.14001},"width":28.42337,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Netter KJ and ","textAfter":" G (1964).","comments":null,"startOffset":1813,"endOffset":1819,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5b23b2c79696bdf87444e16241f83c2","type":"PII","value":"193 265","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.76575,"y":235.73999},"width":36.758575,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"J. Biol. Chem., ","textAfter":". Netter KJ","comments":null,"startOffset":1790,"endOffset":1797,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787295Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d897ace685283ed25b5f38586f4aa7f7","type":"CBI_author","value":"Carlson G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":433.49945,"y":61.960022},"width":46.02112,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"p. 788. (","textAfter":" et al,","comments":null,"startOffset":2424,"endOffset":2433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad1d724b97a516e40f1fd7ea8fc9ff32","type":"CBI_author","value":"Lucier GW","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":173.82},"width":52.071045,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1964,"endOffset":1973,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ae931fe7d6b07a3b5dd5dbe21725401","type":"CBI_author","value":"Kinoshita","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":372.93},"width":43.79104,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Ther 148 185. ","textAfter":" FK, Frawley","comments":null,"startOffset":1161,"endOffset":1170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b90ee7292a4d59c1b6e156594f28961","type":"CBI_author","value":"Rosebrough","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":118.65264,"y":248.46002},"width":54.25698,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"7 Lowry GH, ","textAfter":" NJ, Farr","comments":null,"startOffset":1677,"endOffset":1687,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c74c924e986a6a51750ec018c678d64","type":"CBI_author","value":"Frawley JP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.17023,"y":372.93},"width":52.10417,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1175,"endOffset":1185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"899a3883f92e08bea587fed054609d7a","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":422.75},"width":74.9128,"height":10.929359,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1013,"endOffset":1023,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fda7834d8f90e430e1770b94b75ebba8","type":"CBI_author","value":"Gerlach U","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":136.5},"width":46.61728,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2161,"endOffset":2170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77122f5abcca32e167a5242d8f9c3a8c","type":"PII","value":"148 185","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.78285,"y":397.65},"width":36.75853,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Pharmacol. Exp Ther ","textAfter":". Kinoshita FK,","comments":null,"startOffset":1152,"endOffset":1159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ae6e504981c289ef51815eb89b4544d","type":"CBI_author","value":"Neal","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":410.25},"width":21.810402,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"not discussed. REFERENCES: ","textAfter":" RA and","comments":null,"startOffset":1025,"endOffset":1029,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34ced2abf53f3fc39b69933384c03ee6","type":"CBI_author","value":"Harper","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":99.17999},"width":31.547676,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"York, p. 761. ","textAfter":" AE (1965)","comments":null,"startOffset":2293,"endOffset":2299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05be72b34a7c63c7da233f399ace796a","type":"PII","value":"145 520","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":477.8543,"y":161.22003},"width":36.78058,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Arch. Biochem. Biophys., ","textAfter":". Gerlach U","comments":null,"startOffset":2152,"endOffset":2159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5024901ac51d6ec76b6f0342bf722425","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.29736,"y":541.55},"width":82.55249,"height":11.017679,"page":594}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2777,"endOffset":2794,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3d188721c341d5831e31667e109304e","type":"CBI_author","value":"Schwarz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.38235,"y":691.82},"width":35.401855,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Published: Götz R, ","textAfter":" L, Greim","comments":null,"startOffset":306,"endOffset":313,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9faf2d34c2ad43529500b378e2fd828","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":271.68973,"y":668.78},"width":37.94171,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Arch. Toxicol. 44:147-155. ","textAfter":" File No.","comments":null,"startOffset":499,"endOffset":507,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c464c596d60e2331f6d43f847a8727a4","type":"CBI_author","value":"Götz R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.36124,"y":726.38},"width":29.704712,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Report: K-CA 5.8.1/45 ","textAfter":".et al., (1980).","comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bc89685abf1f279d865833cdd23bb052","type":"CBI_author","value":"Götz R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.1798,"y":691.82},"width":32.46364,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":null,"textAfter":null,"comments":null,"startOffset":298,"endOffset":304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed757f5e7d06d8d1094133abe65bd87c","type":"PII","value":"(50-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.41103,"y":405.69},"width":35.808983,"height":11.017679,"page":594}],"sectionNumber":6010,"textBefore":"liver cells. 2,4,6-TCP ","textAfter":" µM) interferes","comments":null,"startOffset":298,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3f4719a6913486a9f6b0f705a8a3c591","type":"PII","value":"147-155","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.21083,"y":668.78},"width":34.409256,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Arch. Toxicol. 44:","textAfter":". Syngenta File","comments":null,"startOffset":490,"endOffset":497,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"352fe4b85c0761c87d8d544486c3ea95","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":482.47107,"y":703.34},"width":38.23047,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Federal Republic of ","textAfter":". Published: Götz","comments":null,"startOffset":278,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"946ed0e245167a1a49f209b663c48fff","type":"CBI_author","value":"Greim","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.84766,"y":691.82},"width":26.607147,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"R, Schwarz L, ","textAfter":" H (1980).","comments":null,"startOffset":317,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d21c26f6f4b1021f588a096d5e7a93b9","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":99.089775,"y":314.49},"width":22.318237,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"described earlier (","textAfter":" et al.,","comments":null,"startOffset":274,"endOffset":278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f308db392cdee16b06694153f60e81a7","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":225.71857,"y":339.69},"width":37.273193,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"isolated from male ","textAfter":" Dawley rats,","comments":null,"startOffset":93,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41e09bae4f2a4fd4af290f680a39eb48","type":"CBI_author","value":"Sardini","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.49728,"y":87.42401},"width":32.728966,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1854,"endOffset":1861,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"778525925e1e1e20e571deb67fc895d3","type":"CBI_author","value":"Schwenk","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.04848,"y":327.09003},"width":41.174576,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":185,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"29c29d7c371448c3d4507b91b373ee99","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.4523,"y":339.69},"width":22.417603,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"previously described (","textAfter":" et al.,","comments":null,"startOffset":139,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b982495dd81bb3e2408b77f564c20778","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.71786,"y":251.85004},"width":45.759003,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"at 37°C in ","textAfter":" L-15 medium","comments":null,"startOffset":608,"endOffset":617,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56bdf5e335c452d5d524e46b7a40bb5a","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":576.71},"width":30.528992,"height":10.0905,"page":595}],"sectionNumber":6013,"textBefore":null,"textAfter":" Dawley","comments":null,"startOffset":42,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1adc927a902bb9997d488bc1188b846d","type":"PII","value":"50-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":464.65527,"y":264.69},"width":32.164703,"height":11.017679,"page":596}],"sectionNumber":6019,"textBefore":"at concentrations from ","textAfter":" µM. At","comments":null,"startOffset":1868,"endOffset":1874,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787297Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e572d5a5868b468a24afb40679d5d52e","type":"CBI_author","value":"Clark","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.1434,"y":652.34},"width":25.46463,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":"measured with a ","textAfter":" oxygen electrode","comments":null,"startOffset":2734,"endOffset":2739,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"596f9a6ec3ab1c9ae5a0dff216fc11fa","type":"CBI_author","value":"Szarkowska","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.8813,"y":677.66},"width":54.00305,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2539,"endOffset":2549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4601738847feaa7377e81fad6b9e5ab2","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.62875,"y":101.58002},"width":22.417603,"height":11.017679,"page":596}],"sectionNumber":6019,"textBefore":"cells completely (","textAfter":" et al.,","comments":null,"startOffset":2839,"endOffset":2843,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b087b9d5af198d90fb006ecc9413681a","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":690.26},"width":22.417595,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":"Triton X-100 (","textAfter":" et al.,","comments":null,"startOffset":2381,"endOffset":2385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5bacdcb2d6ffb025d8d5b801adba6cf2","type":"CBI_author","value":"Klaassen","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.95427,"y":740.9},"width":40.79918,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":"the method of ","textAfter":" and Plaa","comments":null,"startOffset":2013,"endOffset":2021,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e51cd6b510da01b542c9c3bb5545dc9","type":"CBI_author","value":"Heil J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.31741,"y":389.97},"width":27.5932,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"Report: K-CA 5.8.1/46 ","textAfter":" and Reifferscheid","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0938e0a9b96b2cca10432409ce026cfd","type":"PII","value":"213-224","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.19229,"y":541.07},"width":37.627716,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"Appl. Pharmacol. 32, ","textAfter":" Schwenk M,","comments":null,"startOffset":3877,"endOffset":3884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787298Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b58afaf5988fdb8e4668117ea469c4af","type":"CBI_author","value":"Marzo A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.93611,"y":591.02},"width":41.47264,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3664,"endOffset":3671,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5806ebb95bc763fff202697dff4e9203","type":"CBI_author","value":"Plan G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.84833,"y":628.34},"width":38.83409,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3509,"endOffset":3515,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"08cfbfb216951b14866d35a5d0c88066","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.33,"y":217.85999},"width":82.530426,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4395,"endOffset":4412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"03289f8d18d37592f3f61d6f355b629d","type":"CBI_author","value":"Kasperek S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.114716,"y":702.86},"width":51.640472,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3231,"endOffset":3241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"754f1d46c11f8dbe4a9b103d20048c6c","type":"PII","value":"2389-2394","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.8228,"y":332.49},"width":44.53659,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"test. Carcinogenesis l3:","textAfter":". Syngenta File","comments":null,"startOffset":473,"endOffset":482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787298Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c727f5b52566cbdbe3c933cc84814f3b","type":"CBI_author","value":"Heil","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":378.1788,"y":355.41},"width":18.151154,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"Mainz, Germany. Published: ","textAfter":" J and","comments":null,"startOffset":332,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb8f332de1713398c4bafd3241db67b9","type":"CBI_author","value":"Klaassen","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":628.34},"width":40.799202,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"Weinheim: Verlag Chemie ","textAfter":" C, Plan","comments":null,"startOffset":3497,"endOffset":3505,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ac489a14586a1f7101b6238f47afa77","type":"PII","value":"827-838","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.46207,"y":690.26},"width":37.597946,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"Physiol. Chem. 356:","textAfter":" Bergmeyer U,","comments":null,"startOffset":3342,"endOffset":3349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787299Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db8cac42f6c4b92ef9159c0c819b44e7","type":"CBI_author","value":"Reifferscheid G.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.53778,"y":389.97},"width":67.51294,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"Heil J. and ","textAfter":" (1992). Detection","comments":null,"startOffset":34,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7251477851ca300b20f35a26979ca003","type":"PII","value":"189-197","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":154.56577,"y":503.75},"width":37.614243,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"J. Biochem. 64:","textAfter":" Szarkowska L,","comments":null,"startOffset":4006,"endOffset":4013,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787299Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5ba7f625ab26ff434c9e1e559992ed6","type":"CBI_address","value":"Germany","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":285.42117,"y":355.41},"width":38.24048,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"63, 6500 Mainz, ","textAfter":". Published: Heil","comments":null,"startOffset":312,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f9e7fa36cd0844810f05c4d755f2b3c","type":"CBI_author","value":"Schwarz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.08142,"y":516.35},"width":38.767868,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"M, Burr R, ","textAfter":" L, Pfaff","comments":null,"startOffset":3904,"endOffset":3911,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"269e7e3bac76d8b8ec44f8b62caed8d0","type":"CBI_author","value":"Sardini D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":591.02},"width":44.604645,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3633,"endOffset":3642,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ff37088e8722f821b2bc4c59d0b8f7c","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":133.82,"y":332.49},"width":61.97513,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":null,"textAfter":null,"comments":null,"startOffset":455,"endOffset":469,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"20a29d143fbd434181997bbf19d9873c","type":"CBI_author","value":"Schwenk M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":516.35},"width":54.850563,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3885,"endOffset":3894,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c6c50c2d1c6aa57f7845d70e9595f87","type":"CBI_author","value":"Götz R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.96945,"y":441.83},"width":32.475037,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4121,"endOffset":4127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d4355c7b85dcc1dbb0cbc0a5dfa05df1","type":"CBI_author","value":"Pfaff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.65213,"y":516.35},"width":23.024796,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"R, Schwarz L, ","textAfter":" E (1976).","comments":null,"startOffset":3915,"endOffset":3920,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75165af1bdcbfb078089aef125222031","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":22.417595,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"the cells. REFERENCES: ","textAfter":" H, Kasperek","comments":null,"startOffset":3223,"endOffset":3227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41b1d05d1e7bf59e73f0235d1e327203","type":"CBI_author","value":"Czok G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.64047,"y":553.67},"width":34.88176,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3769,"endOffset":3775,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"073d77faaeac86f645020577026be3c8","type":"CBI_author","value":"Klingenberg M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":132.46367,"y":479.15},"width":68.60898,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4028,"endOffset":4041,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"672d311f6bccac0c39c6639f95f5f5da","type":"CBI_author","value":"Bergmeyer U","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":665.66},"width":61.874557,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3350,"endOffset":3361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e75fec8ea8b8031586ed47457293bd50","type":"CBI_author","value":"Barbi G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.24432,"y":591.02},"width":37.277435,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3644,"endOffset":3651,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"767ce494a589f6195b796cc5c5fe22fe","type":"CBI_author","value":"Bergmeyer, H. U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.0668,"y":665.66},"width":82.08884,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3417,"endOffset":3433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed45a97a4eaf377ed50173cbaf34727c","type":"CBI_author","value":"Hoppe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.8227,"y":702.86},"width":30.267029,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"isolated liver cells. ","textAfter":"-Seylers Z. Physiol.","comments":null,"startOffset":3306,"endOffset":3311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f51401e2b068700c16dde90a48f42a7","type":"CBI_author","value":"Szarkowska L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":479.15},"width":63.64096,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4014,"endOffset":4026,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26cfe4b6ee378b90a2d017d6c51b373f","type":"CBI_author","value":"Reifferscheid G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.44308,"y":355.41},"width":65.610596,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":null,"textAfter":null,"comments":null,"startOffset":343,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66b42bd4f741bdb7fda04185563cf1c3","type":"PII","value":"1322-1326","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.08844,"y":615.62},"width":48.761505,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"J. Physiol. 213:","textAfter":" Sardini D,","comments":null,"startOffset":3623,"endOffset":3632,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7873Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e560691144c13032dc476af9b3bf621b","type":"CBI_author","value":"Bastoni F","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":156.93597,"y":591.02},"width":44.552795,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3653,"endOffset":3662,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"120bac949ccde338210a091e26a2f981","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":715.34},"width":74.9128,"height":10.929359,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3211,"endOffset":3221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ca7926b61e50847b43cace7dd908f18","type":"CBI_author","value":"Burr","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.44608,"y":516.35},"width":21.103844,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"213-224 Schwenk M, ","textAfter":" R, Schwarz","comments":null,"startOffset":3896,"endOffset":3900,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86acda36ec8a92795c0a3470f863c64b","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.8294,"y":332.49},"width":38.05127,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"test. Carcinogenesis l3:2389-2394. ","textAfter":" File No.","comments":null,"startOffset":484,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52be00eabf13f733be82a393e5c554f0","type":"CBI_author","value":"Pfaff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.48494,"y":702.86},"width":23.024796,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"H, Kasperek S, ","textAfter":" E (1975).","comments":null,"startOffset":3243,"endOffset":3248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fe26c8ea56a666d9414b842ac9a666b","type":"CBI_address","value":"Merck","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the test described, 2,4,6-TCP did not cause a greater than 50% inhibition of\nDNA synthesis over the concentration range tested.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.83902,"y":565.19},"width":24.45401,"height":10.0905,"page":598}],"sectionNumber":6021,"textBefore":"Not defined (","textAfter":", Darmstadt or","comments":null,"startOffset":127,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51019b96f02baab65bade25629afebe1","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the test described, 2,4,6-TCP did not cause a greater than 50% inhibition of\nDNA synthesis over the concentration range tested.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":413.60312,"y":565.19},"width":34.524963,"height":10.0905,"page":598}],"sectionNumber":6021,"textBefore":"or Sigma, Deisenhofen, ","textAfter":")","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"facbde7e9800024384ffcc7d69024955","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":320.86896,"y":133.26001},"width":62.07483,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":null,"textAfter":null,"comments":null,"startOffset":136,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13de2765d649ada901d0f874efd7940f","type":"CBI_author","value":"Heil","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.09946,"y":196.62},"width":19.900482,"height":11.017679,"page":599}],"sectionNumber":6029,"textBefore":"range tested. (","textAfter":" J and","comments":null,"startOffset":456,"endOffset":460,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0db4dca160e65db471b017b78c3a2f91","type":"CBI_author","value":"Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.98677,"y":144.77997},"width":38.36,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"5.8.1/47 Kitchin K. ","textAfter":" (1994). Dose-Response","comments":null,"startOffset":33,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dec36d15b6624cf26429bf06d7b36596","type":"CBI_address","value":"Bio Cell Consulting, Reinach, Switzerland","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Immunological assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":109.544624,"y":690.26},"width":190.34705,"height":11.017679,"page":599}],"sectionNumber":6026,"textBefore":null,"textAfter":null,"comments":null,"startOffset":325,"endOffset":366,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74e44945633670a26fc367f27acc7d4c","type":"CBI_author","value":"Reifferscheidt G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.4721,"y":196.62},"width":73.853,"height":11.017679,"page":599}],"sectionNumber":6029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":467,"endOffset":483,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6c881e353b842bdd46931dec423c7de9","type":"PII","value":"31-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.08394,"y":87.18402},"width":24.415863,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"carcinogens. Toxicology 88:","textAfter":". Syngenta File","comments":null,"startOffset":455,"endOffset":460,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787301Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae0e06953981550785752fb9994adb43","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.07936,"y":87.18402},"width":38.150833,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"carcinogens. Toxicology 88:31-49. ","textAfter":" File No.","comments":null,"startOffset":462,"endOffset":470,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4655c90410ebab23bfecd3ac128008f","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":393.81393,"y":110.22003},"width":31.039429,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"27711, USA. Published: ","textAfter":" K and","comments":null,"startOffset":325,"endOffset":332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a9f84edc7ae497d1c215bdd704b405e","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":455.17758,"y":110.22003},"width":28.151001,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"Kitchin K and ","textAfter":" J (1994).","comments":null,"startOffset":339,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"020e1beaae911b39bf76f3fe76b8cbac","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":198.34412,"y":144.77997},"width":30.83017,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"Report: K-CA 5.8.1/47 ","textAfter":" K. Brown","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd7200516ebd7d5cb74e670ae28cb80","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":679.58},"width":82.68771,"height":11.017679,"page":600}],"sectionNumber":6029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":774,"endOffset":791,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72d4d75a07b1caea7b68f0756cc90e8d","type":"CBI_address","value":"Charles River Laboratories","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the reported study, 2,4,6-TCP was not found to induce DNA damage in rat\nlivers at a concentration of 500 mg/kg as measured using rat hepatic DNA damage assay.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.65,"y":179.34003},"width":98.42502,"height":10.0905,"page":600}],"sectionNumber":6032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":103,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"baabbc67da5302259cc338f37e5c9581","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the reported study, 2,4,6-TCP was not found to induce DNA damage in rat\nlivers at a concentration of 500 mg/kg as measured using rat hepatic DNA damage assay.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":205.02002},"width":30.528992,"height":10.0905,"page":600}],"sectionNumber":6032,"textBefore":null,"textAfter":"-Dawley (CD)","comments":null,"startOffset":42,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcb5fd1c7c67a9f0fcaba85630cc5204","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.51169,"y":465.11},"width":32.000336,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"The Stout and ","textAfter":" (Stout and","comments":null,"startOffset":1491,"endOffset":1497,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0c7e0bcd06518b90f8a5de0e4f1a553","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":182.10004},"width":34.097916,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"dosed control. REFERENCES: ","textAfter":" K and","comments":null,"startOffset":456,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"474d1c285ce120b331aa303085e4aa78","type":"CBI_author","value":"Ewig R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":111.56495,"y":144.77997},"width":37.619667,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":625,"endOffset":631,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6bf6de554f324c7a17915f8a262a02e","type":"CBI_author","value":"Marcel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.21,"y":132.18},"width":32.243225,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Friedberg, eds.) (","textAfter":"-Dekker, New York,","comments":null,"startOffset":759,"endOffset":765,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2a4d95de0cfb934627227a6e9c85a36","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":130.75247,"y":169.5},"width":68.16737,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":576,"endOffset":590,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9e76a5216474d07fff89c8282f3ab89","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":194.58002},"width":74.9128,"height":10.929359,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":444,"endOffset":454,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"866f3d6d1826954ba56b7002fdb0b24b","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94171,"y":465.11},"width":32.121796,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"Becker (Stout and ","textAfter":", 1982) modification","comments":null,"startOffset":1509,"endOffset":1515,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fa4343d8f982d4832bac1d55639c595","type":"PII","value":"302-307","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.39566,"y":94.86401},"width":37.79431,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Analytical Biochemistry 127:","textAfter":". Nicolini C,","comments":null,"startOffset":969,"endOffset":976,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787302Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"597d6b8c2b16093633d6e1160613ae2e","type":"CBI_author","value":"Nicolini","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.364494,"y":439.91},"width":37.05665,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"SDSlysis step (","textAfter":" et. al","comments":null,"startOffset":1685,"endOffset":1693,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25b0ca51b7eb0bcf1ae581ba3eec3876","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.15136,"y":527.75},"width":27.352486,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"a size C ","textAfter":"-Elvehjem homogenizer (clearance","comments":null,"startOffset":1180,"endOffset":1186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"225233d86d4c2c0d026a9353d4243166","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.3392,"y":465.11},"width":25.46463,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"et al (","textAfter":" et al,","comments":null,"startOffset":1555,"endOffset":1559,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e12a638bea71f2753bb5185c1793c2a9","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":116.06,"y":465.11},"width":24.228165,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"Brown, 1989). The ","textAfter":" and Becker","comments":null,"startOffset":1481,"endOffset":1486,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45b04ebf633dacd79a19a06d9a81a885","type":"CBI_author","value":"Kohn","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":144.77997},"width":25.586067,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"and Mutagenesis; 9:61-69. ","textAfter":" K, Ewig","comments":null,"startOffset":617,"endOffset":621,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59ddd6e27c64625d56e1f5bd7ca96dc6","type":"CBI_author","value":"Becker","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.58463,"y":107.58002},"width":32.121758,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Stout D and ","textAfter":" F (1982).","comments":null,"startOffset":816,"endOffset":822,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aca4c48fc981cf05b83399eae645396b","type":"CBI_author","value":"Kitchin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.93228,"y":477.83},"width":34.0979,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"reported study (","textAfter":" and Brown,","comments":null,"startOffset":1451,"endOffset":1458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b50ccb56ce25e075009210ed8090663","type":"CBI_author","value":"Erickson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":157.00557,"y":144.77997},"width":40.20305,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"K, Ewig R, ","textAfter":" L and","comments":null,"startOffset":633,"endOffset":641,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd05af175fbe212477a82bb99675cf3","type":"PII","value":"379-401","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.26828,"y":132.18},"width":37.671722,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"York, 1981), pp. ","textAfter":". Stout D","comments":null,"startOffset":795,"endOffset":802,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787302Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d9de45e203cc5f195ec4f80ce5a910a","type":"PII","value":"61-69","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.23172,"y":169.5},"width":26.698273,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"and Mutagenesis; 9:","textAfter":". Kohn K,","comments":null,"startOffset":610,"endOffset":615,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787303Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8d845696c2aef54a6aa45840573acf1","type":"CBI_author","value":"Stout","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":107.58002},"width":24.316475,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"1981), pp. 379-401. ","textAfter":" D and","comments":null,"startOffset":804,"endOffset":809,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c09bcb152c0fe71483918369a11be24","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.94138,"y":132.18},"width":47.18033,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Friedberg, eds.) (Marcel-Dekker, ","textAfter":", 1981), pp.","comments":null,"startOffset":774,"endOffset":782,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f281cbc62a1152ca7b9e0f9816c9f4c","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.49,"y":465.11},"width":24.22818,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"and Becker (","textAfter":" and Becker,","comments":null,"startOffset":1499,"endOffset":1504,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1781d698f3e89a7f6d8d81626bd3556","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.88348,"y":465.11},"width":25.58606,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"modification of the ","textAfter":" et al","comments":null,"startOffset":1543,"endOffset":1547,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d2b112409d6d0c19e3236515e9c979e","type":"CBI_author","value":"Kitchin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.6261,"y":578.39},"width":34.0979,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"reported study (","textAfter":" and Brown,","comments":null,"startOffset":851,"endOffset":858,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2401b7fea9c17f6e22a215af54ac2aab","type":"CBI_author","value":"Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":129.9134,"y":182.10004},"width":40.788147,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Kitchin K and ","textAfter":" (1989). Biochemical","comments":null,"startOffset":470,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6824f30a854f94cbd305697c23ba322","type":"CBI_author","value":"Hanawalt and E. C. Friedberg","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":143.98941,"y":132.18},"width":132.36496,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":722,"endOffset":750,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6128ef45c96ff4268da60576c267a176","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":219.28224,"y":169.5},"width":56.54225,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":595,"endOffset":606,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76809c54eac86ae540e2ebb767c1c526","type":"CBI_author","value":"Pino A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.09375,"y":753.5},"width":32.47505,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1002,"endOffset":1008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5047eda72a3fd4d18e44fe89177b8f16","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.61426,"y":240.77997},"width":35.886414,"height":10.929359,"page":602}],"sectionNumber":6038,"textBefore":"the livers of ","textAfter":" rats. 2,4,6-TCP","comments":null,"startOffset":901,"endOffset":908,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"291023627d19a64c108d003ba8891f0d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.21124,"y":468.11},"width":82.55249,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1476,"endOffset":1493,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aa334b58f0cf3a53ff60157626f3d7d3","type":"CBI_author","value":"Robbiano L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":116.963524,"y":753.5},"width":54.047203,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":990,"endOffset":1000,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31a0363aab11e9986165b1efbc14e7c1","type":"CBI_author","value":"Pereira M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.72772,"y":651.74},"width":45.22159,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Report: K-CA 5.8.1/48 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc35aae2e654624c6f15b592d20db842","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.45944,"y":703.58},"width":34.0979,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"6: 385-389. (","textAfter":" K and","comments":null,"startOffset":1212,"endOffset":1219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2df202d30a6052fa3128d282fcbcdca","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.56235,"y":703.58},"width":30.896301,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"(Kitchin K and ","textAfter":" J, 1994)","comments":null,"startOffset":1226,"endOffset":1231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80648cfdc8c27b51e5c64843dd88044a","type":"CBI_author","value":"Herren S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.35342,"y":617.18},"width":37.463562,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Published: Periera M, ","textAfter":", Britt A,","comments":null,"startOffset":360,"endOffset":368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5dade8a1b10446c104f2b0eb90c4a234","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":86.15088,"y":728.18},"width":68.15633,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1184,"endOffset":1198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d06fe6dbe691a9581f6b70526358b9d","type":"CBI_author","value":"Nicolini","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":37.0456,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"Analytical Biochemistry 127:302-307. ","textAfter":" C, Robbiano","comments":null,"startOffset":978,"endOffset":986,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aafb5f7aa4a2ce5a2707c58b15af628a","type":"CBI_author","value":"Khoury M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.88345,"y":605.78},"width":49.89366,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"S, Britt A, ","textAfter":" (1982). Initiation/promotion","comments":null,"startOffset":379,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e11198f73a674aec37a3624e11507c1","type":"PII","value":"11-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.24191,"y":582.71},"width":24.387878,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Toxicological Pathology 10(2):","textAfter":". Syngenta File","comments":null,"startOffset":555,"endOffset":560,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787304Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dcb32c1b3e5004e8878abedbd02f7f20","type":"CBI_author","value":"Periera M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.09924,"y":617.18},"width":41.487366,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Ohio 45268. Published: ","textAfter":", Herren S,","comments":null,"startOffset":349,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fe1ebe421ca083ef77787ccd83d073a","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":458.0976,"y":367.53},"width":36.968292,"height":11.017679,"page":602}],"sectionNumber":6038,"textBefore":"liver of male ","textAfter":" Dawley rats","comments":null,"startOffset":219,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d31c5cbae314e39a616be099dc5dbbaf","type":"PII","value":"385-389","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.37216,"y":728.18},"width":37.557846,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"rate. Carcinogenesis 6: ","textAfter":". (Kitchin K","comments":null,"startOffset":1202,"endOffset":1209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787304Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b2ff7d68fbda60be1ebcd5226cac964","type":"CBI_author","value":"Maura A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.6187,"y":753.5},"width":41.40219,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1010,"endOffset":1017,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07b75bb26dc0e3e8934de07d703cfead","type":"CBI_author","value":"Finollo R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":260.0708,"y":753.5},"width":43.503967,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1019,"endOffset":1028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0059228f2547c8afb3f4fddcc600fe6","type":"CBI_author","value":"Brambilla","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.1847,"y":753.5},"width":45.005432,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"Finollo R and ","textAfter":" G (1985).","comments":null,"startOffset":1033,"endOffset":1042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcdb5562aa5299461e436ec01f39b06a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.20935,"y":582.71},"width":37.931686,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Toxicological Pathology 10(2):11-18. ","textAfter":" File No.","comments":null,"startOffset":562,"endOffset":570,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"edd9b268d1ff973ac741ffc9ef3df17e","type":"CBI_author","value":"Britt A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":503.55392,"y":617.18},"width":19.36618,"height":10.526819,"page":602},{"topLeft":{"x":133.82,"y":605.78},"width":8.191116,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"M, Herren S, ","textAfter":", Khoury M","comments":null,"startOffset":370,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4a00347b0c61e7ce240946147042b9f","type":"CBI_author","value":"St. Clair","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.99696,"y":617.18},"width":34.913803,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Agency, 26 W. ","textAfter":" Street, Cincinnati,","comments":null,"startOffset":296,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f70daf9a6281917feb13a3371bef79d","type":"PII","value":"175-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":627.38},"width":31.050995,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":null,"textAfter":" g at","comments":null,"startOffset":106,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787304Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfdce903c41584fb97714086c725d6f1","type":"CBI_author","value":"Herren","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.7093,"y":304.05},"width":31.558731,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":233,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c081451d0d48ced1d7e91ad3e58feefb","type":"CBI_author","value":"Rutenburg","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.73233,"y":190.14001},"width":47.423218,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":936,"endOffset":945,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a5ec82f81c587d92c03808a88f36873e","type":"CBI_author","value":"Ford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.52322,"y":215.46002},"width":21.74414,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":"previously described (","textAfter":" et al.,","comments":null,"startOffset":797,"endOffset":801,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61084b646d70590c76890fee72cbc80a","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":210.89,"y":614.54},"width":50.65303,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":null,"textAfter":" Co. (Portgage,","comments":null,"startOffset":133,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4fa5f728dd6222ad77224b2129e21841","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":640.22},"width":27.505005,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":null,"textAfter":" 344; Wistar-lewis","comments":null,"startOffset":40,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a85f01423015770cf11216e29b7c36e0","type":"CBI_author","value":"Ford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":304.05},"width":21.854553,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":"in detail (","textAfter":" et al.,","comments":null,"startOffset":211,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84794ca54c6347d13c3fc35b5bfd6948","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":191.11919,"y":465.35},"width":37.089783,"height":11.017679,"page":603}],"sectionNumber":6041,"textBefore":"hepatic biochemical studies, ","textAfter":" Dawley rats","comments":null,"startOffset":900,"endOffset":907,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5aaf9cf7ef57e4b03398cedb57587b15","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":373.5772,"y":490.55},"width":33.325134,"height":11.017679,"page":603}],"sectionNumber":6041,"textBefore":"section describes that ","textAfter":" F344 male","comments":null,"startOffset":738,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ba5f3877d5c08360c849ce3cca84076b","type":"CBI_author","value":"Herren","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":110.63758,"y":202.85999},"width":31.448326,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":819,"endOffset":825,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a0a25c1f41b7d61c61396c4424eec3a6","type":"CBI_author","value":"Rutenburg","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.890236,"y":190.14001},"width":47.423225,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":925,"endOffset":934,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d581fbdd5680ad250f95f17b467a7a57","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.37997,"y":640.22},"width":30.412018,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":"344; Wistar-lewis and ","textAfter":" Dawley","comments":null,"startOffset":70,"endOffset":77,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a1dd41f22d015b8491f4d78ef6681b1","type":"CBI_author","value":"Morgan M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":478.41638,"y":326.97003},"width":44.256348,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"E, Stober J, ","textAfter":" and Periera","comments":null,"startOffset":273,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f11a7cb48a6ae2864033d76369b3ba11","type":"CBI_author","value":"Fishbein","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.192,"y":440.39},"width":39.132187,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"A, Kim H, ","textAfter":" J, Hanker","comments":null,"startOffset":1270,"endOffset":1278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b20475fcf7a2eadf39afa8479c74f67","type":"CBI_author","value":"Toledo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.11424,"y":326.97003},"width":29.475616,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"College of Ohio, ","textAfter":", Ohio 43614.","comments":null,"startOffset":199,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"66dee03acdc58e818589c5fd3bf6f440","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.69943,"y":389.85},"width":44.74051,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"17:517- 522. (","textAfter":" et al,","comments":null,"startOffset":1448,"endOffset":1457,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f42e072c1e823ccf14facb6acb91428d","type":"CBI_author","value":"Britt A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.94049,"y":478.31},"width":32.58545,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"S, Pereira M, ","textAfter":", Khoury M","comments":null,"startOffset":1131,"endOffset":1138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef28e2b2e8fb1009cd5df0f83d832dd5","type":"CBI_author","value":"Kim","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":131.02847,"y":440.39},"width":20.7285,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"12143-150. Rutenburg A, ","textAfter":" H, Fishbein","comments":null,"startOffset":1263,"endOffset":1266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e65dcd1cebce445b0e2b925845c23141","type":"CBI_author","value":"Greisiger E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.03522,"y":326.97003},"width":47.01526,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"G, Conran P, ","textAfter":", Stober J,","comments":null,"startOffset":250,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05314ad7d24d458b95f250e5a38b481b","type":"CBI_author","value":"Ford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":516.35},"width":21.854553,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"the study. REFERENCES: ","textAfter":" J, Pereira","comments":null,"startOffset":976,"endOffset":980,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4b18da18020c41bdb83d5b2dfc80478","type":"CBI_author","value":"Herren S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":478.31},"width":41.428482,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"Patho. Toxicol. 4:39-46. ","textAfter":", Pereira M,","comments":null,"startOffset":1110,"endOffset":1118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c6cb0d447dcd8248a5d189ff0987344","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":363.96515,"y":702.62},"width":40.949585,"height":10.67124,"page":604}],"sectionNumber":6055,"textBefore":"the livers of ","textAfter":" Dawley rats","comments":null,"startOffset":610,"endOffset":617,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2815622858b98b33e126c73b5ec33e1f","type":"PII","value":"39-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.82173,"y":503.63},"width":26.62828,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"Patho. Toxicol. 4:","textAfter":". Herren S,","comments":null,"startOffset":1103,"endOffset":1108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787306Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ed95d564f705a4b8e37af03ffa1fe02","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":528.71},"width":74.9128,"height":10.929359,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":964,"endOffset":974,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b03be2b1b2c007982dfee39d91f46c15","type":"CBI_author","value":"Khoury M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.94016,"y":478.31},"width":48.26042,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"M, Britt A, ","textAfter":" (1982). Initiation/promotion","comments":null,"startOffset":1140,"endOffset":1148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f03afb8d705ea86a2593231aa6d11075","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":165.18},"width":82.55249,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1762,"endOffset":1779,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8582beb278a29e19a91755238c9c1a19","type":"PII","value":"12143-150","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":174.40463,"y":465.71},"width":48.645386,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"liver. Toxicol Letters ","textAfter":". Rutenburg A,","comments":null,"startOffset":1239,"endOffset":1248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787306Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"99dbd61494db02e6d3973b2a704f1b24","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.5253,"y":566.87},"width":37.089783,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"the livers of ","textAfter":" Dawley rats.","comments":null,"startOffset":864,"endOffset":871,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15d6d5ee183613dbcd85d3c8280fac40","type":"CBI_author","value":"Seligman A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.3161,"y":440.39},"width":55.504486,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1306,"endOffset":1316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45fb96e4437c79754594f840d1bcd576","type":"CBI_author","value":"Wasserkrug H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.30853,"y":440.39},"width":66.27954,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1292,"endOffset":1304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62d6ad9128b824b117cb588c16cc9e79","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.34656,"y":516.35},"width":47.1472,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"REFERENCES: Ford J, ","textAfter":" (1980). Short-term","comments":null,"startOffset":984,"endOffset":993,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22ca70d7906b9a33b7f46c46613e43df","type":"CBI_author","value":"Stoner G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.1222,"y":350.01},"width":39.20656,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Report: K-CA 5.8.1/49 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"061a11a82a156d8fafe838a514b65fdd","type":"PII","value":"19-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.3989,"y":303.93},"width":24.320923,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Appl. Pharmacol. 82:","textAfter":". Syngenta File","comments":null,"startOffset":434,"endOffset":439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787306Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e87fe8ef839ff781601d62baa1b698ce","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":449.6679,"y":303.93},"width":37.94171,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Appl. Pharmacol. 82:19-31. ","textAfter":" File No.","comments":null,"startOffset":441,"endOffset":449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac244a49cb82663dcbeab46d61fb431d","type":"CBI_author","value":"Rutenburg A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":440.39},"width":60.306877,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1250,"endOffset":1261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4af989dd1e0396e9141a6341be047fbd","type":"CBI_author","value":"Stoner G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.56436,"y":326.97003},"width":36.955658,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Ohio 43614. Published: ","textAfter":", Conran P,","comments":null,"startOffset":230,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aa8d823272f7026d49a0863defb66fc9","type":"CBI_author","value":"Conran P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":345.9084,"y":326.97003},"width":38.77832,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Published: Stoner G, ","textAfter":", Greisiger E,","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf5adb26ee29b9a093adbdf21417ec34","type":"CBI_author","value":"Hanker S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.21536,"y":440.39},"width":44.442444,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1282,"endOffset":1290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42cdb48432ffd6105e4419ce760bc11a","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":110.858406,"y":478.31},"width":45.59057,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"4:39-46. Herren S, ","textAfter":", Britt A,","comments":null,"startOffset":1120,"endOffset":1129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ff39e1349d7d2287edcc6ced4fe93ad","type":"CBI_author","value":"Periera M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.40536,"y":315.45},"width":42.33403,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Morgan M and ","textAfter":" (1986). Comparison","comments":null,"startOffset":286,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fda4887087e15d41c293b5c47ae4771","type":"CBI_author","value":"Stober J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.32928,"y":326.97003},"width":33.748535,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"P, Greisiger E, ","textAfter":", Morgan M","comments":null,"startOffset":263,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0349c051a83ceb8adf42a4f664a4fd7f","type":"CBI_address","value":"Sigma Chemical Company","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":210.77,"y":524.15},"width":97.9301,"height":10.0905,"page":605}],"sectionNumber":6057,"textBefore":null,"textAfter":", St Louis,","comments":null,"startOffset":114,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47869271e8dcde139ab0f813884d0d1b","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.83698,"y":270.33002},"width":22.491974,"height":10.0905,"page":605}],"sectionNumber":6058,"textBefore":"Purina Certified Rodent ","textAfter":" No. 5002","comments":null,"startOffset":292,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9793d335a1a86946219ed6d063bb631","type":"CBI_address","value":"Eastman Kodak","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":301.47507,"y":432.83},"width":72.82623,"height":11.017679,"page":605}],"sectionNumber":6059,"textBefore":"(glycerol trioctanoate from ","textAfter":", Rochester, N.Y.).","comments":null,"startOffset":388,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdd00c963d476b55095b1625f9f50695","type":"CBI_author","value":"Jackson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":457.3551,"y":319.16998},"width":29.485016,"height":10.0905,"page":605}],"sectionNumber":6058,"textBefore":"purchased from the ","textAfter":" Laboratories (Bar","comments":null,"startOffset":164,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b28c5a3010289fc735712c416f6553a","type":"PII","value":"1200 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.01,"y":585.95},"width":19.044983,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":585.95},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":585.95},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6067,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787307Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85615ea0731fa9ea45d2a412e2906f97","type":"PII","value":"1200 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.01,"y":607.7},"width":19.044983,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":607.7},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":607.7},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6065,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787307Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d6a6f1ce5e0aec2a259112c67c7abbfb","type":"CBI_author","value":"Hollander","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Bioassays.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.60263,"y":255.93},"width":44.85086,"height":11.017679,"page":606}],"sectionNumber":6069,"textBefore":"trend test (","textAfter":" et al.,","comments":null,"startOffset":2063,"endOffset":2072,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f6fe927deda09b35a374870114bf2f5","type":"PII","value":"300 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.29,"y":629.42},"width":14.619995,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":629.42},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":629.42},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6063,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787308Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"228c1bcd2dcf10bb4cc29a2f03d6867f","type":"CBI_author","value":"Hollander","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Bioassays.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":487.40402,"y":243.18},"width":44.97232,"height":11.017679,"page":606}],"sectionNumber":6069,"textBefore":"rank test (","textAfter":" et al.,","comments":null,"startOffset":2212,"endOffset":2221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f2815958b39fabc2e8d50cab445f8bd","type":"PII","value":"600 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.29,"y":618.5},"width":14.619995,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":618.5},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":618.5},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6064,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787308Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b03a6cb306d867a14dce77ef7f661b87","type":"PII","value":"24 1200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.38,"y":490.31},"width":10.059998,"height":10.0905,"page":607},{"topLeft":{"x":180.02,"y":490.31},"width":19.044998,"height":10.0905,"page":607}],"sectionNumber":6079,"textBefore":null,"textAfter":null,"comments":null,"startOffset":51,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787308Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8c1565dfe09dcfe1a879bb97807823b","type":"published_information","value":"Toxicological Sciences","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: administration","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":183.74,"y":196.73999},"width":93.86702,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":null,"textAfter":null,"comments":null,"startOffset":183,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ee76cfeb7779c01162ad6e291b0e6f5","type":"CBI_author","value":"Wang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":280.05847,"y":219.77997},"width":24.814423,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Butt C M, ","textAfter":" D, Stapleton","comments":null,"startOffset":35,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"854268f9b3e56397cbc95de32863b226","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"administration","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":361.05},"width":74.9128,"height":10.929359,"page":607}],"sectionNumber":6091,"textBefore":null,"textAfter":null,"comments":null,"startOffset":214,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30c01c1876b06ef0cbc3c95d895221ee","type":"CBI_author","value":"Stoner G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.01944,"y":296.97003},"width":40.523224,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"New York. (","textAfter":" et al,","comments":null,"startOffset":420,"endOffset":428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a5ef677c0183c61c851694ecde4241d","type":"CBI_address","value":"New York","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":441.15305,"y":348.69},"width":47.21344,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Wiley and Sons, ","textAfter":". Hollander H","comments":null,"startOffset":311,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d076c587ca77d976b9d1907c28e403e3","type":"PII","value":"24 1200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.38,"y":522.35},"width":10.059998,"height":10.0905,"page":607},{"topLeft":{"x":180.02,"y":522.35},"width":19.044998,"height":10.0905,"page":607}],"sectionNumber":6078,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787309Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e891f5e038ebd4306318eb10a272273f","type":"CBI_author","value":"John","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.323,"y":348.69},"width":21.987,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Rates and Proportions. ","textAfter":" Wiley and","comments":null,"startOffset":290,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b32e4f84162ee21f283cac369a41825c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":337.93964,"y":196.73999},"width":37.94171,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Toxicological Sciences 124:339-347. ","textAfter":" File No.","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb23211c93a210815c5668e0d05a58a8","type":"CBI_author","value":"Hollander","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":323.37},"width":45.082718,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Sons, New York. ","textAfter":" H and","comments":null,"startOffset":321,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8fbb5e9eff2df5cdac5a474d8f234b6","type":"CBI_address","value":"New York","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":473.43405,"y":323.37},"width":47.18039,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Wiley and Sons, ","textAfter":". (Stoner G","comments":null,"startOffset":409,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc9bd4a173319d3bbc1cdec63491f4fa","type":"CBI_author","value":"John","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.69235,"y":323.37},"width":21.86557,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Nonparametric Statistical Methods. ","textAfter":" Wiley and","comments":null,"startOffset":388,"endOffset":392,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8503aa5d2444159a54b8aca393b07ac","type":"CBI_author","value":"Stapleton","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":324.5399,"y":219.77997},"width":38.828125,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"M, Wang D, ","textAfter":" H M","comments":null,"startOffset":43,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44750993b15abd4e28049f5d5d18621d","type":"CBI_author","value":"Butt","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":228.2665,"y":219.77997},"width":18.171036,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Reference: K-CA 5.8.1/50 ","textAfter":" C M,","comments":null,"startOffset":25,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618855Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9476ad14d3a48eef90987894be328eae","type":"CBI_author","value":"Wolfe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":140.1696,"y":323.37},"width":28.56688,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Hollander H and ","textAfter":" D (1973).","comments":null,"startOffset":337,"endOffset":342,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618855Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4f0e12d2c44be7089c3cbf501f0bdad","type":"PII","value":"339-347","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.05496,"y":196.73999},"width":34.414673,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Toxicological Sciences 124:","textAfter":". Syngenta File","comments":null,"startOffset":210,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618855Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787309Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf3437c670b5492a9073e7672dbbd2e6","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":414.0,"y":609.0},"width":6.0,"height":11.0,"page":607}],"sectionNumber":6070,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e25d7637f1171f9966dc3069e835a0e","type":"CBI_author","value":"Cascorbi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":221.30602,"y":664.34},"width":36.49745,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"Reference K-CA 5.8.1/51 ","textAfter":" I, Ahlers","comments":null,"startOffset":24,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c8af0a5116adce6c5f920e6dffd5966","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":295.13,"y":377.49},"width":27.61319,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":null,"textAfter":null,"comments":null,"startOffset":139,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a585a91a3be75b25aa877000cc3fc22","type":"PII","value":"197-210","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.76393,"y":641.42},"width":34.485672,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"cells. Toxicology 58:","textAfter":". Syngenta File","comments":null,"startOffset":207,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787309Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f42f72c968c49bf571153092c5c8bdb9","type":"CBI_author","value":"Appel KE","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.01733,"y":87.304016},"width":42.812164,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31fc3a5f69ea7266d80cd2c87c536f9b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":249.82916,"y":641.42},"width":37.94171,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"cells. Toxicology 58:197-210. ","textAfter":" File No.","comments":null,"startOffset":216,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9ae36817607cc03a6fd334e6b5b92be","type":"PII","value":"(10-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":324.19403,"y":296.49},"width":29.606964,"height":10.0905,"page":608}],"sectionNumber":6101,"textBefore":"and high dose ","textAfter":" mg/L) of","comments":null,"startOffset":78,"endOffset":85,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ebba9ae4c18a4ba8b50e45942fafab2","type":"CBI_author","value":"Johnels D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":283.3395,"y":389.01},"width":43.539246,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["NER"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6b57b47aa3b3e16f528e6a12cf8838d","type":"CBI_author","value":"Ekwall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.34685,"y":389.01},"width":29.057297,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":"Reference: K-CA 5.8.1/52 ","textAfter":" B, Selling","comments":null,"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ebb8fde4ee3b1ca1ac776a19aeb406c7","type":"CBI_author","value":"Glatt","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.86624,"y":87.304016},"width":20.920044,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"KE, Heyworth CM, ","textAfter":" H (2001).","comments":null,"startOffset":61,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff427d704dde62a17c763d74b27a0ee2","type":"PII","value":"31-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.27283,"y":64.23999},"width":24.487,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"In Vitro 15:","textAfter":" Syngenta File","comments":null,"startOffset":255,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12d3bbbc24025c427cb53c30ce7a10de","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.22,"y":366.09},"width":38.051224,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":"Laboratory Animals 14:178-81. ","textAfter":" File No.","comments":null,"startOffset":191,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b42fa033d98ceca1a80968d1e38175e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":446.78156,"y":64.23999},"width":38.160828,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"In Vitro 15:31-37 ","textAfter":" File No.","comments":null,"startOffset":261,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3e3ef20f1c75c4be5d1535530d8780af","type":"CBI_author","value":"Heyworth CM","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.56244,"y":87.304016},"width":60.451324,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e001005f0d5254c033fa06718d158d10","type":"CBI_author","value":"Henschler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.09,"y":87.304016},"width":41.27823,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"Reference: K-CA 5.8.1/53 ","textAfter":" R, Appel","comments":null,"startOffset":25,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b6adb30b4b851ce2585719bcbbaa493","type":"PII","value":"178-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.44583,"y":377.49},"width":29.623932,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":"Laboratory Animals 14:","textAfter":". Syngenta File","comments":null,"startOffset":183,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"404354fea7dada2191a44082ff94ab63","type":"CBI_author","value":"Selling J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":242.60312,"y":389.01},"width":36.158813,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":null,"textAfter":null,"comments":null,"startOffset":35,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["NER"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4c3a74f1335dcc70f5232f43372c757d","type":"CBI_author","value":"Ahlers","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.78525,"y":664.34},"width":27.543457,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"5.8.1/51 Cascorbi I, ","textAfter":" J (1989).","comments":null,"startOffset":36,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"49d755c699429540a618e2ae716d3f44","type":"CBI_author","value":"Liao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.25844,"y":69.880005},"width":19.286545,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"5.8.1/55 Jia R-W, ","textAfter":" T-T, Shi","comments":null,"startOffset":34,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56c4252a4a552e5883a824466d6acff7","type":"CBI_author","value":"Jia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.57,"y":69.880005},"width":12.145233,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"Reference: K-CA 5.8.1/55 ","textAfter":" R-W, Liao","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9ac9106f39f828ea2b8ab388201e6f0","type":"PII","value":"289-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.68848,"y":383.01},"width":29.411346,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"Hamster Cells. Toxicol.Lett.69:","textAfter":". Syngenta File","comments":null,"startOffset":130,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787311Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5598c0bcd8c1811bad9409d8ae5cc5cf","type":"CBI_author","value":"Xia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":361.53555,"y":69.880005},"width":15.382263,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"Y-L, Wang L, ","textAfter":" J, Lu","comments":null,"startOffset":61,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bc8fcd0102808672abd254f3c19cd79","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.42255,"y":394.53},"width":32.015427,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"Reference: K-CA 5.8.1/54 ","textAfter":" K, Jansson","comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad7ed992dbc70d5c2143d40971290282","type":"CBI_author","value":"Lu B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.20447,"y":69.880005},"width":21.906067,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":72,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86660ef830fd1def7fcb03c6e82b895d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":296.16946,"y":383.01},"width":37.931763,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"Hamster Cells. Toxicol.Lett.69:289-94. ","textAfter":" File No.","comments":null,"startOffset":138,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30ab6af1bf2e6450fd393029dac2ed87","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.78236,"y":394.53},"width":32.244583,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"5.8.1/54 Jansson K, ","textAfter":" V (1993).","comments":null,"startOffset":36,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d1427e7625cafac6e160b84c66774da","type":"CBI_author","value":"Shi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.46146,"y":69.880005},"width":14.20697,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"R-W, Liao T-T, ","textAfter":" Y-L, Wang","comments":null,"startOffset":44,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c8027b37f27f90aad2df6964ef044ec","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.447,"y":58.359985},"width":20.969818,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"component analysis in ","textAfter":" cells exposed","comments":null,"startOffset":157,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a11b5125f12aa5e20ddd5435896f1068","type":"CBI_author","value":"Wang L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.4624,"y":69.880005},"width":34.306305,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"T-T, Shi Y-L, ","textAfter":", Xia J,","comments":null,"startOffset":53,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c01f3f6654965fcc6c780861ab024c39","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.54799,"y":401.37},"width":23.057938,"height":11.017679,"page":610}],"sectionNumber":6129,"textBefore":"cell membrane in ","textAfter":" cells and","comments":null,"startOffset":342,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21964b8709ddaeac1a333777e8d469da","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.692,"y":579.71},"width":19.044983,"height":10.0905,"page":610}],"sectionNumber":6121,"textBefore":"mg/L TCP). The ","textAfter":" cell plasma","comments":null,"startOffset":509,"endOffset":513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d79a4738715fec5b8ada70d33212c02a","type":"CBI_author","value":"Judis","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.37,"y":349.53},"width":21.54747,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":"Reference: K-CA 5.8.1/56 ","textAfter":" J (1982).","comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8c4e391879174b8a979f25b038b317e2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b4383ccf3a4126010be0821d0e5abc3","type":"PII","value":"1145-47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15982,"y":338.01},"width":34.600006,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":"Pharmaceutical Sciences 71:","textAfter":". Syngenta File","comments":null,"startOffset":143,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787311Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"246d2f1162b8fe9ea535b5192b33c760","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":331.3394,"y":338.01},"width":37.931763,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":"Pharmaceutical Sciences 71:1145-47. ","textAfter":" File No.","comments":null,"startOffset":152,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8c4e391879174b8a979f25b038b317e2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b993cce8278fb712e0bdc0c5904ecf24","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":348.01965,"y":753.98},"width":38.05127,"height":10.526819,"page":610}],"sectionNumber":6118,"textBefore":"Environ. Health, 270(4):302-305. ","textAfter":" File No.","comments":null,"startOffset":53,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35be9ec14fa98da641a0eb14b7b87022","type":"PII","value":"302-305","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":307.06946,"y":753.98},"width":34.480194,"height":10.526819,"page":610}],"sectionNumber":6118,"textBefore":"Environ. Health, 270(4):","textAfter":". Syngenta File","comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787312Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89a5b2d91c32929849b92283f9a5c23f","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":509.51224,"y":426.71},"width":23.06894,"height":11.017679,"page":610}],"sectionNumber":6129,"textBefore":"phospholipid ratio in ","textAfter":" cell plasma","comments":null,"startOffset":220,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c4e391879174b8a979f25b038b317e2","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":133.22,"y":338.01},"width":41.22844,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68e4a6b3a176d5c6dc9091757656126f","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.25,"y":658.22},"width":19.044998,"height":10.0905,"page":610}],"sectionNumber":6121,"textBefore":null,"textAfter":" cells were","comments":null,"startOffset":59,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0dae88bc7c970abc8aad121ec8e36fc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":220.54915,"y":229.97998},"width":38.031265,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Eisei Kagaku 36:267-276. ","textAfter":" File No.","comments":null,"startOffset":220,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6e27efbd88a2b29951572414175dbcc","type":"CBI_author","value":"Hecker M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.91336,"y":689.06},"width":44.465454,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"R.S.S., Giesy J.P, ","textAfter":", Zhang X,","comments":null,"startOffset":71,"endOffset":80,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"afec8feaa5b6f6bdf0f143fca5959dba","type":"CBI_author","value":"Ma Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.57,"y":689.06},"width":24.844254,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8578ef6ab89fec6032ef725043111b7","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.76303,"y":253.04999},"width":44.525238,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"M, Utsumi H, ","textAfter":" (1990). Comparative","comments":null,"startOffset":65,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb281ddd098eae024ed4324785c78707","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":346.69937,"y":666.02},"width":37.94171,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"TCP. Toxicology, 282:146-53. ","textAfter":" File No.","comments":null,"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81321ee4031ec1833f128872967223f0","type":"CBI_author","value":"Murayama J-I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.61,"y":253.04999},"width":57.71666,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Reference: K-CA 5.8.1/58 ","textAfter":", Ishiwata, F.","comments":null,"startOffset":25,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de1e1967bea1aa6028fe3cd792c2225e","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.2851,"y":689.06},"width":36.84613,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"J.P, Hecker M., ","textAfter":", Zhou B","comments":null,"startOffset":82,"endOffset":89,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"101da807c553881b21e2b02203053230","type":"CBI_author","value":"Ishiwata, F. M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.85443,"y":253.04999},"width":60.082733,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":null,"textAfter":null,"comments":null,"startOffset":39,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0428491df1afa6df26bfb8b4d4db3df7","type":"CBI_author","value":"Zhou","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":494.99765,"y":689.06},"width":22.035553,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"M., Zhang X, ","textAfter":" B (2011).","comments":null,"startOffset":91,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81f14cbd392b2875701787b5e8579fa6","type":"CBI_author","value":"Lam","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.8719,"y":689.06},"width":19.29654,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"Y, Liu C, ","textAfter":" P.K.S, Wu","comments":null,"startOffset":38,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d901f6a6731d2f3f1d9e4a6834826747","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.46494,"y":253.04999},"width":40.670715,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Ishiwata, F. M, ","textAfter":", Hamada A","comments":null,"startOffset":55,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dee31865353777ed9a5f7170ecf5a9c","type":"CBI_author","value":"Liu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.28072,"y":689.06},"width":14.7447815,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"5.8.1/57 Ma Y, ","textAfter":" C, Lam","comments":null,"startOffset":31,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8418c6b88a8296f6d1bd23474acdc5a","type":"PII","value":"146-53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.65378,"y":666.02},"width":29.466034,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"TCP. Toxicology, 282:","textAfter":". Syngenta File","comments":null,"startOffset":227,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787312Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5dbeb2e35d31fab9b6c5ec0cff8ef55a","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.56824,"y":689.06},"width":15.451996,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"C, Lam P.K.S, ","textAfter":" R.S.S., Giesy","comments":null,"startOffset":49,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bfaf8c581907db527796d68a132ab0cf","type":"CBI_author","value":"Giesy J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.3523,"y":689.06},"width":31.48761,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"P.K.S, Wu R.S.S., ","textAfter":".P, Hecker M.,","comments":null,"startOffset":60,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43e342966c9c58b42700c5a89028532b","type":"PII","value":"267-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.51408,"y":229.97998},"width":34.455505,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Eisei Kagaku 36:","textAfter":". Syngenta File","comments":null,"startOffset":211,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787313Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a01403fd8303077a2e1184590e7c2b3a","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":364.09964,"y":170.10004},"width":37.94171,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"Science 47: 258-271. ","textAfter":" File No.","comments":null,"startOffset":227,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d70e40b4f476f06f1dadc0d4bcd2a724","type":"CBI_author","value":"Ueno H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":273.4868,"y":193.14001},"width":37.2146,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"5.8.1/60 Sakazaki H, ","textAfter":", Umetani K,","comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"614a303ad4774feb1dfa245966bcbeee","type":"CBI_author","value":"Sakazaki H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":212.93,"y":193.14001},"width":51.60678,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"Reference: K-CA 5.8.1/60 ","textAfter":", Ueno H,","comments":null,"startOffset":25,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3524734abaad7c9a4c4d2fabffc1c070","type":"CBI_author","value":"Gao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.01114,"y":521.03},"width":17.593384,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Z, Li J, ","textAfter":" G, Yang","comments":null,"startOffset":54,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9e67035cb277f3044ec7a96398d6a82","type":"CBI_author","value":"Yang Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.80542,"y":521.03},"width":33.489563,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"J, Gao G, ","textAfter":", Yuan X,","comments":null,"startOffset":61,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc541ce3c7fa6332bea0b917434070b0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":238.31935,"y":498.11},"width":37.941696,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Analytical Biochemistry 462:60-66. ","textAfter":" File No.","comments":null,"startOffset":218,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b98a444ad591e21bf07ce99e890f6d68","type":"PII","value":"60-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.31242,"y":498.11},"width":24.427368,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Analytical Biochemistry 462:","textAfter":". Syngenta File","comments":null,"startOffset":211,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787313Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6890599d13064f8701b9d3f3195c12b5","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.34406,"y":521.03},"width":15.571503,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Y, Yuan X, ","textAfter":" D (2014).","comments":null,"startOffset":77,"endOffset":79,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aba16aa894ad3dab2a2f65df36f45dfd","type":"CBI_author","value":"Nakamuro K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":432.71735,"y":193.14001},"width":57.82184,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"K, Utsumi H, ","textAfter":" (2001). Immunotoxicological","comments":null,"startOffset":66,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deb3bc95578604467adad8d9088fd736","type":"CBI_author","value":"Umetani K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":319.6514,"y":193.14001},"width":50.04306,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"H, Ueno H, ","textAfter":", Utsumi H,","comments":null,"startOffset":45,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96d5cbadc027a04d94d93f4b9eb8b0f1","type":"CBI_author","value":"Zhang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.67938,"y":521.03},"width":26.477753,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"H, Liu J, ","textAfter":" Z, Li","comments":null,"startOffset":39,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"affc930666a7cd3ae86f3007e7b6f250","type":"CBI_author","value":"Liu J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.90097,"y":521.03},"width":22.364166,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"5.8.1/59 Qin H, ","textAfter":", Zhang Z,","comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00e32e58a258bded549728c330bc6123","type":"CBI_author","value":"Yuan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.51996,"y":521.03},"width":22.762634,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"G, Yang Y, ","textAfter":" X, Wu","comments":null,"startOffset":69,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6fa867a3943a7b38249ffa7c7bea89c5","type":"PII","value":"258-271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":323.05536,"y":170.10004},"width":34.57428,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"Health Science 47: ","textAfter":". Syngenta File","comments":null,"startOffset":218,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787313Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"447899fcb575f61d098dbf6bd7c48974","type":"CBI_author","value":"Utsumi H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":378.764,"y":193.14001},"width":45.003326,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"H, Umetani K, ","textAfter":", Nakamuro K","comments":null,"startOffset":56,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2976252d5c52ec08abd84c00186326ef","type":"CBI_author","value":"Qin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.77,"y":521.03},"width":15.939987,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Reference: K-CA 5.8.1/59 ","textAfter":" H, Liu","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0f3d09a92ed89cc3738f69b84e27e01","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":202.37,"y":170.10004},"width":41.22844,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":null,"textAfter":null,"comments":null,"startOffset":188,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f92ea19820eaee62cc800b8edab97e8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":287.81,"y":217.62},"width":37.931763,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"and Technology 25:325-332. ","textAfter":" File No.","comments":null,"startOffset":225,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e2aeb045ac4e4683d8535a4d7038829","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":393.43,"y":517.91},"width":133.76697,"height":10.526819,"page":613},{"topLeft":{"x":133.22,"y":506.39},"width":42.682602,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":null,"textAfter":null,"comments":null,"startOffset":156,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a8a65ffa55c067995eebe23d807b3e21","type":"PII","value":"57-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":190.06172,"y":506.39},"width":24.398071,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"and Chemistry 10:","textAfter":". Syngenta File","comments":null,"startOffset":198,"endOffset":203,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787314Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"461c8a5624780f4f43a91ed6e276cf8c","type":"CBI_author","value":"Bevan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":388.14285,"y":529.31},"width":26.477722,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Dietrich A M, ","textAfter":" D R","comments":null,"startOffset":66,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"524462c1808f6be4c03fa5e17ae6c2fb","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.03935,"y":506.39},"width":38.140854,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"and Chemistry 10:57-66. ","textAfter":" File No.","comments":null,"startOffset":205,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2a5062e44b98d19878ca1f560df2244","type":"CBI_author","value":"Hakoda M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.76753,"y":240.65997},"width":44.2563,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":null,"textAfter":null,"comments":null,"startOffset":35,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"731c7b0bb71b92cbd91ae3f92b531edb","type":"CBI_author","value":"Boardman","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":260.01743,"y":529.31},"width":42.523285,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Shannon R D, ","textAfter":" G D.","comments":null,"startOffset":38,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ae4e7050a19e0a52843ff715f8f6fd6","type":"CBI_author","value":"Dietrich","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":327.606,"y":529.31},"width":33.79831,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Boardman G D. ","textAfter":" A M,","comments":null,"startOffset":52,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"91cdc0e4159e13b78bc94d31f3412faa","type":"CBI_author","value":"Manabe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.96112,"y":240.65997},"width":33.35013,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"M, Kiyoshige K, ","textAfter":" H, Mitade","comments":null,"startOffset":58,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43721df0748800343b99694d5a7cbab3","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.65398,"y":424.79},"width":30.529007,"height":10.0905,"page":613}],"sectionNumber":6162,"textBefore":"the liver of ","textAfter":"-Dawley rats and","comments":null,"startOffset":77,"endOffset":84,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0870a5b5f7631da66b88851d1e3f0c2b","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":500.91013,"y":240.65997},"width":17.593353,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"C, Murayama J, ","textAfter":" S K,","comments":null,"startOffset":90,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c99d2f39a359d30df0da2829af493011","type":"CBI_author","value":"Murayama","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.37997,"y":240.65997},"width":44.592133,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"H, Mitade C, ","textAfter":" J, Han","comments":null,"startOffset":78,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ae9b59073460231dfaaa8a3d66dcbc6","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.33,"y":240.65997},"width":40.690598,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"Reference: K-CA 5.8.1/62 ","textAfter":", Hakoda M,","comments":null,"startOffset":25,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e331af60f858db241cd5c111358a9b5","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":145.67996,"y":229.14001},"width":44.16664,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"Han S K, ","textAfter":" (1992). Cytotoxicity","comments":null,"startOffset":99,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c3032c16d184e52b5f2b1c62ab30302","type":"CBI_author","value":"Kiyoshige K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.79065,"y":240.65997},"width":52.423584,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb01cbdbbe32a3e632494613f857efb1","type":"CBI_author","value":"Shannon","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.61,"y":529.31},"width":35.95961,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Reference: K-CA 5.8.1/61 ","textAfter":" R D,","comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95e92c82f47a3174c7dba59a19da1133","type":"PII","value":"325-332","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.6345,"y":217.62},"width":34.53514,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"and Technology 25:","textAfter":". Syngenta File","comments":null,"startOffset":216,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787315Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa2d93d845c863e52004354887edb089","type":"CBI_author","value":"Mitade C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.49622,"y":240.65997},"width":39.186646,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee676f84281e15ea59f57bf9aa86c0ec","type":"CBI_author","value":"Van Agen, E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.33636,"y":327.09003},"width":53.36969,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":263,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1348f0488812b50f321b68c7aecd3531","type":"CBI_author","value":"Herwijnen M.H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":334.7009,"y":327.09003},"width":64.30585,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":293,"endOffset":306,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eed55ba6e759f7241308e35b62b98cdb","type":"CBI_author","value":"C.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.65555,"y":327.09003},"width":21.457825,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"M.H, Staal Y.","textAfter":", Kleinjans J.C.S.","comments":null,"startOffset":316,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a14b21f8385b46c8b92eabd47202445a","type":"CBI_author","value":"Van Agen, E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":272.61533,"y":364.53},"width":53.489258,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb8ad0d7eadb8689922e8fce631489fc","type":"CBI_author","value":"Herwijnen M.H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.5675,"y":364.53},"width":64.4353,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":73,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c52615cfed5b5a7014f22255ad4cd584","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":218.29828,"y":341.49},"width":62.06482,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":216,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a5582fb1ad70fc9db2ec58ef77efe82","type":"CBI_author","value":"C.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":503.01013,"y":364.53},"width":21.457825,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"M.H, Staal Y.","textAfter":", Kleinjans J.C.S.","comments":null,"startOffset":96,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f6fe1d0b04976e9eabed20ff9465ce7b","type":"CBI_author","value":"van","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.5029,"y":364.53},"width":15.451996,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Van Agen, E, ","textAfter":" Breda S.G.J,","comments":null,"startOffset":56,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"365a72c9c3ac78153f45f5e6966aee13","type":"CBI_author","value":"Kleinjans J.C.S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.22,"y":353.01},"width":66.83557,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":102,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"10a72b6f27a7d274ad94a82e60cc490e","type":"PII","value":"1265-1276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.67166,"y":341.49},"width":44.598236,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"profiling. Carcinogenesis 25:","textAfter":". van Delft","comments":null,"startOffset":234,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787315Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc93eb1a064219c74fed0f82044cf33c","type":"CBI_author","value":"van","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":263.98486,"y":327.09003},"width":15.32251,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Van Agen, E, ","textAfter":" Breda S.G.J,","comments":null,"startOffset":276,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9980c2fa490d7b74911aaef957677887","type":"CBI_author","value":"Kleinjans J.C.S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":461.42206,"y":327.09003},"width":65.620544,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":322,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"685114fe304c26d01f16714cb772983d","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":217.48204,"y":304.05},"width":62.064835,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":447,"endOffset":461,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f436702f9eddfae567a7daed1fc62e74","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":316.46466,"y":304.05},"width":37.931763,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"[Erratum]. Carcinogenesis 26:511. ","textAfter":" File No.","comments":null,"startOffset":470,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"77be9c80c758843ae5930561ce029dfb","type":"CBI_author","value":"van Delft J.H.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.22,"y":327.09003},"width":68.80768,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":245,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e54183a0f536dbbe54eab22affff6b98","type":"CBI_author","value":"Breda","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":347.7636,"y":364.53},"width":24.953827,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Agen, E, van ","textAfter":" S.G.J, Herwijnen","comments":null,"startOffset":60,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7eb8f42d01a9862452edfb3f8108202","type":"CBI_author","value":"Breda","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":281.0165,"y":327.09003},"width":24.953827,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Agen, E, van ","textAfter":" S.G.J, Herwijnen","comments":null,"startOffset":280,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4ddb5a657cc0746d2b66f2506950a04","type":"CBI_author","value":"van Delft J.H.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.25,"y":364.53},"width":68.93713,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3316a8f786603fa261b9ef72f47ed97d","type":"CBI_author","value":"Shi","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":205.61,"y":468.71},"width":14.206955,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"Reference: K-CA 5.8.1/65 ","textAfter":" Y-L, Wang","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d96c3abd2fc3b6075f50e2ea418872fa","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":482.0101,"y":457.19},"width":45.4216,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":null,"textAfter":null,"comments":null,"startOffset":173,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"743a5bf765463bc8745e4bcc23a86847","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":353.73},"width":19.044998,"height":10.0905,"page":615}],"sectionNumber":6189,"textBefore":"flow cytometry on ","textAfter":" CCL-81 cells","comments":null,"startOffset":66,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"224341f94e6c47955fe902e73fa784f4","type":"CBI_author","value":"Wang L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":247.94514,"y":468.71},"width":35.989548,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"5.8.1/65 Shi Y-L, ","textAfter":", Zhou Q,","comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"806e6ac22e796fad165f09ef2ac0d224","type":"CBI_author","value":"Vero","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":249.17433,"y":457.19},"width":20.969803,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"sensitivity in mammalian ","textAfter":" cells exposed","comments":null,"startOffset":122,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"689640272dacba0a70d4683acea1c2fc","type":"PII","value":"479-487","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.44415,"y":445.67},"width":34.485443,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"of Ecotoxicity 3:","textAfter":". Syngenta File","comments":null,"startOffset":198,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787316Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c8515132c5ac253324083fe47b0778a3","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.29834,"y":78.27997},"width":23.057922,"height":11.017679,"page":615}],"sectionNumber":6204,"textBefore":"of 2,4,6-TCP on ","textAfter":" cells in","comments":null,"startOffset":466,"endOffset":470,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d267bb3871e59f2afd4a551083c57f1a","type":"CBI_author","value":"van","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.17,"y":726.38},"width":15.322479,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"Reference: K-CA 5.8.1/64 ","textAfter":" den Berg","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72acdb263dc7e88abaf1182f2d88a998","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":230.50916,"y":445.67},"width":37.94168,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"of Ecotoxicity 3:479-487. ","textAfter":" File No.","comments":null,"startOffset":207,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d61e1fd464a1ead72f8074654d306a4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.55936,"y":703.34},"width":38.04129,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"Chemico-Biological Interactions 76:63-75. ","textAfter":" File No.","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f0b8cf12e02782c4f3830d47f0e7153","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.6896,"y":103.619995},"width":23.068954,"height":11.017679,"page":615}],"sectionNumber":6204,"textBefore":"cell membrane in ","textAfter":" cells in","comments":null,"startOffset":215,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43d77b462e0e18e91dab81fa5688cd3b","type":"PII","value":"63-75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.55962,"y":703.34},"width":24.420181,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"Chemico-Biological Interactions 76:","textAfter":". Syngenta File","comments":null,"startOffset":212,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618878Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787316Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c2640710067748cbd4fef0088c8cc54","type":"CBI_author","value":"Zhou","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":290.38477,"y":468.71},"width":22.035583,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"Y-L, Wang L, ","textAfter":" Q, (2008).","comments":null,"startOffset":42,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5676d6ebcd5872b44c83f0e38af8247a","type":"CBI_author","value":"Berg K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.94829,"y":726.38},"width":34.535324,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"5.8.1/64 van den ","textAfter":".J (1990). Interaction","comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b42b17bef1ae0b24ccfe79db258a3f23","type":"PII","value":"532-41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.2009,"y":727.94},"width":29.529358,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"of Toxicology, 33(6):","textAfter":". Syngenta File","comments":null,"startOffset":232,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787316Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aece4dd6f4bfa7853712b59473a2f624","type":"CBI_author","value":"Huang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":369.0842,"y":750.98},"width":27.682892,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"Z, Qi Y, ","textAfter":" D, Zhang","comments":null,"startOffset":56,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9aba70bc4831a67620020f47a440f7a5","type":"CBI_author","value":"Zhang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.27072,"y":750.98},"width":26.477753,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"Y, Huang D, ","textAfter":" Y (2014).","comments":null,"startOffset":65,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b34573fd2e125960b6b5c2f5b953ea56","type":"CBI_author","value":"Zhang X","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":208.25,"y":750.98},"width":39.47548,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"Reference: K-CA 5.8.1/66 ","textAfter":", Zhang X,","comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"314ada7478a742dbe449e7325315dfd3","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":231.93571,"y":727.94},"width":41.337997,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":null,"textAfter":null,"comments":null,"startOffset":203,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ff9d13f9e287930b8823212b5570adf","type":"CBI_author","value":"Zhang X","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.23132,"y":750.98},"width":39.475555,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"5.8.1/66 Zhang X, ","textAfter":", Niu Z,","comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f85eee6502443b90b30e0991817e25f7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":386.3098,"y":727.94},"width":37.94171,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"of Toxicology, 33(6):532-41. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01d9ea6f655ba0fb8d3cc4ef5467ceaf","type":"CBI_author","value":"Niu","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":302.2127,"y":750.98},"width":15.940033,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"X, Zhang X, ","textAfter":" Z, Qi","comments":null,"startOffset":43,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58bee3da7d9f7b684c37b67a73f81d17","type":"CBI_author","value":"Lake B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":94.31999,"y":207.89996},"width":27.144997,"height":10.0905,"page":617}],"sectionNumber":6209,"textBefore":"activity in rats. ","textAfter":", (2014). Report","comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c198dfc856500569633a3a7ea3bc2383","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.15303,"y":257.85004},"width":28.45897,"height":10.0905,"page":617}],"sectionNumber":6208,"textBefore":"dietary study (","textAfter":" and Robertson,","comments":null,"startOffset":155,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d9c5b231c6a3ee1a8b28a0de7707e2","type":"CBI_author","value":"Bhandal","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":71.784,"y":314.13},"width":31.077995,"height":10.0905,"page":617}],"sectionNumber":6207,"textBefore":"Immunotoxicity review. ","textAfter":" B, (2016).","comments":null,"startOffset":23,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47b3d26a33224b43ac55cea98dd6491f","type":"CBI_author","value":"Lake B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.864,"y":257.85004},"width":27.135994,"height":10.0905,"page":617}],"sectionNumber":6208,"textBefore":"of male rats. ","textAfter":", (2014). Report","comments":null,"startOffset":59,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3dacd8b01609f617270028f34233189d","type":"CBI_address","value":"Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.2. Supplementary studies on the active substance","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.62808,"y":714.86},"width":343.75375,"height":10.526819,"page":618}],"sectionNumber":6211,"textBefore":"Concerning Imunotoxicity Potential. ","textAfter":". Laboratory Report","comments":null,"startOffset":107,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b455b2b463f637bf6982ee13bed965b","type":"CBI_author","value":"Bhandal H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.08945,"y":414.09},"width":48.438873,"height":11.017679,"page":618}],"sectionNumber":6216,"textBefore":"immunotoxic potential. (","textAfter":", 2016) Guidelines:","comments":null,"startOffset":937,"endOffset":946,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96a70ff5fe27d0c295b5e70607af8ca9","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":252.09003},"width":82.53038,"height":11.017679,"page":618}],"sectionNumber":6216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1064,"endOffset":1081,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a8ed3b29fc30890138cf52ef8137d5b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.2. Supplementary studies on the active substance","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":441.16602,"y":703.34},"width":38.05127,"height":10.526819,"page":618}],"sectionNumber":6211,"textBefore":"January 2016. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":250,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a468742b0aa56f3cba3e8e7d3b35b4d","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.72772,"y":362.25},"width":34.316208,"height":10.526819,"page":618}],"sectionNumber":6214,"textBefore":"Report: K-CA 5.8.2/02 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df684ec8c462768fa9ba6fd215c270bb","type":"CBI_author","value":"Bhandal H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.8.2. Supplementary studies on the active substance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.67598,"y":726.38},"width":47.254242,"height":10.526819,"page":618}],"sectionNumber":6211,"textBefore":"Report: K-CA 5.8.2/01 ","textAfter":" (2016). SYN545974:","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0eccddbd7b6f83a6abe6a9a332d20594","type":"CBI_address","value":"Leatherhead Food Research (LFR)","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":339.21},"width":158.70221,"height":10.526819,"page":618}],"sectionNumber":6214,"textBefore":"to Male Rats. ","textAfter":", Molecular Sciences","comments":null,"startOffset":189,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"920295969de0e49695ffcc16ccbb66de","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":327.15375,"y":316.28998},"width":38.160828,"height":10.526819,"page":618}],"sectionNumber":6214,"textBefore":"August 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":395,"endOffset":403,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b21563d1c380481fcba10bf3d24d9193","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.18,"y":226.02002},"width":29.759201,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"general procedure of ","textAfter":" et al.","comments":null,"startOffset":930,"endOffset":935,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5b1737e6d1ee4f5be2bf57c59bdee58","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.87,"y":226.02002},"width":23.687195,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"described previously (","textAfter":", 1987), employing","comments":null,"startOffset":976,"endOffset":980,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"236c5488bf7c7adea28f903479cf0871","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":166.82,"y":489.83},"width":63.06688,"height":11.017679,"page":619}],"sectionNumber":6218,"textBefore":"520843) performed at ","textAfter":" (Preclinical Services,","comments":null,"startOffset":154,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98cb140d6e82e4266c66b9d71764c8e2","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":461.04083,"y":502.43},"width":22.384491,"height":11.017679,"page":619}],"sectionNumber":6218,"textBefore":"male rats (","textAfter":" Study No.","comments":null,"startOffset":119,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd62b3719231a9f6718f821bec5588b3","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":326.61},"width":27.341446,"height":11.017679,"page":619}],"sectionNumber":6219,"textBefore":"7.4 using a ","textAfter":" type, Teflon-glass,","comments":null,"startOffset":288,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bee44a559f4fb62a45ceb2571e8619e","type":"CBI_author","value":"Finch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.89,"y":163.5},"width":28.611053,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"mM UDPGA (","textAfter":" et al.","comments":null,"startOffset":1246,"endOffset":1251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08867f362c96e723534043898b45194f","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":75.52002},"width":37.08976,"height":11.017679,"page":619}],"sectionNumber":6219,"textBefore":"(BNF) treated male ","textAfter":"-Dawley rats. Statistics:","comments":null,"startOffset":1799,"endOffset":1806,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a35ec3c36f59062b56df21e1c5d73169","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":319.15,"y":326.61},"width":23.687195,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"driven homogeniser (","textAfter":", 1987). Liver","comments":null,"startOffset":341,"endOffset":345,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f82354cc715887c3698224871911ecd6","type":"PII","value":"(224) 15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.161,"y":203.34003},"width":20.655975,"height":10.0905,"page":620},{"topLeft":{"x":445.06,"y":203.34003},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6225,"textBefore":null,"textAfter":null,"comments":null,"startOffset":53,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787318Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ba7a950aa3bac3c2ddc28fd4d2af776","type":"PII","value":"(421) 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.31793,"y":185.94},"width":20.655975,"height":10.0905,"page":620},{"topLeft":{"x":445.06,"y":185.94},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":55,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787318Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a8edac5f0ff06f6edf859408390b081e","type":"PII","value":"8000 40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-2: Hepatic microsomal protein content","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.86,"y":490.31},"width":19.044998,"height":10.018499,"page":620},{"topLeft":{"x":378.79,"y":490.55},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":139,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85347916a99215799de885071715bc5c","type":"PII","value":"(158) 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.844,"y":220.73999},"width":20.421997,"height":10.0905,"page":620},{"topLeft":{"x":449.62,"y":220.73999},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6224,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e334ce64f2ea9ba2485af34c366b3d2a","type":"PII","value":"250 35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-2: Hepatic microsomal protein content","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":174.14,"y":525.11},"width":14.619995,"height":10.018499,"page":620},{"topLeft":{"x":383.23,"y":525.35},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":92,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e72ba282b053d018e3a6e4b9094fdb22","type":"PII","value":"(347) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":311.051,"y":185.94},"width":20.655975,"height":10.0905,"page":620},{"topLeft":{"x":352.87,"y":185.94},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":35,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46bbc546e380431f47612998bb100807","type":"PII","value":"8000 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":99.864,"y":185.70001},"width":19.044998,"height":10.018499,"page":620},{"topLeft":{"x":167.42,"y":185.94},"width":10.054001,"height":10.0905,"page":620}],"sectionNumber":6226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78732Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f65a8e5de443155f52e2608d1f5c72fd","type":"PII","value":"1500 38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-2: Hepatic microsomal protein content","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.86,"y":507.71},"width":19.044998,"height":10.018499,"page":620},{"topLeft":{"x":378.79,"y":507.95},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":114,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78732Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"14978a3167bd8cbb444bbad0afd20a67","type":"CBI_address","value":"CRL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":134.48401,"y":639.86},"width":22.384476,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Charles River (","textAfter":") Study No.","comments":null,"startOffset":2387,"endOffset":2390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5538f11881e30b3b9b182aabcf9e450","type":"PII","value":"253-262","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.18399,"y":589.1},"width":37.596,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Appl. Pharmacol. 214, ","textAfter":". Lake BG,","comments":null,"startOffset":2732,"endOffset":2739,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78732Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2d4f19896da28f8dc62dc1e5c2dd13b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":340.45035,"y":390.81},"width":38.260437,"height":10.526819,"page":621}],"sectionNumber":6228,"textBefore":"November 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":309,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a525c0fc205ac4d02e83afc66c4319f9","type":"CBI_author","value":"Henderson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":273.70947,"y":614.42},"width":48.60446,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"KL, Martin T, ","textAfter":" WJ, Capen","comments":null,"startOffset":2570,"endOffset":2579,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b058f6c6f37702427801d34b2ad063f","type":"CBI_author","value":"Capen","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":344.47586,"y":614.42},"width":29.18512,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"T, Henderson WJ, ","textAfter":" CC, Butler","comments":null,"startOffset":2584,"endOffset":2589,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"733548be04956146a6a8d6919f150457","type":"CBI_author","value":"Lake","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.01834,"y":614.42},"width":22.936493,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"CC, Butler WH, ","textAfter":" BG, 2006.","comments":null,"startOffset":2605,"endOffset":2609,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9ee6be81399a0be34746fef1f1f5bf7","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.20581,"y":425.39},"width":34.555237,"height":10.526819,"page":621}],"sectionNumber":6228,"textBefore":"Report: K-CA 5.8.2/03 ","textAfter":" (2014). SYN545974:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ed4017ceaeb50389221ca5b8caffd3f","type":"CBI_author","value":"Randall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.0781,"y":514.55},"width":35.146698,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"NJ, Farr AL, ","textAfter":" RJ, 1951.","comments":null,"startOffset":2996,"endOffset":3003,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3403ec4c25a2fd7f5104aa94d7277f6","type":"CBI_author","value":"Farr","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.00179,"y":514.55},"width":19.304321,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"OH, Rosebrough NJ, ","textAfter":" AL, Randall","comments":null,"startOffset":2987,"endOffset":2991,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed60a1035c524c88f37a1f1e303daf07","type":"CBI_author","value":"Snell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":136.75824,"y":551.87},"width":23.742416,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"xenobiotic metabolism, In: ","textAfter":" K., Mullock","comments":null,"startOffset":2855,"endOffset":2860,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4023a545b5747fdf7001ece69ce650cf","type":"published_information","value":"Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":505.50787,"y":551.87},"width":24.338562,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2934,"endOffset":2939,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c142a89aef052efc519f48b1ff7e3d3","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":652.94},"width":74.9128,"height":10.929359,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2360,"endOffset":2370,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41696284c02c8a790bf0baca37116af7","type":"CBI_address","value":"Leatherhead Food Research (LFR)","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":162.11876,"y":413.85},"width":147.93993,"height":10.526819,"page":621}],"sectionNumber":6228,"textBefore":"Activity In Vitro. ","textAfter":", Molecular Sciences","comments":null,"startOffset":101,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a01a8702951b05179e40076556744d6b","type":"CBI_author","value":"Lowry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":514.55},"width":30.388474,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Oxford, pp. 183−215. ","textAfter":" OH, Rosebrough","comments":null,"startOffset":2962,"endOffset":2967,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ad7a3124b087dee616758ea8fa1a565","type":"CBI_author","value":"Butler","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":395.80087,"y":614.42},"width":28.412323,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"WJ, Capen CC, ","textAfter":" WH, Lake","comments":null,"startOffset":2594,"endOffset":2600,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08f7f01af466d601fcece0a43d5985a7","type":"CBI_author","value":"Osimitz TG","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":114.60095,"y":614.42},"width":53.329605,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2536,"endOffset":2546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["NER"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53dd00485c34e57fdc0e31d715347533","type":"CBI_author","value":"Mullock B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.53825,"y":551.87},"width":51.61841,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2865,"endOffset":2875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["NER"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dc10adacd3956debc710566a88343836","type":"CBI_author","value":"Gabriel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":172.50574,"y":614.42},"width":33.932327,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"JM., Osimitz TG, ","textAfter":" KL, Martin","comments":null,"startOffset":2548,"endOffset":2555,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25b7371abe22870d4c59bbb7433a2ab3","type":"CBI_address","value":"Charles River","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":639.86},"width":63.42018,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"liver weight. REFERENCES: ","textAfter":" (CRL) Study","comments":null,"startOffset":2372,"endOffset":2385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"745c3116c9e0e1925d2f21db845207b8","type":"PII","value":"265-275","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.93791,"y":501.83},"width":37.672104,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Biol. Chem. 193, ","textAfter":". (Lake B,","comments":null,"startOffset":3085,"endOffset":3092,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787321Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0053161e61467fd8933cf90e5e065f0f","type":"CBI_author","value":"Finch","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":614.42},"width":26.193268,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"administration in rats. ","textAfter":" JM., Osimitz","comments":null,"startOffset":2525,"endOffset":2530,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb9eeea7a9a682c4c9717022957bf0a0","type":"CBI_author","value":"Martin T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":228.62206,"y":614.42},"width":40.368668,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"TG, Gabriel KL, ","textAfter":", Henderson WJ,","comments":null,"startOffset":2560,"endOffset":2568,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95a873eca95e967595b6e3c0bee49c4a","type":"CBI_author","value":"Rosebrough","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.30224,"y":514.55},"width":54.256996,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"183−215. Lowry OH, ","textAfter":" NJ, Farr","comments":null,"startOffset":2972,"endOffset":2982,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6b93fa9fe08d04eefc5913a4d67ab6b","type":"CBI_author","value":"Lake","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":564.47},"width":22.93647,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Pharmacol. 214, 253-262. ","textAfter":" BG, 1987.","comments":null,"startOffset":2741,"endOffset":2745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34d1cb6ea3488b4e13a2a18d8eb9ba9","type":"CBI_author","value":"Lake B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":468.32944,"y":477.23},"width":33.06018,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"193, 265-275. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":3095,"endOffset":3101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ad81319dd7476f7abcaa5ba7d6d73e8","type":"CBI_address","value":"CRL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.2395,"y":639.86},"width":22.384491,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"No. 520843 (","textAfter":" Report No.","comments":null,"startOffset":2410,"endOffset":2413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b940bdc9c5a654f72ee97f088d20a2ae","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.755,"y":574.67},"width":15.949005,"height":10.0905,"page":622}],"sectionNumber":6233,"textBefore":"Wistar ","textAfter":null,"comments":null,"startOffset":40,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e123dc3ae2d251587066e7344fab939","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":689.78},"width":28.467995,"height":10.018499,"page":622}],"sectionNumber":6232,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":112,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3116848b058d7e3f590641da6a71963b","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.9,"y":219.89996},"width":29.759209,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":"general procedure of ","textAfter":" et al.","comments":null,"startOffset":1450,"endOffset":1455,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45f35e2cf1db3aa481c2f6b997514bca","type":"CBI_author","value":"Kent","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.47107,"y":548.99},"width":18.496002,"height":10.0905,"page":622}],"sectionNumber":6233,"textBefore":"UK Ltd., Margate, ","textAfter":", CT9 4LT),","comments":null,"startOffset":113,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce70bc7a6fff1f8ff7b5b9113ebc3893","type":"CBI_address","value":"Charles River UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":548.99},"width":65.92601,"height":10.0905,"page":622}],"sectionNumber":6233,"textBefore":null,"textAfter":" Ltd., Margate,","comments":null,"startOffset":81,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e21e889612b9273dbac04eddfd9d2653","type":"CBI_author","value":"Doerge","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":347.23,"y":157.38},"width":33.965424,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1829,"endOffset":1835,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c5664b364eff74d46513e70be91d3faa","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.03885,"y":333.09},"width":27.231049,"height":11.017679,"page":622}],"sectionNumber":6235,"textBefore":"7.4 using a ","textAfter":" type, Teflon-glass,","comments":null,"startOffset":762,"endOffset":768,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3c982b8a4c19f6bae98d9254eac9a02","type":"CBI_author","value":"Randall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.0781,"y":148.73999},"width":35.146698,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"NJ, Farr AL, ","textAfter":" RJ, 1951.","comments":null,"startOffset":1090,"endOffset":1097,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2d413fa53a71da4cf5fcd0af0cef52a","type":"CBI_author","value":"Doerge DL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":261.33002},"width":51.397606,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":537,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1557ed533b818b06eba065201b2d66f0","type":"CBI_author","value":"Churchwell MI,","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.87547,"y":261.33002},"width":71.766495,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":567,"endOffset":581,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"be7a1cf70486d0bac89d83e258518a21","type":"CBI_author","value":"Snell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":136.75824,"y":186.06},"width":23.742416,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"xenobiotic metabolism, In: ","textAfter":" K., Mullock","comments":null,"startOffset":949,"endOffset":954,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"37683110b5749a2cdd1b582adc13ecb7","type":"CBI_author","value":"Divi RL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":173.95198,"y":261.33002},"width":37.84047,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":558,"endOffset":565,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e09122506a7e9b20ec5bcf021ebcdb80","type":"CBI_author","value":"Farr","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.00179,"y":148.73999},"width":19.304321,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"OH, Rosebrough NJ, ","textAfter":" AL, Randall","comments":null,"startOffset":1081,"endOffset":1085,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb8249ebbdf322bde208d49f02d120ed","type":"published_information","value":"Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":505.0307,"y":186.06},"width":24.338562,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1028,"endOffset":1033,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ae8a230573fa41d492dbc1b79543bc2","type":"CBI_author","value":"Green","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":150.93358,"y":248.58002},"width":27.882416,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"peroxidase by Leucomalachite ","textAfter":". Chemical Research","comments":null,"startOffset":653,"endOffset":658,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df5228d26db50c1e189527307fe05766","type":"CBI_author","value":"Lowry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":148.73999},"width":30.388474,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"Oxford, pp. 183−215. ","textAfter":" OH, Rosebrough","comments":null,"startOffset":1056,"endOffset":1061,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a25db28aa3a145264fc18782680527a3","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.82495,"y":753.5},"width":27.26413,"height":11.017679,"page":623}],"sectionNumber":6235,"textBefore":"μM hydrogen peroxide. ","textAfter":" incubations (to","comments":null,"startOffset":2714,"endOffset":2719,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"927135095099f8b423e73f3d93f83944","type":"CBI_author","value":"Mullock B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.53825,"y":186.06},"width":51.61841,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":959,"endOffset":969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1e361c75b2ace2558303c964c592f165","type":"PII","value":"265-275","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.93791,"y":136.02002},"width":37.672104,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"Biol. Chem. 193, ","textAfter":". (Lake B,","comments":null,"startOffset":1179,"endOffset":1186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787322Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ed1dbeab768be29d23403bbd51a5e3e","type":"CBI_author","value":"Ahr HJ","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":139.29741,"y":235.97998},"width":37.928787,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":721,"endOffset":727,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea9570d0a58a0e6535995d608e3cc957","type":"CBI_author","value":"Freyburger A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":235.97998},"width":65.69439,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"Toxicology 11, 1098-1104. ","textAfter":", Ahr HJ,","comments":null,"startOffset":707,"endOffset":719,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10b504df8010f345e611c2cf09a81969","type":"CBI_author","value":"Rosebrough","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.30224,"y":148.73999},"width":54.256996,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"183−215. Lowry OH, ","textAfter":" NJ, Farr","comments":null,"startOffset":1066,"endOffset":1076,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee6dd3519780b2b0c23869d4dd2e1d93","type":"PII","value":"1098-1104","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.34735,"y":248.58002},"width":48.802612,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"in Toxicology 11, ","textAfter":". Freyburger A,","comments":null,"startOffset":696,"endOffset":705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0276cbcac64950b83836355152a5124c","type":"CBI_author","value":"Chang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.58465,"y":261.33002},"width":29.781288,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"REFERENCES: Doerge DL, ","textAfter":" HC, Divi","comments":null,"startOffset":548,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d04a289f87cb82f86686e8b4e67c35","type":"CBI_author","value":"Lake","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":198.65997},"width":22.93647,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"N,N,N',N'tetramethylthiorea. Toxicology, 169-175. ","textAfter":" BG, 1987.","comments":null,"startOffset":835,"endOffset":839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d30333c2f5e689e5f709aa1a6207936","type":"CBI_author","value":"Lake B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":468.32944,"y":111.41998},"width":33.06018,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"193, 265-275. (","textAfter":", 2014)","comments":null,"startOffset":1189,"endOffset":1195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7309e7f181151b88498de172138ffe5","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":273.93},"width":74.9128,"height":10.929359,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":525,"endOffset":535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d9ac48214f2022fc44371cf75a9d4a7","type":"PII","value":"169-175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.34334,"y":223.26001},"width":37.70668,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"of N,N,N',N'tetramethylthiorea. Toxicology, ","textAfter":". Lake BG,","comments":null,"startOffset":826,"endOffset":833,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b992ff10706bda0e46e5bda50c26b1b4","type":"CBI_address","value":"Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.3. Studies on endocrine disruption","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":183.0921,"y":583.67},"width":337.4989,"height":10.526819,"page":624}],"sectionNumber":6238,"textBefore":"for Endocrine Disruption. ","textAfter":". Report No.","comments":null,"startOffset":99,"endOffset":177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"740112f50738334e5a458c675930065c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.3. Studies on endocrine disruption","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":432.09238,"y":572.15},"width":38.160828,"height":10.526819,"page":624}],"sectionNumber":6238,"textBefore":"December 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":232,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcc7f1d25b6a5143f67ba9a17aebc3ee","type":"PII","value":"(2002) 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.8.3. Studies on endocrine disruption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":696.98},"width":30.344315,"height":11.017679,"page":624},{"topLeft":{"x":93.384,"y":702.02},"width":7.9600067,"height":9.163321,"page":624}],"sectionNumber":6240,"textBefore":"defined by WHO/IPCS ","textAfter":" and specific","comments":null,"startOffset":336,"endOffset":345,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1936d3bab4b4e39553df99235d62977f","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.56831,"y":239.58002},"width":22.936493,"height":11.017679,"page":624}],"sectionNumber":6241,"textBefore":"Robertson, 2015 and ","textAfter":", 2014), and","comments":null,"startOffset":1173,"endOffset":1177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b705dbb641a90805c47187c0a7a4c49d","type":"CBI_author","value":"Green","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.8.3. Studies on endocrine disruption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.52844,"y":595.1},"width":25.401993,"height":10.526819,"page":624}],"sectionNumber":6238,"textBefore":"Report: K-CA 5.8.3/01 ","textAfter":" RM. (2015).","comments":null,"startOffset":22,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a4eec1ae82fa0f0e1ad0fd6cb7c3db8","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.07697,"y":252.21002},"width":34.550476,"height":11.017679,"page":624}],"sectionNumber":6241,"textBefore":"Section 3.2.1 (","textAfter":" and Robertson,","comments":null,"startOffset":1141,"endOffset":1148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75780f58c898d8b51937e2828c06bfda","type":"CBI_author","value":"Field","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.12239,"y":511.43},"width":23.676178,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"and Münchwilen, Switzerland. ","textAfter":" trials have","comments":null,"startOffset":431,"endOffset":436,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce5070ed86102164e32be057209422fe","type":"CBI_address","value":"Greensboro","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":371.55707,"y":524.15},"width":52.32492,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"Jealott’s Hill, UK, ","textAfter":", US and","comments":null,"startOffset":387,"endOffset":397,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d22a71001b5e32c4def8c1761d2e4ea6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":178.98431,"y":536.75},"width":41.870102,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"scale at a ","textAfter":" plant at","comments":null,"startOffset":248,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2491c22c5541f808f999e6745fcfbf41","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.63377,"y":461.51},"width":41.88115,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"Health group of ","textAfter":" has maintained","comments":null,"startOffset":737,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db6373ec64fcf8ba401b15e5b251021c","type":"CBI_author","value":"Green","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.68945,"y":634.34},"width":27.860321,"height":11.017679,"page":625}],"sectionNumber":6241,"textBefore":"or (sub)populations. (","textAfter":" RM, 2015)","comments":null,"startOffset":2961,"endOffset":2966,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e440a892e818e554f59bda356ed6e244","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.5022,"y":436.19},"width":41.881104,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"query of the ","textAfter":" internal database","comments":null,"startOffset":962,"endOffset":970,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da137c82b9aec456668a4c7e969e1550","type":"CBI_author","value":"Brazil","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.4029,"y":498.83},"width":27.94867,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"Canada, Argentina, Chile, ","textAfter":", Mexico. The","comments":null,"startOffset":587,"endOffset":593,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f371d32a3bfbb8a55e255ca8cddadf9b","type":"CBI_address","value":"Jealott’s Hill","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.76584,"y":524.15},"width":60.77054,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"R&D sites at ","textAfter":", UK, Greensboro,","comments":null,"startOffset":367,"endOffset":381,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7dedc529375578c48b274e90f3d148f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":163.27632,"y":524.15},"width":42.002594,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"taken place at ","textAfter":" R&D sites","comments":null,"startOffset":345,"endOffset":353,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b9584b3759a563baf3a88c753871b4d3","type":"PII","value":"17 4072","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.23,"y":194.70001},"width":11.02002,"height":10.526819,"page":626},{"topLeft":{"x":389.71,"y":194.70001},"width":21.100037,"height":10.526819,"page":626}],"sectionNumber":6250,"textBefore":null,"textAfter":null,"comments":null,"startOffset":114,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787324Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"010a72649b4682e115872f6f9001a5ca","type":"PII","value":"17 3836","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.23,"y":153.89996},"width":11.02002,"height":10.526819,"page":626},{"topLeft":{"x":389.71,"y":153.89996},"width":21.100037,"height":10.526819,"page":626}],"sectionNumber":6251,"textBefore":null,"textAfter":null,"comments":null,"startOffset":100,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787324Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecca6bfab77f96350c7c42fe2b055c85","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9.6. Proposed treatment: first aid measures, antidotes, medical treatment","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":80.39904,"y":716.78},"width":41.90319,"height":11.017679,"page":626}],"sectionNumber":6248,"textBefore":"when calling the ","textAfter":" emergency number,","comments":null,"startOffset":184,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef1c7551008e75e49533d93ec77f6d1d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":123.17999},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":256,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84a4883bd8e765c38a3481176e97082e","type":"CBI_author","value":"Klimisch","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":529.19},"width":41.406395,"height":11.017679,"page":627}],"sectionNumber":6258,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2425,"endOffset":2433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":["6ca5293235e29ae64a587d6bfcd59d95"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e49e3bc1c19c3743c6df0c7815226d10","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":174.89996},"width":116.00198,"height":10.0905,"page":627},{"topLeft":{"x":181.94,"y":164.58002},"width":113.87799,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":"the Rat Syngenta ","textAfter":", 34214 GLP","comments":null,"startOffset":177,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a15af3cc0be4a5441479fd7a70d82a56","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":102.06},"width":36.072998,"height":10.0905,"page":627}],"sectionNumber":6262,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"20827cbee1ba2ef75cbd6cd9f3859b41","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":102.26,"y":477.95},"width":62.88401,"height":10.929359,"page":627}],"sectionNumber":6413,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30c3512392fc38f5650c41f0858bae03","type":"CBI_author","value":"Webbley K., Williams D.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":392.85},"width":53.838997,"height":10.0905,"page":627},{"topLeft":{"x":82.704,"y":382.41},"width":44.87799,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2673cd7ff9fcef2b457eefada07bf8b1","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":237.06},"width":36.072998,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de805cab3704fa2dc71f5f0a9b26f03c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":185.34003},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":"in the Rat ","textAfter":" Charles River","comments":null,"startOffset":168,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad1c551671cefd0cd02216f997702402","type":"hint_only","value":"author","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":82.704,"y":455.15},"width":28.872993,"height":10.018499,"page":627}],"sectionNumber":6259,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2814dafb597c6c72ce21a60c9579a56","type":"CBI_address","value":"Quotient Bioresearch Limited, Northamptonshire, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":310.05},"width":115.966034,"height":10.0905,"page":627},{"topLeft":{"x":181.94,"y":299.73004},"width":68.725006,"height":10.0905,"page":627},{"topLeft":{"x":281.71402,"y":299.73004},"width":13.995972,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":"14C- SYN545974 Syngenta ","textAfter":", SGA/64 GLP","comments":null,"startOffset":222,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a83cf4dc5e06277c41c7c6c07d22abb","type":"CBI_author","value":"Andreae M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.79288,"y":61.599976},"width":48.817963,"height":10.526819,"page":627}],"sectionNumber":6413,"textBefore":"20 Klimisch H-J, ","textAfter":" and Tillmann","comments":null,"startOffset":46,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2dfc12c5d164296abd8d06ec2b15e456","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":258.33002},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":299,"endOffset":307,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"020d887f7918f3e5b2f7ddd4217b94a7","type":"CBI_author","value":"Klimisch H-J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.744,"y":61.599976},"width":57.19043,"height":10.526819,"page":627}],"sectionNumber":6413,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f866eac759171484a5ffdd1b0e035ea","type":"CBI_author","value":"Tillmann U","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.56064,"y":61.599976},"width":50.023132,"height":10.526819,"page":627}],"sectionNumber":6413,"textBefore":"Andreae M and ","textAfter":" (1997) A","comments":null,"startOffset":60,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d14202f8431a14dda6abb32a2b8c25c7","type":"PII","value":"(1997) 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":165.98,"y":529.19},"width":30.233917,"height":11.017679,"page":627},{"topLeft":{"x":195.17,"y":534.23},"width":7.9599915,"height":9.163321,"page":627}],"sectionNumber":6258,"textBefore":"Klimisch et al ","textAfter":" using the","comments":null,"startOffset":2440,"endOffset":2449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787325Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3705225ead167d3f69866421823f85c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":320.37},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":"of 14C- SYN545974 ","textAfter":" Quotient Bioresearch","comments":null,"startOffset":213,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e83f33d7fe9c5b344c604b768cbfae68","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":585.71},"width":46.30818,"height":11.017679,"page":627}],"sectionNumber":6258,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2039,"endOffset":2049,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ca5293235e29ae64a587d6bfcd59d95","type":"published_information","value":"EFSA Journal","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":124.98899,"y":720.98},"width":52.767998,"height":10.0905,"page":627}],"sectionNumber":6258,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1146,"endOffset":1158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b815fa076774b64fd6ca6fec740d4066","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":516.23},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":438,"endOffset":446,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87e3c5eeb51d291599672cec18266272","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":578.39},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"in the Rat ","textAfter":" Charles River","comments":null,"startOffset":350,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0fa8e658460944115e5360731340647f","type":"CBI_author","value":"Hutton E., OHagan P.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":640.46},"width":54.090996,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":630.14},"width":40.536987,"height":10.0905,"page":628}],"sectionNumber":6265,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f936f34618eefd9295f339543b3c328e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.7},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":178,"endOffset":186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75b64359a4a5081108d02d1290f6c913","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"in the Rat ","textAfter":" Charles River","comments":null,"startOffset":90,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0728696d550a8c4796383abc36a6270b","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":703.1},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"the Rat Syngenta ","textAfter":", 34340 GLP","comments":null,"startOffset":99,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ddb1206e38c0869468696b38d2ab3aa2","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":453.71},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":443.27},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"in Rat Syngenta ","textAfter":", 34216 GLP","comments":null,"startOffset":533,"endOffset":586,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fd031cf1ffa202636a659dd79212f5f","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":308.25},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":297.93},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Intravenous Administration Syngenta ","textAfter":", 33409 GLP","comments":null,"startOffset":767,"endOffset":820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5c25dca340226a77900f2378bd07681","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":162.77997},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":152.46002},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Intravenous Administration Syngenta ","textAfter":", 33408 GLP","comments":null,"startOffset":1003,"endOffset":1056,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9740ac94c4cb1153c06d0d7f75697f67","type":"CBI_author","value":"Tomlinson J., Hutton E., Green M., Allan G.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":89.94403},"width":54.073006,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":79.47998},"width":54.090996,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":69.15997},"width":53.965004,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":58.840027},"width":31.914993,"height":10.0905,"page":628}],"sectionNumber":6269,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb9c6c23d44ad06bbe95cf4ffffc35e7","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.95},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":557.63},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"the Rat Syngenta ","textAfter":", 34107 GLP","comments":null,"startOffset":359,"endOffset":412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aab5a986ebeb7e76c213e69918c832bc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.85},"width":34.522003,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":612,"endOffset":620,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"156b08263980cd0d78d8e2bd64223a28","type":"CBI_author","value":"Macdonald M., Jewkes Y.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":495.11},"width":41.473,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":484.67},"width":52.64199,"height":10.0905,"page":628}],"sectionNumber":6266,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3046d3b921896e7362f558e49534b38f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"[14C]SYN545974 in Rat ","textAfter":" Charles River","comments":null,"startOffset":524,"endOffset":532,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a7a9df202ede17092710470a1333895","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":173.22003},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Single Intravenous Administration ","textAfter":" Charles River","comments":null,"startOffset":994,"endOffset":1002,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58ebfaba2ccc755a3e44a4f4b4e7b344","type":"CBI_author","value":"Punler M., Harris J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":380.73},"width":54.073006,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":370.29},"width":31.465004,"height":10.0905,"page":628}],"sectionNumber":6267,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d328944f98e8ac3bd2f1de6beb3acf6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":256.52997},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":846,"endOffset":854,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dce153b13ce669a7b8457ddec817bbbc","type":"CBI_author","value":"Punler M., Harris J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":235.26001},"width":54.073006,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":224.94},"width":31.465004,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27d997105fba94580f80e6163de5b60d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":111.06},"width":34.48001,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":1082,"endOffset":1090,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bc795766653eadb9c7bf901f8152653","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":318.57},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Single Intravenous Administration ","textAfter":" Charles River","comments":null,"startOffset":758,"endOffset":766,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b22e508eeec493f3be4fbb65b1a44274","type":"CBI_author","value":"Torok-Batho M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":110.099976},"width":47.49299,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":99.77997},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6277,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"727fbe225a777b4b909eba74593afef8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":235.26001},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0064286dadb5c99c8fa0133ab0182bbf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":619.82},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":"the Pregnant Rabbit ","textAfter":" Sequani Limited,","comments":null,"startOffset":97,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f40e92e073498663e02e15239a8d2cf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":131.34003},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":175,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78b24b52116a4030ad8a4feb683d26e4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.65},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":171,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e5a9ab27c086285a3c03b272616ca25","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":115.83096,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":599.06},"width":61.830994,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":"Pregnant Rabbit Syngenta ","textAfter":", BFI0126 GLP","comments":null,"startOffset":106,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"37f63a9c8a1194bddcad5e320f053e4c","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":391.05},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":"in Rats Syngenta ","textAfter":", 12/344-002P GLP","comments":null,"startOffset":93,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9093a96f263a6741cbd482458aff5b7","type":"CBI_author","value":"Petus-Arpasy M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":546.83},"width":49.521004,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":536.39},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"efbc352b58ab3e6449b3fde0bd5bc214","type":"CBI_author","value":"Nagy K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":328.41},"width":31.330002,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0597ac984bbb3f0a46fbf509d313f752","type":"CBI_author","value":"Petus-Arpasy M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":432.47},"width":49.521004,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":422.15},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0508057f9f0afceee69bbdde7ecaf1e8","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":79.0},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":68.67999},"width":113.86899,"height":10.0905,"page":629}],"sectionNumber":6277,"textBefore":"in Rabbits Syngenta ","textAfter":", 12/344-005N","comments":null,"startOffset":95,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6df218d5591346142c8e4590372ee8bd","type":"CBI_author","value":"Torok-Batho M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":214.02002},"width":47.49299,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":203.70001},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92e5350f143650478591ce393374fd41","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":453.71},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":196,"endOffset":204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a92b97a4595142db01d9c7e0dc7fdbf7","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":505.43},"width":116.05902,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":495.11},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":"Down Procedure) Syngenta ","textAfter":", 12/344-001P GLP","comments":null,"startOffset":118,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b24f6a3121e3698b80789f2057be48bc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":411.69},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":"Study in Rats ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":84,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"beb826bc7424e9f510351dc2b6784e5d","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":276.69},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":"the Rat Syngenta ","textAfter":", 12/334-004P GLP","comments":null,"startOffset":104,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9a6b14165d085f3ffcea3b0ae4fa785","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":116.00198,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":713.42},"width":113.87799,"height":10.0905,"page":629}],"sectionNumber":6271,"textBefore":"the Mouse Syngenta ","textAfter":", 35415 GLP","comments":null,"startOffset":49,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd0ee265cf03d00678f6649ef77986b1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":89.343994},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6277,"textBefore":"Study in Rabbits ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":86,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"085cf525d63699e657b43412d8c34cd1","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":650.78},"width":29.01699,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a6b3680a21b5ea17bcbaaffde8e3e70","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":183.06},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":172.62},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":"in Rabbits Syngenta ","textAfter":", 12/344-006N GLP","comments":null,"startOffset":97,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f33ef68dd2748e5d3dac78fd5275a98","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.95},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":174,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"860c3db6c46008edcda95ffe9bfaa4be","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":"and Down Procedure) ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":109,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"826c1a8f1de9505d8c08f882eea23bce","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":297.45},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":"in the Rat ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":95,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"343bf956630fe7e606665ab928412dde","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":672.02},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6271,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":128,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a45d94541968a8a67057c54a19a6b652","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6271,"textBefore":"in the Mouse ","textAfter":" Charles River","comments":null,"startOffset":40,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff2aa13d7f753afe4a1016acad39984c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":"Study in Rabbits ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":88,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"047c883b1cb4b0d5f8efde649d06bd35","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":183.06},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":"in Rats Syngenta ","textAfter":", 33012 GLP","comments":null,"startOffset":145,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07f2ad886130893bfb34adb1e3c95728","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":68.67999},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":58.359985},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6285,"textBefore":"in Mice Syngenta ","textAfter":",","comments":null,"startOffset":131,"endOffset":184,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9aab2d413ee053681b4fe275d8e5506c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":"Study in Mice ","textAfter":" Charles River","comments":null,"startOffset":93,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22f2a68ee174e7e656cd098679154c5c","type":"CBI_author","value":"Hargitai J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":712.94},"width":38.413002,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7e2ebd2509794db9384f637e6898863","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":484.19},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":"Study in Rat ","textAfter":" Charles River","comments":null,"startOffset":91,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6538ca68636ccb30efe28c22a24863c2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":141.65997},"width":34.51001,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":224,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f456af462b54649e25b3fc1b73ca2a8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":79.0},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6285,"textBefore":"Administration in Mice ","textAfter":" Charles River","comments":null,"startOffset":122,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a543c753c8171e5570abcd0a147aeb2b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":203.70001},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":"Administration in Rats ","textAfter":" Charles River","comments":null,"startOffset":136,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f5e3e7860ebf0a0fcf236ebdc52b1fc","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.47},"width":34.525024,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"Eurofins BioPharma, Planegg, ","textAfter":", 151200 GLP","comments":null,"startOffset":116,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c0be036517ba43f95f0f502e9dfe58b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":167,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8bcf82a881471227146c58294b0687b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":185,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f520da89af40667ffe2ea01f374ba8e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":183,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9072d4d1f6ba612dd280a4fa7465b0e3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":588.26},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"NRU Phototoxicity Test ","textAfter":" Eurofins BioPharma,","comments":null,"startOffset":78,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a40c65f9ea579a0a434745bb30a389e0","type":"CBI_author","value":"Shearer J., Robertson B.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":245.10004},"width":53.974007,"height":10.0905,"page":630},{"topLeft":{"x":82.704,"y":234.77997},"width":48.573997,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d52208cb2470c217be1a7139332f59f","type":"CBI_author","value":"Shearer J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":120.41998},"width":36.487,"height":10.0905,"page":630}],"sectionNumber":6285,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d98053723020e52a3b039d4138185139","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":150,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8610706d3123f5103dd507ccaccc17c9","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.18},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":"in the Mouse ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":80,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3c0f8082bca8e1c73b8e63d8ddf84d0","type":"CBI_author","value":"Gehrke H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":38.411995,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"603dfb2914313a36982931dee2bc3ec7","type":"CBI_author","value":"Strepka C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":515.27},"width":38.979996,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d635cb17a0d8bf9901d5dcf2909c02f1","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":328.41},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":"in Mice Syngenta ","textAfter":", 32153 Not","comments":null,"startOffset":102,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cfa8f8d1943ad74876a223ffff57f199","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":473.87},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":463.55},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":"in Rat Syngenta ","textAfter":", 32168 Not","comments":null,"startOffset":100,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fd7b5a84f624d3ed7374a0dd2e7ce9e","type":"CBI_address","value":"Eurofins BioPharma","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":577.79},"width":77.42798,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"Phototoxicity Test Syngenta ","textAfter":", Planegg, Germany,","comments":null,"startOffset":87,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"239b5d75b5cd0ebd0eb39a248a7fe496","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":115.99301,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":671.54},"width":113.80603,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":"the Mouse Syngenta ","textAfter":", 12/344-037E GLP","comments":null,"startOffset":89,"endOffset":135,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"730f590af14f9e9277ec44b6a7ae61e4","type":"CBI_author","value":"Strepka C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":380.25},"width":38.979996,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78bb0fdcf68b3a4260f72cd28cc9aebb","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6279,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":18,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ace5d68c156e4955e6d817a0e39de47","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":463.55},"width":115.98401,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":453.11},"width":73.94499,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":"Wistar Rat Syngenta ","textAfter":", D62072 GLP","comments":null,"startOffset":98,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9932262f23d2edf3c57b3f3808452675","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":286.52997},"width":43.43499,"height":10.0905,"page":631},{"topLeft":{"x":82.704,"y":276.21002},"width":9.610001,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a5013a9d278091fb06a14d44da8f7d2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":141.18},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":"Lymphocytes In Vitro ","textAfter":" Harlan Cytotest","comments":null,"startOffset":105,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2d4f08aab30b3b32f2b3280bf3fb259","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":400.89},"width":43.43499,"height":10.0905,"page":631},{"topLeft":{"x":82.704,"y":390.57},"width":9.610001,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b5ced5a2bb030cb256ca2e3f629807b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":79.0},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":198,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5bc29b6066555d49245019e5dfd93efd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac02c5517b51756cc332d91551bf1135","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":172.14001},"width":51.967003,"height":10.0905,"page":631},{"topLeft":{"x":82.704,"y":161.82},"width":8.290001,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b20db88b84dd2ce066e0871d856fb83d","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.47},"width":115.83096,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":557.15},"width":61.830994,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":"the Dog Syngenta ","textAfter":", BFI0114 GLP","comments":null,"startOffset":100,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3daafe7dcf5c4414279a916a52c61666","type":"CBI_author","value":"Blunt H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":32.041,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d5f908686e479434a3b2a958c995329","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":"in the Dog ","textAfter":" Sequani Limited,","comments":null,"startOffset":80,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"942397c92eaa6c724401f9945e961458","type":"CBI_author","value":"Blunt H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":702.62},"width":32.041,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a5d2533cd38fafa28c74e94aee48d58","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":168,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aef491cb7ce26a65a29a192653c54f90","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":671.54},"width":115.83096,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":661.22},"width":61.830994,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":"the Dog Syngenta ","textAfter":", BFI0113 GLP","comments":null,"startOffset":89,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"931ce242a84dc9eb98f8883f280ca551","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":473.87},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":"the Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":89,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5102a0b81ac3e53866ebd3517f3c4ef6","type":"CBI_author","value":"Sieber M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":504.95},"width":36.577003,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eae098cdb0587c1c1612f4eb64a62404","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.49},"width":115.91205,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":349.17},"width":116.010956,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":338.85},"width":34.525024,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":"Mutation Assay Syngenta ","textAfter":", 1498901 GLP","comments":null,"startOffset":122,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d89b57a3d3d7cf109a9ded93e22601e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6287,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":24,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f07d3855df48072792d2da6fe3ac85e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":206,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f317fda8f5e523e66f3bc5eb64315b8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":206,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e633a89b5c6cdb4aa4b5420edf400dd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":577.79},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":"in the Dog ","textAfter":" Sequani Limited,","comments":null,"startOffset":91,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf8173ca50d2c1affedf1b5710eb039d","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":245.10004},"width":115.85806,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":234.77997},"width":116.010956,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":224.46002},"width":34.525024,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":"Mutation Assay Syngenta ","textAfter":", 1648701 GLP","comments":null,"startOffset":122,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7865b34503d9c09c16a7a0d0d37bca2f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":171,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd3170dce2258cd53f873cf22d65178a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":369.81},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":"Reverse Mutation Assay ","textAfter":" Harlan Cytotest","comments":null,"startOffset":113,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1b165c0256568b0708c15012947e287","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":130.73999},"width":115.85806,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":120.41998},"width":116.010956,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":110.099976},"width":34.525024,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":"In Vitro Syngenta ","textAfter":", 1498902 GLP","comments":null,"startOffset":114,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b3a97b89fe06dc3812afa0e11b96543","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":57.76001},"width":38.872,"height":10.0905,"page":631}],"sectionNumber":6294,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0acb024c14e347c4204eaaa78a97e48b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":"Reverse Mutation Assay ","textAfter":" Harlan Cytotest","comments":null,"startOffset":113,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98292acb5701d38bdad05265a337e77d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":495.11},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"of the Mouse ","textAfter":" Harlan Cytotest","comments":null,"startOffset":93,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a880cfa00baf31c496854c5e21edf4e1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"of the Mouse ","textAfter":" Harlan Cytotest","comments":null,"startOffset":93,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"33936a84c35c80975de69028464ef03e","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.65},"width":116.00198,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":339.33},"width":113.87799,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":"1 (2016) Syngenta ","textAfter":", 36248 GLP","comments":null,"startOffset":156,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58df06166918137dfc5471f6d9182a07","type":"CBI_author","value":"Cowie D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":151.97998},"width":35.406998,"height":10.0905,"page":632}],"sectionNumber":6301,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d37dde1b19187ae3d5e85dbebaaefe0f","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":276.69},"width":48.573997,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4227cdcb4ae327f1a3f4bda269b2358","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.08304,"y":515.75},"width":30.033966,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":67,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2647fe8253395e7f1d22541ea8b46e59","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.08304,"y":630.14},"width":30.033966,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":67,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b5ac65ecd101e33415326702b87e045","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.97},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":"Amendment 1 (2016) ","textAfter":" Charles River","comments":null,"startOffset":147,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8593e83e3d178b87f8895d568a6cf284","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":224.94},"width":116.00198,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":214.62},"width":113.87799,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":"2 (2016) Syngenta ","textAfter":", 35914 GLP","comments":null,"startOffset":139,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"daf173674303e092acd2e5b9d2771ceb","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":115.85806,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":703.1},"width":116.010956,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":692.66},"width":34.525024,"height":10.0905,"page":632}],"sectionNumber":6296,"textBefore":"L5178Y Cells Syngenta ","textAfter":", 1498903 GLP","comments":null,"startOffset":96,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c53434cc78f8198958f134191eca07c8","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":411.69},"width":48.573997,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7781b631555a9bf8b736c5b1a2b8cbb2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":297.93},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58d32cccecb3d94dc74ac002622d4a5f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.7},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6296,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":180,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6216b7ca4e43e038d77469ef06123c77","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":547.31},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":186,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5eca704cb83c94e78afe52c44535ab1b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":235.26001},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":"Amendment 2 (2016) ","textAfter":" Charles River","comments":null,"startOffset":130,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cda1a6db6bbc97aadc4280f6c7b20950","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":173.22003},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":218,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a9769f0a23b489eb718613e5bc90c57","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":599.06},"width":115.85806,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":588.74},"width":116.010956,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":578.39},"width":34.525024,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"the Mouse Syngenta ","textAfter":", 1498904 GLP","comments":null,"startOffset":102,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"14fe31e8cf30e647bb6447f2ba1cae6e","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":100.26001},"width":116.170105,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":89.94403},"width":116.047,"height":10.0905,"page":632}],"sectionNumber":6301,"textBefore":"in CD-1 Mice ","textAfter":" TK0258437 Not","comments":null,"startOffset":115,"endOffset":177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1260e8b68309451e85b60a8407ba0b5a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6296,"textBefore":"Lymphoma L5178Y Cells ","textAfter":" Harlan Cytotest","comments":null,"startOffset":87,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c03462bf7c66407614dfb2a9207cb51","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":526.07},"width":30.925003,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"450ace39e2353e5d4e25e970db25c300","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.95},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":186,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6377463877ecc183589191fcc2258b67","type":"CBI_author","value":"Roth M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":640.46},"width":31.071999,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11d8715f8f290b036d1bb488ae94bec5","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":484.67},"width":115.85806,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":474.35},"width":116.010956,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":464.03},"width":34.525024,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"the Mouse Syngenta ","textAfter":", 1648702 GLP","comments":null,"startOffset":102,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aba937f57f56a456cef42d1b19775c97","type":"CBI_author","value":"Elcombe B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":712.94},"width":43.416992,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"970fa45ccf6b3493564e3f18b3913f1d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":391.05},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":"Human Hepatocyte Cultures ","textAfter":" CXR Biosciences,","comments":null,"startOffset":147,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"06ad32d8ecd42b83c0425c0e5ce6ac53","type":"CBI_author","value":"Lowes D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":588.26},"width":35.893005,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3a3ab74d559c0eba5a14e9317b9d00e","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":671.54},"width":116.073975,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":661.22},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":"CD-1 Mice Syngenta ","textAfter":", CXR1508 Not","comments":null,"startOffset":112,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c5c71e75f2ce79d469af37658aa0f16f","type":"CBI_author","value":"Lowes D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":442.79},"width":35.893005,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39c658b368f0d5810f731022a6edaa8a","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":380.73},"width":115.99301,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":370.29},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":"Hepatocyte Cultures Syngenta ","textAfter":", CXR1504 Not","comments":null,"startOffset":156,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f72127bb502e4f104dac85695252a90","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":100.26001},"width":115.99301,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":89.94403},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":"the Mouse Syngenta ","textAfter":", CXR1117 Not","comments":null,"startOffset":165,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6932927dcbf097e39fd5988d36dd83a0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":"in the Mouse ","textAfter":" CXR Biosciences,","comments":null,"startOffset":156,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d899a7e8007a76cd01fd9ad2de9a3042","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":58.840027},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":234,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22800f1fa5fb64fc9036a9b453329063","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":115.99301,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":515.75},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":"Hepatocyte Cultures Syngenta ","textAfter":", CXR1503 Not","comments":null,"startOffset":160,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7cbc21389c5df791a14be77d51913ae","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":"Mouse Hepatocyte Cultures ","textAfter":" CXR Biosciences,","comments":null,"startOffset":151,"endOffset":159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1f73f2c632c0a3f37413505936d379e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":339.33},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":225,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c499a6affcc0fdca5c2356043206f045","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":"Male CD-1 Mice ","textAfter":" CXR Biosciences,","comments":null,"startOffset":103,"endOffset":111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25692f9db0f22a153f627b8a37660b23","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":204.18},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":201,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56b27aaa25b741d0fff5424dc7c94b9b","type":"CBI_address","value":"Dept of Vet & Biomedical Sciences, University Pk, PA, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":256.05},"width":115.867035,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":245.58002},"width":115.93909,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":235.26001},"width":19.0,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":"Human CAR Syngenta ","textAfter":", TK0219831 Not","comments":null,"startOffset":110,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d80b934ed02f99b28254953114b96dc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":181,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e67507148481f029e0a8a5116906c761","type":"CBI_author","value":"Haines C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":162.29999},"width":36.477997,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4eb47d374c5c468d43b28ce086f830e8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":754.82},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6303,"textBefore":null,"textAfter":" File No","comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4bab27fa0a19d3d5a0e237a34e07f78d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":266.37},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":"and Human CAR ","textAfter":" Dept of","comments":null,"startOffset":101,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47831e7c51ff9b4e45beaa0f00f4cafc","type":"CBI_author","value":"Omiecinski C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":297.45},"width":52.917,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f813a0c5745b1164697439d28dc55f2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":484.67},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":229,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a9e6bd7151c5143fbba75a48c4b247d","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":557.15},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":546.83},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":"the Rat Syngenta ","textAfter":", BFI0031 Not","comments":null,"startOffset":157,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1620bfbd81255e2403e159a53c457945","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":640.46},"width":34.516006,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":190,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"205e37e616d303bdbc23c84f65c3b6e1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.18},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":"in the Rat ","textAfter":" Sequani Limited,","comments":null,"startOffset":113,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0950449fe519b3f055a7f9e6691e5c4","type":"CBI_author","value":"Barnes E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":130.73999},"width":35.991997,"height":10.0905,"page":634}],"sectionNumber":6316,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2df6f439031b6e01c606912ceedab5aa","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.47},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":"in the Rat ","textAfter":" Sequani Limited,","comments":null,"startOffset":148,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f2b447ea955485f1a9da5e07ca94761","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":229,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a32efd1dea0bc28e3e1bef08b8c8d2c","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":671.54},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":"the Rat Syngenta ","textAfter":", BFI0171 GLP","comments":null,"startOffset":122,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d82610b708e26d8e94775ac2f716d53","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.69},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":200,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6aceefd4723219e014511add02cc79a2","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":183.06},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":"the Rabbit Syngenta ","textAfter":", BFI0116 GLP","comments":null,"startOffset":116,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7624026e5949c49ebc5af96e39de6de","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":369.81},"width":29.01699,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e92f91c3c4b4e63e24b4a7e42b93ba7","type":"CBI_author","value":"Davies S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":473.87},"width":35.388992,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c541e828aac6d89c2271d202b9878cf2","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":422.15},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":"the Rat Syngenta ","textAfter":", BFI0118 GLP","comments":null,"startOffset":114,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc80cca7cde6099aec787dbb0aabe8ae","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":328.41},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":"in the Rabbit ","textAfter":" Sequani Limited,","comments":null,"startOffset":119,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05806aaa8d8a3ea44ae0e20b4983fed5","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":89.343994},"width":34.47101,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":79.0},"width":116.170105,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":68.67999},"width":115.99298,"height":10.0905,"page":634}],"sectionNumber":6316,"textBefore":"Studies in Rats ","textAfter":" TK0103655","comments":null,"startOffset":127,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3e61e545134a681800f5c188b5746959","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":391.05},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2adfca331da32ac005639a7e46692a54","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":151.97998},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":184,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"632107a75f32b475e28a5542718af84b","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":318.09003},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":307.76996},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":"the Rabbit Syngenta ","textAfter":", BFI0046 Not","comments":null,"startOffset":128,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e1388bb27a020d4a761335b45dd6f4","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":234.77997},"width":29.01699,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4891189971067f8472a7732602d2252","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":203.70001},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":"in the Rabbit ","textAfter":" Sequani Limited,","comments":null,"startOffset":107,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"926882d3f13f82301adf9db546d1cd39","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":"in the Rat ","textAfter":" Sequani Limited,","comments":null,"startOffset":105,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7b681d30fa37b5d14d6af2b044a0e93","type":"CBI_author","value":"Manton J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":619.22},"width":37.072,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc774862c8c03eda7f30aff99242dc40","type":"CBI_author","value":"Hackford S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":723.26},"width":44.488007,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4caa9602df4c78b831e44d20b083eaee","type":"CBI_author","value":"Pooles A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":473.87},"width":35.982994,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11afed96e33cf0e3cbacc1f39f9f3afc","type":"CBI_author","value":"Broich K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":588.26},"width":36.604004,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2f91349cd06cac220f12f4c48afcc8d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":370.29},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1adb8aeef60e1d0a121e5080b5cd146e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92dfc9fc65fbf0726b157cffbfc0bfe8","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":349.17},"width":43.43499,"height":10.0905,"page":635},{"topLeft":{"x":82.704,"y":338.85},"width":9.610001,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9cde307c8ac675b9a68de9ab2d529c4","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":203.70001},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":376,"endOffset":380,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fe5daaa7859e0d7f4bc4c435c3ab3980","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b87cc043521c8e696ea2f3ef3c085be","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":495.11},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":205,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a41205c1d32d7925d0e9bdbba4086f7d","type":"CBI_address","value":"Syngenta Crop Protection AG, Basel, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":115.82202,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":432.47},"width":68.33801,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"Amendment 1, 2011 ","textAfter":" Safepharm Laboratories","comments":null,"startOffset":97,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a78e45a333576d7c3e665e76671c1fee","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":650.78},"width":116.03201,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":640.46},"width":73.94499,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":"Wistar Rat Syngenta ","textAfter":", D84504 GLP","comments":null,"startOffset":109,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7b3b54397b00d5d8de852d63872d225","type":"CBI_address","value":"Syngenta Crop Protection AG, Basel, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":115.82202,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":297.45},"width":68.33801,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"reverse mutation assay ","textAfter":" RCC Cytotest","comments":null,"startOffset":127,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"559ca891ca483f831289c4f359eb1fc8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":235.26001},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":257,"endOffset":265,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1acb744b2ee881aa7cb58d96fc945c32","type":"CBI_address","value":"RCC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":266.37},"width":19.009018,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"GmbH, Rossdorf, Germany, ","textAfter":" 1077403 GLP","comments":null,"startOffset":227,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78d10272c3b4e077ee3d890bbc5dcebd","type":"CBI_address","value":"RCC Cytotest Cell Research GmbH, Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":162.29999},"width":115.867065,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":151.97998},"width":113.88098,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"Bracknell, United Kingdom ","textAfter":", 1266902 GLP","comments":null,"startOffset":159,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7ace025d1a780693ea35e94fc3e3290","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":79.0},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6324,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":192,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68b5f952fc281faa70ad76bc0974c591","type":"CBI_author","value":"Broich K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":36.604004,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64a074563f78c135d6d48944a2206956","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":115.98401,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":526.07},"width":73.94499,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":"Wistar Rat Syngenta ","textAfter":", D97813 GLP","comments":null,"startOffset":132,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c688045033dfb0753c9296aca0a07bd","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":183.06},"width":116.170105,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":172.62},"width":101.26901,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"Lymphocytes In Vitro ","textAfter":" RCC Cytotest","comments":null,"startOffset":106,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"530031e4d321026cb26cd408a0f1893f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6318,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"772f0bf7a8a9c7890b837ef95bf8f0b9","type":"CBI_address","value":"Safepharm Laboratories Ltd., Shadlow, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":116.08298,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":411.69},"width":113.87799,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"AG, Basel, Switzerland ","textAfter":", Safepharm 2364/0169","comments":null,"startOffset":145,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64ecea90e9353cc81d98fe7a6b27eb57","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":546.83},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":"Female Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":123,"endOffset":131,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86ab73c31e5272d927f2d9402de8cef1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":"the Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":100,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cab08899f5db25fab4862904926d53b7","type":"CBI_address","value":"Safepharm","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":40.015,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"Shadlow, United Kingdom, ","textAfter":" 2364/0169 GLP","comments":null,"startOffset":199,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f6bfb03310b8b59afed08036eb16deb","type":"CBI_address","value":"RCC Cytotest Cell Research GmbH, Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":115.867065,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":276.69},"width":113.77899,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"AG, Basel, Switzerland ","textAfter":", RCC 1077403","comments":null,"startOffset":175,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"379a15ca8c4df04f08267f8102deb768","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":89.343994},"width":38.872,"height":10.0905,"page":635}],"sectionNumber":6324,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24ed61171ff23849bc9dae322f5b9982","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":463.55},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":372,"endOffset":376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bf0c896ac3f3b13949e1380ed7ab83c","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":338.85},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":395,"endOffset":399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af77c257fe34c44b580b46221143a58c","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":214.02002},"width":51.967003,"height":10.0905,"page":635},{"topLeft":{"x":82.704,"y":203.70001},"width":8.290001,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd9d60d8534058f44a86b176719cae89","type":"CBI_address","value":"BASF SE, Limburgerhof, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":505.43},"width":115.85794,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":495.11},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"diet Syngenta, BASF ","textAfter":", 2009/1072503 GLP","comments":null,"startOffset":180,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64fd659dd88d13bc7b9ae91df0448c38","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":380.73},"width":23.391998,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"AG, Basel, Switzerland ","textAfter":", 2009/1072507 GLP","comments":null,"startOffset":215,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d374834245bb0338a2c22ba6c1afe672","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.65},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":252,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3388cb6d7f36c3b91a48689adc268657","type":"CBI_address","value":"RCC Cytotest Cell Research GmbH, Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":115.867065,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":723.74},"width":113.77899,"height":10.0905,"page":636}],"sectionNumber":6326,"textBefore":"Bracknell, United Kingdom ","textAfter":", 1266901 GLP","comments":null,"startOffset":53,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b6d0d337dce2fd52975dab7a6a1a41e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":58.359985},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6332,"textBefore":"in Human Lymphocytes ","textAfter":null,"comments":null,"startOffset":106,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d213f55c7364aab44ddaf3707136673f","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":432.47},"width":23.391968,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":391,"endOffset":395,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce93db7bb304cb77d087ce320570a84b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":243,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cac0c6f408db20e599d11e3957e96c16","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":162.29999},"width":115.85806,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":151.97998},"width":116.010956,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":141.65997},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":"Mutation Assay Syngenta ","textAfter":", 1555901 GLP","comments":null,"startOffset":123,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b133070c5d903c3f31c257e4dc4ea72d","type":"CBI_address","value":"BASF Ltd., Ludwigshafen, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":297.45},"width":115.938965,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":287.01},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":"study in rats ","textAfter":" Bioassay -","comments":null,"startOffset":105,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a446c11344d7889c6a34080a43b0335f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.95},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":224,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f19b6ddbe5b556ebe2e25cede3ec9aba","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":203.70001},"width":43.43499,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":193.38},"width":9.610001,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e3379c1c8eb00663c3a6e158689dea0","type":"CBI_author","value":"Cords S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":328.41},"width":32.031998,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df6e561e5b0432c2925115c3fcedee53","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":207,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3d471ff13f13fc4e5f69be2ca56a487","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":89.343994},"width":51.967003,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":79.0},"width":8.290001,"height":10.0905,"page":636}],"sectionNumber":6332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"453e701aa4b9af71d434c962c78c0430","type":"CBI_author","value":"Kaspers U. Strauss V. Graters S. Fabian E. van Ravenzwaay B.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":546.83},"width":53.883995,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":536.39},"width":54.090996,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":526.07},"width":53.982994,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":515.75},"width":53.937996,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":505.43},"width":46.98301,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":495.11},"width":9.25,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":75,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b21f8597af30435b29ccccdb34b2e72","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":650.78},"width":23.391968,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":363,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5844a584255b3d9114fe462df972f5cc","type":"CBI_author","value":"Schneider S., Fabian E., Mellert W.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":442.79},"width":54.073006,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":432.47},"width":54.090996,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":422.15},"width":40.42,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aaafb6c782e7c4d00bd10b625150d83e","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":115.98401,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":599.06},"width":73.99301,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"Bracknell, United Kingdom ","textAfter":", C57852 GLP","comments":null,"startOffset":151,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ad027cdb3a7e52d48f0adb8af2ed8f0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":682.34},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6326,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":131,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d0035a38b243ba4e421be8c961545dc3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.62},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":"Reverse Mutation Assay ","textAfter":" Harlan Cytotest","comments":null,"startOffset":114,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c7f59d4b69549a6e9f93bde097f1385","type":"CBI_author","value":"Sommer E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":661.22},"width":41.364998,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f92b94d03f95a242b596b52dde8fdf41","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.947,"y":515.75},"width":23.391998,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"the diet Syngenta, ","textAfter":" BASF SE,","comments":null,"startOffset":175,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80348fd324409a3acd79020ebb875c67","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":116.170105,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":619.82},"width":101.26901,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"the Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":98,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"336d24f2ba9ce998d6d53da8d8572340","type":"CBI_address","value":"Syngenta Crop Protection AG, Basel, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":115.96295,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":391.05},"width":68.33801,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"Oral administration (gavage) ","textAfter":" BASF, 2009/1072507","comments":null,"startOffset":167,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d13616b8f1fd7e456a72d048682b17d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":224.94},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":230,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9c8f7661bb8f7db1c2afd2286e1673c","type":"CBI_address","value":"Bioassay - Biologische Analytik GmbH, Heidelberg, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.69},"width":116.12201,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":266.37},"width":115.87607,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":256.05},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":"Ltd., Ludwigshafen, Germany ","textAfter":", 10A0432/099058 GLP","comments":null,"startOffset":138,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8be16aa193560d624a4ae4f62b311110","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":536.39},"width":23.391968,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":380,"endOffset":384,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9f44b130e1e4da92db8c00669237eec","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":754.82},"width":116.170105,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":744.5},"width":101.26901,"height":10.0905,"page":636}],"sectionNumber":6326,"textBefore":null,"textAfter":" RCC Cytotest","comments":null,"startOffset":0,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"219f05b82b24580719be0e3ccfb83bef","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"in the diet ","textAfter":", BASF BASF","comments":null,"startOffset":165,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b5d9286705429965a3a402223552e21","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.08304,"y":546.83},"width":30.033966,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":68,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"480aa0b97533cc38e92e82d1ca328f48","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":681.86},"width":38.88999,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e59ee838368d2a5aa5cac3e95934c13","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":99.77997},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6340,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":213,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62de3a8de330d1cd8846549b3c62480a","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":50.43701,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"674438ef134cc45f1c202e8de60bbc5d","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":557.15},"width":30.925003,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0165f069d18ed32e273f1616a0a468c6","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6339,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":148,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c69635ea08e80c6149bf48f769d550a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb707c45e01bc1cf9d542a6dc9231779","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":703.1},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6334,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":84,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35c6666372b6ff0823dc9971943c199d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":578.39},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":225,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bac4854ce28d934266ecee68052a0268","type":"CBI_author","value":"Sprague","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":68.20001},"width":30.528992,"height":10.0905,"page":637}],"sectionNumber":6341,"textBefore":"of 2,4,6-Trichlorophenol in ","textAfter":"-Dawley Rats Journal","comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d6d3864f908ee0a7e5d4a47371d83143"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94fd77e1741bd9fa46a59bd3bc6c7944","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":754.82},"width":115.85806,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":744.5},"width":116.010956,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":734.06},"width":34.525024,"height":10.0905,"page":637}],"sectionNumber":6334,"textBefore":null,"textAfter":", 1555902 GLP","comments":null,"startOffset":0,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74ad9c461420c76ffb47a3165322ff4c","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":115.85806,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":619.82},"width":116.010956,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":609.38},"width":34.525024,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":"L5178Y Cells Syngenta ","textAfter":", 1555903 GLP","comments":null,"startOffset":141,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f6c93bfef685a3219100c1d4a2c417e","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":411.69},"width":116.00198,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":401.37},"width":113.87799,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":"in Rats Syngenta ","textAfter":", 35015 GLP","comments":null,"startOffset":96,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56d1a396007cd01e6a72987bbd1f7beb","type":"CBI_author","value":"Bercz J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":88.86401},"width":29.898994,"height":10.0905,"page":637}],"sectionNumber":6341,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["d6d3864f908ee0a7e5d4a47371d83143"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39d15041d016fbd6e21cc1df93386f3f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":185,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd21df6d0c4ec2f4e728a69690698d86","type":"PII","value":"323-327","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.21902,"y":307.76996},"width":31.041962,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":"rats Chemosphere 10:","textAfter":", Not GLP","comments":null,"startOffset":106,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787333Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51c9b761e3d307039739cd5d4c53aa3e","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":115.85806,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":505.43},"width":116.010956,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":495.11},"width":34.525024,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"the Rat Syngenta ","textAfter":", 1602600 GLP","comments":null,"startOffset":101,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a96f22d55621a0e868b1c40515cd5c3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":640.46},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":"Lymphoma L5178Y Cells ","textAfter":" Harlan Cytotest","comments":null,"startOffset":132,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"083aa2d7442e67c92a52e12d062b9e42","type":"CBI_author","value":"Bahig M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":338.85},"width":35.019997,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["62de3a8de330d1cd8846549b3c62480a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17fd52620dd85fdc910c26e4d49ca5b0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":"Study in Rats ","textAfter":" Charles River","comments":null,"startOffset":87,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b3a9c346376feef8c2cc1bcc1c2d696","type":"PII","value":"243-248","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.69305,"y":130.73999},"width":31.047943,"height":10.0905,"page":637}],"sectionNumber":6340,"textBefore":"Clinica Bohemoslovaca, 17: ","textAfter":", Not GLP","comments":null,"startOffset":186,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787334Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"93fe5436eaa2331cf837265e7b2b0fd7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.69},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":133,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["62de3a8de330d1cd8846549b3c62480a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"887627df9b4a1d46aed83b25bb98f433","type":"CBI_author","value":"Dymarkowska K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":442.79},"width":53.32598,"height":10.0905,"page":637},{"topLeft":{"x":82.704,"y":432.47},"width":9.730003,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"894f231421dcfada192c754dc43620b4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"of the Rat ","textAfter":" Harlan Cytotest","comments":null,"startOffset":92,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c69635ea08e80c6149bf48f769d550a6","type":"published_information","value":"Archives of Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":234.77997},"width":89.19998,"height":10.0905,"page":637}],"sectionNumber":6339,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3828b60fe373720c2728326003e456f5","type":"CBI_author","value":"Balikova M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":182.58002},"width":45.927986,"height":10.0905,"page":637}],"sectionNumber":6340,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be38e69bb60ec3c486f932fed2b58021","type":"CBI_author","value":"Pekari K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":265.89},"width":35.04699,"height":10.0905,"page":637}],"sectionNumber":6339,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["c69635ea08e80c6149bf48f769d550a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29b7ee37c71816272ea8a405c96a0a7c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.97},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":175,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6d3864f908ee0a7e5d4a47371d83143","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":57.76001},"width":46.558,"height":10.0905,"page":637}],"sectionNumber":6341,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d3d249175786ccac9b3bd145972b71c","type":"PII","value":"871-877","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":219.704,"y":245.10004},"width":31.117004,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":"Gakkaishi, (1996) 19:","textAfter":", Not GLP","comments":null,"startOffset":154,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ce96bbc160678668d37cea3c78fbe49","type":"CBI_author","value":"Ono Y.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":296.85004},"width":27.604004,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3ab4f20291dded392f51c54a2fa9a02","type":"PII","value":"565-571","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.68103,"y":432.47},"width":31.059998,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":"vol. 18, No.5. ","textAfter":", Not GLP","comments":null,"startOffset":226,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c56ed4e224e0500d555b8a1ca5fa5bb","type":"PII","value":"143-156","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":338.85},"width":31.089996,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":"Environmental Chemistry 14:","textAfter":", Not GLP","comments":null,"startOffset":161,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b72e968a616ea3feaecf8b56d31d6b40","type":"CBI_author","value":"Strobel K. Grummt T.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":390.57},"width":54.11799,"height":10.0905,"page":638},{"topLeft":{"x":82.704,"y":380.25},"width":41.392,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["RULE"],"reference":["bb7798f8ecd2eff4b191b13bdb94af99"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"882fbeba19d54740b6474f88f0d0b8c1","type":"published_information","value":"Journal of Toxicology and","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":216.36504,"y":567.47},"width":81.622025,"height":10.0905,"page":638},{"topLeft":{"x":181.94,"y":557.15},"width":14.014008,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":173,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"403f21d284220d78f780aab220c4233c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.099976},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6349,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":205,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac07db323758988c0cdc36a1d188e77d","type":"published_information","value":"Bulletin","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":453.11},"width":30.069992,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":null,"textAfter":null,"comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f045a27da383b95b774837892a2077c","type":"CBI_author","value":"Ozaki A, et al.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":203.22003},"width":53.109993,"height":10.0905,"page":638}],"sectionNumber":6349,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77976ca6b8a1ebbc8fb6f8c6c92e84ed","type":"CBI_author","value":"Fahrig R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":99.17999},"width":35.02899,"height":10.0905,"page":638}],"sectionNumber":6350,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb7798f8ecd2eff4b191b13bdb94af99","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":359.49},"width":50.87799,"height":10.0905,"page":638},{"topLeft":{"x":283.91,"y":359.49},"width":14.013977,"height":10.0905,"page":638},{"topLeft":{"x":181.94,"y":349.17},"width":116.074066,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":null,"textAfter":null,"comments":null,"startOffset":116,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7bcd2413ef9e48241400eb514397896","type":"CBI_author","value":"Onodera S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":629.66},"width":41.5,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["882fbeba19d54740b6474f88f0d0b8c1","d06dfe677a1e55de154748faf6a43439"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6bdb917505553169aaca1e8a5da1f125","type":"PII","value":"(1996) 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.94,"y":245.10004},"width":36.30699,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":"Mizu Kankyo Gakkaishi, ","textAfter":":871-877, Not GLP","comments":null,"startOffset":144,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ac9b1ce4ffe8e599be8d99cf09e32a0","type":"CBI_author","value":"Haworth S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":702.62},"width":42.085,"height":10.0905,"page":638}],"sectionNumber":6344,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["0bc249ea05fc0f637e277442c9752f1f"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0e8ecc653a40fec5e9afa95c2dd971a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":214.02002},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":181,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f207bbc447829ccc5f08e8c1990d708c","type":"CBI_author","value":"Ransanen L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":504.95},"width":45.94599,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["ac07db323758988c0cdc36a1d188e77d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b85b8520486b8db80d57eae97021946","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":188,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["bb7798f8ecd2eff4b191b13bdb94af99"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ae427ad86cedc4fadd7094ccf2d061e","type":"PII","value":"497-506","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.94,"y":744.5},"width":31.080994,"height":10.0905,"page":638}],"sectionNumber":6343,"textBefore":"of Toxicology, 9(5): ","textAfter":", Not GLP","comments":null,"startOffset":29,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d4226a2c8cff3e95d6b5d289fbdf599","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ac07db323758988c0cdc36a1d188e77d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64109600872881aaea59db7fc43b7f9c","type":"PII","value":"289-299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":546.83},"width":31.089996,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":"Environmental Health 44:","textAfter":", Not GLP","comments":null,"startOffset":223,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5215e6a8261eddc9130a718f3f0136f7","type":"PII","value":"1323-1337","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.88899,"y":141.18},"width":40.12599,"height":10.0905,"page":638}],"sectionNumber":6349,"textBefore":"Chemical Toxicology; 42: ","textAfter":", Not GLP","comments":null,"startOffset":176,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f82847a0a91dd18c1f82893e71d13a8c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":640.46},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6344,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":139,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["0bc249ea05fc0f637e277442c9752f1f"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2ca6316cad19f4a99a3fd9d77be47c3","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":250,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["882fbeba19d54740b6474f88f0d0b8c1","d06dfe677a1e55de154748faf6a43439"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"336a3ce1b81c714aa013936a91756d1c","type":"PII","value":"325-338","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.23798,"y":57.76001},"width":31.063019,"height":10.0905,"page":638}],"sectionNumber":6350,"textBefore":"Vol. 12, pp ","textAfter":",","comments":null,"startOffset":136,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0bc249ea05fc0f637e277442c9752f1f","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":251.501,"y":681.86},"width":46.47702,"height":10.0905,"page":638}],"sectionNumber":6344,"textBefore":null,"textAfter":null,"comments":null,"startOffset":100,"endOffset":111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1463f68fdb8c5cb7727423f00da1944a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6343,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":56,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d06dfe677a1e55de154748faf6a43439","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":207.23901,"y":557.15},"width":90.64899,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":199,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1297b9cd90b6a6770a32c3fd5fa7eeeb","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":515.27},"width":46.477036,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f00a171d8e4e8fb197263d42b9c6eb6","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":161.82},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":201,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["680e5a8a82a744357320ca12b9221303"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"731db88620d9156b8c7c5f77db5ed388","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6356,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":190,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["743d35da49044876d678f75a880ab379"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee166b97d949ecdef8ef92e988218ea6","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":119.94},"width":75.18701,"height":10.0905,"page":639}],"sectionNumber":6359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":113,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9e439374f3856c31a3978e1b46bf411","type":"CBI_author","value":"Armstrong M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":151.02002},"width":52.524986,"height":10.0905,"page":639}],"sectionNumber":6359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["ee166b97d949ecdef8ef92e988218ea6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cbf635890d9b02ec246083de29a97048","type":"PII","value":"85-154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.24304,"y":192.89996},"width":26.577942,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":"Molecular Mutagenesis l2:","textAfter":", Not GLP","comments":null,"startOffset":175,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787337Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"031df767f81c2d77ab6cb18a28a0de62","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":296.85004},"width":75.18701,"height":10.0905,"page":639}],"sectionNumber":6357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":110,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2fbe08453a5efee8445499fbee4a283","type":"CBI_author","value":"Jansson K. Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":327.93},"width":29.008003,"height":10.0905,"page":639},{"topLeft":{"x":126.95701,"y":327.93},"width":9.747993,"height":10.0905,"page":639},{"topLeft":{"x":82.704,"y":317.61},"width":40.060005,"height":10.0905,"page":639}],"sectionNumber":6357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["RULE"],"reference":["031df767f81c2d77ab6cb18a28a0de62"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b24486f616ff3a824b396d48eee32be","type":"CBI_author","value":"McGregor D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":244.62},"width":49.437996,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["680e5a8a82a744357320ca12b9221303"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78aa848c9ada8f8f6f6542af593f95e7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":78.52002},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6359,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":163,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ee166b97d949ecdef8ef92e988218ea6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6233083aa8d20a38272b9eebd9c6432d","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":185,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1297b9cd90b6a6770a32c3fd5fa7eeeb","3178091b5cd0f7fc076abe730a8a0ad6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a3f5dc11884db7b1458a19c2f776f31","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6353,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":199,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["829c8790708949000dd105f77c6e4667"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c557828dfc2fc51279a6d93a9a807961","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":251.53401,"y":567.47},"width":46.477005,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":168,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61daa16b860470af841840e1f3c30fb8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6352,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":18,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a94da966875aa6d8569b1ac08a73844","type":"PII","value":"325-348","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.996,"y":557.15},"width":30.985,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":"Environmental Mutagenesis 7:","textAfter":", Not GLP","comments":null,"startOffset":182,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787337Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3178091b5cd0f7fc076abe730a8a0ad6","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":463.55},"width":50.43701,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":140,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d10ac5070ba97843a5b1ed96ab5f67ac","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":220.42401,"y":619.22},"width":46.47702,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ccae697b93819b126e7a74cfcdb8b92e","type":"CBI_author","value":"Galloway S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":67.72003},"width":45.32499,"height":10.0905,"page":639}],"sectionNumber":6360,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"851df7fc04c81abde0f11f874c47aa19","type":"CBI_author","value":"Hattula M. Knuutinen J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":515.27},"width":53.974007,"height":10.0905,"page":639},{"topLeft":{"x":82.704,"y":504.95},"width":47.034996,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["RULE"],"reference":["1297b9cd90b6a6770a32c3fd5fa7eeeb","3178091b5cd0f7fc076abe730a8a0ad6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f3805766b4ef6bffd7f5d76022ef83cc","type":"CBI_author","value":"Jansson K. Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":421.55},"width":29.008003,"height":10.0905,"page":639},{"topLeft":{"x":126.95701,"y":421.55},"width":9.747993,"height":10.0905,"page":639},{"topLeft":{"x":82.704,"y":411.21},"width":40.060005,"height":10.0905,"page":639}],"sectionNumber":6356,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["RULE"],"reference":["743d35da49044876d678f75a880ab379"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"743d35da49044876d678f75a880ab379","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":380.25},"width":75.18701,"height":10.0905,"page":639}],"sectionNumber":6356,"textBefore":null,"textAfter":null,"comments":null,"startOffset":140,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f23bdc9e8288aafb77c3f8d0b6a5d11","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6357,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":160,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["031df767f81c2d77ab6cb18a28a0de62"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb8a35ed13a7ffb0c26f6ce74293db35","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":209,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d10ac5070ba97843a5b1ed96ab5f67ac","c557828dfc2fc51279a6d93a9a807961"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9414161afb1b11bf0cf9ea5dd85327a7","type":"PII","value":"1617-1625","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.39702,"y":463.55},"width":40.137955,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":"Chloroguaiacols Chemosphere 14: ","textAfter":", Not GLP","comments":null,"startOffset":156,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787338Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"829c8790708949000dd105f77c6e4667","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":671.54},"width":46.477036,"height":10.0905,"page":639}],"sectionNumber":6353,"textBefore":null,"textAfter":null,"comments":null,"startOffset":147,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd8a94836ffd5c452a5a81d6f8a77dbe","type":"CBI_author","value":"Valencia R.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":619.22},"width":43.543,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["d10ac5070ba97843a5b1ed96ab5f67ac","c557828dfc2fc51279a6d93a9a807961"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d153835b9b9820ca69ab6690e1804640","type":"CBI_author","value":"Russell L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":723.26},"width":37.413994,"height":10.0905,"page":639}],"sectionNumber":6353,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["829c8790708949000dd105f77c6e4667"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"680e5a8a82a744357320ca12b9221303","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":192.89996},"width":46.477036,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":null,"textAfter":null,"comments":null,"startOffset":160,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d9bfc9d39889ca9a36050d58ab32bfd","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":283,"endOffset":291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["93a2ca86c62bcd545f076fa93c26549a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92af713758d287ebe3d59cd3082d468e","type":"CBI_author","value":"Matsuoka A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":681.86},"width":47.36799,"height":10.0905,"page":640}],"sectionNumber":6363,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db0871df8c0ddec0a54e64ec5424c1fe","type":"PII","value":"629-799","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.98099,"y":203.70001},"width":31.000015,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":"2000 Nov; 30(6):","textAfter":", Not GLP","comments":null,"startOffset":253,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787338Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b28b3cf6b2828d5ec890fb56839f6ca8","type":"CBI_author","value":"Juhl U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":588.26},"width":27.118004,"height":10.0905,"page":640}],"sectionNumber":6364,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6552217ea7dd1519b16a9bcf08048414","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.66},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6362,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":131,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["3ff1608acf23a7e965991a11e07a5a55"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f59f00b75b2d9dd4bb538bf23dbf3aea","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":599.06},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6363,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":198,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50b2aa7f36d80ffc487102b2ac1ffbeb","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":130.73999},"width":115.971985,"height":10.0905,"page":640},{"topLeft":{"x":181.94,"y":120.41998},"width":38.476013,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":null,"textAfter":null,"comments":null,"startOffset":101,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ff1608acf23a7e965991a11e07a5a55","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":46.477036,"height":10.0905,"page":640}],"sectionNumber":6362,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2cf7de497fd524d9fc17e9fb8df9e2de","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.62},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":280,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6766cceaaf86361cd26f8da96a4a94f4"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25bfd17329118208486a7316cc18a985","type":"CBI_author","value":"Ames","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":239.612,"y":369.81},"width":21.781006,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":"putative nongenotoxic (","textAfter":"-negative) mouse hepatocarcinogens","comments":null,"startOffset":194,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["93a2ca86c62bcd545f076fa93c26549a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93a2ca86c62bcd545f076fa93c26549a","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":75.18701,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":null,"textAfter":null,"comments":null,"startOffset":233,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6766cceaaf86361cd26f8da96a4a94f4","type":"published_information","value":"Crit Rev Toxicol","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":214.02002},"width":67.53699,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":null,"textAfter":null,"comments":null,"startOffset":219,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90e5594501d048fdcd0e4536dd51e1d1","type":"PII","value":"603-608","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.11403,"y":120.41998},"width":31.146988,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":"and Chemistry 28:","textAfter":", Not GLP","comments":null,"startOffset":143,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787339Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3f332bd2bd1b9d15dad00565396169c","type":"PII","value":"165-172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":463.55},"width":31.089996,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":"Environmental Chemistry 16:","textAfter":", Not GLP","comments":null,"startOffset":148,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787339Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f52999ba0f06d4867c6a1ecf4ff7bb4","type":"CBI_author","value":"National Cancer Institute","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.52002},"width":32.041,"height":10.0905,"page":640},{"topLeft":{"x":82.704,"y":68.20001},"width":26.433998,"height":10.0905,"page":640},{"topLeft":{"x":82.704,"y":57.76001},"width":30.637001,"height":10.0905,"page":640}],"sectionNumber":6369,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1a9367816794515361474c6791e8238","type":"CBI_author","value":"Miyagawa M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":421.55},"width":51.426994,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618941Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["93a2ca86c62bcd545f076fa93c26549a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f1f2dcf6a7dc3bf79bee56ce90d8e93","type":"CBI_author","value":"Sasaki Y.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":296.85004},"width":35.406998,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618941Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["6766cceaaf86361cd26f8da96a4a94f4"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d12ede949092208c765af29c0f7dd49","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":34.528,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":175,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618941Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["3536b1317eff0060e57eb54d079f6e8e"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72770b469596e5f5bd2ab464195cb039","type":"CBI_author","value":"Kitchen K., Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":504.95},"width":54.1,"height":10.0905,"page":640},{"topLeft":{"x":82.704,"y":494.51},"width":33.489998,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["RULE"],"reference":["3536b1317eff0060e57eb54d079f6e8e"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3536b1317eff0060e57eb54d079f6e8e","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":484.19},"width":50.87799,"height":10.0905,"page":640},{"topLeft":{"x":283.91,"y":484.19},"width":14.013977,"height":10.0905,"page":640},{"topLeft":{"x":181.94,"y":473.87},"width":116.074066,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":null,"textAfter":null,"comments":null,"startOffset":103,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c53544d08d8b64f2e9c82dd8d775080","type":"PII","value":"159-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":630.14},"width":31.089996,"height":10.0905,"page":640}],"sectionNumber":6363,"textBefore":"Mutagen Res., 20:","textAfter":", Not GLP","comments":null,"startOffset":171,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787339Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d38d570e71e51ea6bd3077cfd88ae954","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":89.343994},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":170,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["50b2aa7f36d80ffc487102b2ac1ffbeb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4602cc9a0f1149ecbe04d573a966bcd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6364,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":173,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e0741a348bd7c6139c52cab101a9bc3","type":"CBI_author","value":"Yin D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":161.82},"width":25.57,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["50b2aa7f36d80ffc487102b2ac1ffbeb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53405ffb7b02e4c66b80344e3bf2854c","type":"CBI_author","value":"Gotz R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":265.40997},"width":28.918,"height":10.0905,"page":641}],"sectionNumber":6377,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98b5096989ef28a3065cc9bd47401a07","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":703.1},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6371,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":83,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c87e65bc274dadad577b320655c150f","type":"PII","value":"2389-2394","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.72905,"y":119.94},"width":40.008957,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":"test Carcinogenesis l3:","textAfter":", Not GLP","comments":null,"startOffset":149,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e1b83ab9b02012b70b42523390b4186","type":"CBI_author","value":"Carlson G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":338.25},"width":39.951996,"height":10.0905,"page":641}],"sectionNumber":6376,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93bfcc60f18e452a5f95eb4170a1a916","type":"PII","value":"521-525","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.14503,"y":661.22},"width":31.15596,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":"trichlorophenol Chemosphere 89, ","textAfter":", Not GLP","comments":null,"startOffset":111,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca5f5148fe7e04916715c35ee02c9cb0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6375,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":173,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4cee93b563cab0723869f836be605cf","type":"PII","value":"145-151","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.15701,"y":307.28998},"width":31.143982,"height":10.0905,"page":641}],"sectionNumber":6376,"textBefore":"rat Toxicology l1:","textAfter":", Not GLP","comments":null,"startOffset":108,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1a08affb6239a3595b562a0b96ad485d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6374,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":217,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12b47540cda10e30b880372e8112ad2b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.21002},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6376,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":135,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04795ca8cdfbbdbb99d89024e2730d7a","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":138,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["102aaa044aa3ba44fe49970f9afaabbb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50461efa2f1f097f46b177e6fea2a424","type":"CBI_author","value":"Blackburn K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":619.22},"width":49.555,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8b885b6b743b674ad6cdf574cc294933"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d60e6588eeaf44aec9ea4bd8b9856d45","type":"CBI_author","value":"Arrhenius E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":431.99},"width":47.017006,"height":10.0905,"page":641}],"sectionNumber":6375,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e69e941587aab39e86b403355196714","type":"CBI_author","value":"Exon J. Koller L.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":525.59},"width":54.019005,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":515.27},"width":8.650002,"height":10.0905,"page":641}],"sectionNumber":6374,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e7ef28cd7238fa478d47aefbf246347","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":88.86401},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":178,"endOffset":186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["21a8c8f545082496c83f73bd27f4bced"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80140056d1228aeef6c05555f8c7d7c9","type":"PII","value":"233-239","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":234.67102,"y":567.47},"width":31.149963,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":"Applied Toxicology 6, ","textAfter":", Not GLP","comments":null,"startOffset":163,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42c920c4b116fb6ad3c003a01dae9fe0","type":"CBI_author","value":"Huff J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":25.930008,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["102aaa044aa3ba44fe49970f9afaabbb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ca41d83760f966fd05290018bf36bbd","type":"PII","value":"147-155","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.44101,"y":203.22003},"width":31.059998,"height":10.0905,"page":641}],"sectionNumber":6377,"textBefore":"Arch. Toxicol. 44:","textAfter":", Not GLP","comments":null,"startOffset":183,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"21a8c8f545082496c83f73bd27f4bced","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":119.94},"width":55.963043,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":null,"textAfter":null,"comments":null,"startOffset":131,"endOffset":145,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44385b69cf96e081b1c3c52c391014f6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.14001},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6377,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":210,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d743692ec065b8695dd8e1098893b5c4","type":"CBI_author","value":"Kitchen K., Brown J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.03998},"width":54.1,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":67.72003},"width":33.489998,"height":10.0905,"page":641}],"sectionNumber":6379,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"805a91456a95b1f1d85b13c8766adcec","type":"CBI_author","value":"Long","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.18},"width":20.007996,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":null,"textAfter":"-term toxicology and","comments":null,"startOffset":28,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["102aaa044aa3ba44fe49970f9afaabbb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"102aaa044aa3ba44fe49970f9afaabbb","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":50.43701,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":95,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b1b782ea2600b2d0f86753281421534","type":"CBI_author","value":"Heil J. Reifferscheid G.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":161.34003},"width":16.444,"height":10.0905,"page":641},{"topLeft":{"x":129.963,"y":161.34003},"width":6.751007,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":151.02002},"width":49.392998,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":140.58002},"width":9.610001,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["RULE"],"reference":["21a8c8f545082496c83f73bd27f4bced"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6519ecd766374d29987896fcccbc1132","type":"PII","value":"307-330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.71103,"y":473.87},"width":31.029968,"height":10.0905,"page":641}],"sectionNumber":6374,"textBefore":"Chapter 25. pp. ","textAfter":", Not GLP","comments":null,"startOffset":190,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b885b6b743b674ad6cdf574cc294933","type":"published_information","value":"Reproductive Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":248.46803,"y":619.22},"width":49.483017,"height":10.0905,"page":641},{"topLeft":{"x":181.94,"y":608.9},"width":42.552994,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":null,"textAfter":null,"comments":null,"startOffset":51,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d31b219c5a0f9cd6c498551cb2fff70","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":190,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8b885b6b743b674ad6cdf574cc294933"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3157b1110fe4a7ada15985d0188ce251","type":"PII","value":"35-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":380.25},"width":22.098999,"height":10.0905,"page":641}],"sectionNumber":6375,"textBefore":"Biol. Interactions. 18:","textAfter":", Not GLP","comments":null,"startOffset":148,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d800037247f8b34913f584fdba082e5","type":"PII","value":"339-347","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.987,"y":463.55},"width":30.994003,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":"Toxicological Sciences 124:","textAfter":", Not GLP","comments":null,"startOffset":192,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"197ae7157f5e94a6d869a977ddc5b4d7","type":"CBI_author","value":"Henschler R. Appel K. Heyworth C. Glatt H.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":244.62},"width":53.992012,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":234.29999},"width":53.892998,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":223.97998},"width":53.974007,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":213.53998},"width":29.899002,"height":10.0905,"page":642}],"sectionNumber":6387,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"576c9e8e56dd051de85646180b284e4f","type":"PII","value":"11-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.98099,"y":650.78},"width":22.009018,"height":10.0905,"page":642}],"sectionNumber":6382,"textBefore":"Toxicological Pathology 10(2):","textAfter":", Not GLP","comments":null,"startOffset":188,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787342Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d3b3900bbdb0f26a00406dbc0dc100b6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":88.86401},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6388,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":143,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c834ca044edb3d7eae3e23aaeaf0ce9","type":"CBI_author","value":"Jia R-W. Liao T-T. Shi Y-L. Wang L. Xia","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.03998},"width":53.85299,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":67.72003},"width":53.885994,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":57.27997},"width":54.001,"height":10.0905,"page":642}],"sectionNumber":6389,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5476fe439801eb49f953a28e1277e146","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":151.5},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6387,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":265,"endOffset":273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d25e8b6371173946a13f422927fc05ed","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6383,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":143,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"474202e1fcfa6b2170147affc69a84e1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":619.82},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6382,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":213,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e901df8e4016ec74432bf568e38d73c0","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":173,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5158b4d1b874a241722fdbc0eab559d0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6459ba705f0e9b7176d313b9999d7869","type":"PII","value":"19-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":567.47},"width":22.098999,"height":10.0905,"page":642}],"sectionNumber":6383,"textBefore":"Appl. Pharmacol. 82:","textAfter":", Not GLP","comments":null,"startOffset":118,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787342Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9223423d82f7edbdec03211239e3e98","type":"PII","value":"31-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.124,"y":182.58002},"width":22.186005,"height":10.0905,"page":642}],"sectionNumber":6387,"textBefore":"In Vitro 15:","textAfter":", Not GLP","comments":null,"startOffset":240,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7447bddb6f197f50316eaab398f9b267","type":"CBI_author","value":"Jansson K. Jansson V.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":140.58002},"width":29.008003,"height":10.0905,"page":642},{"topLeft":{"x":126.95701,"y":140.58002},"width":9.747993,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":130.26001},"width":40.060005,"height":10.0905,"page":642}],"sectionNumber":6388,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a439bea55b733aa92ab5a97c0403972b","type":"PII","value":"289-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.42198,"y":119.94},"width":26.608017,"height":10.0905,"page":642}],"sectionNumber":6388,"textBefore":"hamster cells Toxicol.Lett.69:","textAfter":", Not GLP","comments":null,"startOffset":117,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49c3cabbd2c34e90946cca34e9796ae8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6385,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":217,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11dd4e8aee1c76e84daa3f7b3c8d7550","type":"PII","value":"31-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.19101,"y":754.82},"width":22.03897,"height":10.0905,"page":642}],"sectionNumber":6381,"textBefore":"Toxicology 88:","textAfter":", Not GLP","comments":null,"startOffset":14,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee90daabfe2340d6cd0916335b0f1e52","type":"CBI_author","value":"Stoner G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":35.527,"height":10.0905,"page":642}],"sectionNumber":6383,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"784070e846e79f129b0ffdc1d6a10aea","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d73d8b699e3e078d95dc1ad6f9a43116"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"321a2cf445f709531ccd70ab74e0aaab","type":"CBI_author","value":"Cascorbi I. Ahlers J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":421.55},"width":53.991997,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":411.21},"width":32.895996,"height":10.0905,"page":642}],"sectionNumber":6385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ac6c95f3c13d05882a57768152ff98d7","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.97804,"y":57.27997},"width":19.044998,"height":10.0905,"page":642}],"sectionNumber":6389,"textBefore":"Component Analysis in ","textAfter":" Cells Exposed","comments":null,"startOffset":128,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1cbd81936c43060929bf9f5b72ef1e8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6381,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":39,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"398cac3c004ff59e7cc4ae1e67dbe736","type":"PII","value":"178-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37604,"y":286.52997},"width":26.613953,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":"Laboratory Animals 14:","textAfter":", Not GLP","comments":null,"startOffset":147,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5158b4d1b874a241722fdbc0eab559d0","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":296.85004},"width":24.993988,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":null,"textAfter":null,"comments":null,"startOffset":103,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3119cb475be6c6842d783b70a9d8b43a","type":"CBI_author","value":"Ekwall B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":327.93},"width":36.954994,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["5158b4d1b874a241722fdbc0eab559d0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e27a38f35df87d7a4e7a95dae4e92d2","type":"CBI_author","value":"Butt C. Wang D. Stapleton H.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":525.59},"width":53.928993,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":515.27},"width":54.073006,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":504.95},"width":9.730003,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["RULE"],"reference":["d73d8b699e3e078d95dc1ad6f9a43116"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"000ea90b43727fccb874312667fd9538","type":"PII","value":"197-210","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.19101,"y":369.81},"width":31.029968,"height":10.0905,"page":642}],"sectionNumber":6385,"textBefore":"cells Toxicology 58:","textAfter":", Not GLP","comments":null,"startOffset":190,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787344Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d73d8b699e3e078d95dc1ad6f9a43116","type":"published_information","value":"Toxicological Sciences","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":473.87},"width":50.87799,"height":10.0905,"page":642},{"topLeft":{"x":265.42398,"y":473.87},"width":32.446014,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":165,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e11df0d6500283a31326d743cc1c4e9","type":"CBI_author","value":"Pereira M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":712.94},"width":39.105995,"height":10.0905,"page":642}],"sectionNumber":6382,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e67db1c41f1e0cf0a92e4c50477518a2","type":"CBI_author","value":"Utsumi H. Hakoda M. Kiyoshige K. Manabe H. Mitade C. Murayama J. Han S. Hamada A.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":161.34003},"width":53.883995,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":151.02002},"width":53.97399,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":140.58002},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":130.26001},"width":53.991997,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":119.94},"width":53.974007,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":109.619995},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":99.17999},"width":15.940002,"height":10.0905,"page":643},{"topLeft":{"x":128.406,"y":99.17999},"width":8.280991,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":88.86401},"width":41.868996,"height":10.0905,"page":643}],"sectionNumber":6398,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b4d240b14f63799c2b45a1f04592baf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6395,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":223,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98fbe4db3e49686c130cab1c9c0045bd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6393,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":228,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2e02d98bf83dbbbbea77186118df1524","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":232,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9a9b618d2cab8ffc3db36c9f23ef3db3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdaa1ef62ed0e303ac0ff2800fd0d9cc","type":"CBI_author","value":"Judis J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":27.603996,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["21effbd1ddf7f6ccf16df4b3b07b7311"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"49b9d7b561acb7125598ece809352c5d","type":"PII","value":"1145-47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":227.25502,"y":650.78},"width":31.015,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":"Pharmaceutical Sciences 71:","textAfter":", Not GLP","comments":null,"startOffset":130,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787344Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b4516d706bb7f15b368781e8dd10ed8","type":"CBI_author","value":"van Delft J. Van Agen E. van Breda S.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.03998},"width":53.88401,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":67.72003},"width":53.946983,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":57.27997},"width":53.97399,"height":10.0905,"page":643}],"sectionNumber":6399,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"350022df6ce891a6f431375beb682590","type":"PII","value":"267-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.905,"y":473.87},"width":31.156006,"height":10.0905,"page":643}],"sectionNumber":6394,"textBefore":"Eisei Kagaku 36:","textAfter":", Not GLP","comments":null,"startOffset":192,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787344Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58a4746f1e3bb53b51df3511fac07c74","type":"PII","value":"146-53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.91402,"y":567.47},"width":26.595993,"height":10.0905,"page":643}],"sectionNumber":6393,"textBefore":"TCP Toxicology, 282:","textAfter":", Not GLP","comments":null,"startOffset":202,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bc8b604547746c61cb0fe63c128a9207","type":"PII","value":"325-332","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":119.94},"width":31.050995,"height":10.0905,"page":643}],"sectionNumber":6398,"textBefore":"and Technology 25:","textAfter":", Not GLP","comments":null,"startOffset":201,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef3840ba4cca3097c3ffbda2f30e548c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":88.86401},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6398,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":228,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a9b618d2cab8ffc3db36c9f23ef3db3","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":296.85004},"width":39.47499,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":null,"textAfter":null,"comments":null,"startOffset":175,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbff3e15b11c428c5c693ce65af793f2","type":"CBI_author","value":"Ma Y. Liu C. Lam P. Wu R. Giesy J. Hecker M. Zhang X. Zhou B.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":53.974007,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":598.58},"width":53.928993,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":588.26},"width":53.892998,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":577.79},"width":53.982994,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":567.47},"width":54.090996,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":557.15},"width":30.582993,"height":10.0905,"page":643}],"sectionNumber":6393,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"adfc98571bce2c73d7db80ece5f5d1f9","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":213.53998},"width":115.938965,"height":10.0905,"page":643},{"topLeft":{"x":181.94,"y":203.22003},"width":38.476013,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":null,"textAfter":null,"comments":null,"startOffset":135,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b1a18358fc71e4fb75eb4263766da70","type":"PII","value":"258-271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.94,"y":286.52997},"width":31.080994,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":"Health Science 47: ","textAfter":", Not GLP","comments":null,"startOffset":205,"endOffset":212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"61176c7b42da4ee30d2de91ac0600164","type":"CBI_author","value":"Murayama J. Ishiwata F. Utsumi H. Hamada A.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":525.59},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":515.27},"width":31.375008,"height":10.0905,"page":643},{"topLeft":{"x":128.28902,"y":515.27},"width":8.280991,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":504.95},"width":53.883995,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":494.51},"width":41.868996,"height":10.0905,"page":643}],"sectionNumber":6394,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ba21566878e2ce54c50f37813a70e3e","type":"CBI_author","value":"Sakazaki H. Ueno H. Umetani K. Utsumi H. Nakamuro K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":338.25},"width":53.874992,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":327.93},"width":54.010002,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":317.61},"width":54.001,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":307.28998},"width":53.883995,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":296.85004},"width":49.906,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["RULE"],"reference":["9a9b618d2cab8ffc3db36c9f23ef3db3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"60a1e8367681439aa22e49b37f077fa8","type":"CBI_author","value":"Shannon R. Boardman G. Dietrich A. Bevan D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":244.62},"width":54.090996,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":234.29999},"width":53.857002,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":223.97998},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":213.53998},"width":34.929993,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["RULE"],"reference":["adfc98571bce2c73d7db80ece5f5d1f9"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"47c79ec5f11e36d6f7e8fc62eb7b428c","type":"CBI_author","value":"Qin H. Liu J. Zhang Z. Li J. Gao G. Yang Y. Yuan X. Wu D.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":431.99},"width":54.11802,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":421.55},"width":53.98301,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":411.21},"width":53.947,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":400.89},"width":54.090996,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":390.57},"width":24.967003,"height":10.0905,"page":643}],"sectionNumber":6395,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":72,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e170bcc618a3341a388f7ffd30daeeee","type":"CBI_author","value":"J. Lu B. Xu D-S.","reason":"Author found","matchedRule":6,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":754.82},"width":54.055,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":744.5},"width":17.769997,"height":10.0905,"page":643}],"sectionNumber":6391,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6f7691d14d032cf41fb3298dc1132f9","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.14001},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":202,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["adfc98571bce2c73d7db80ece5f5d1f9"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b0cdf3cfd17dc35f8762fac8e5e11aa","type":"PII","value":"57-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.11403,"y":203.22003},"width":22.155975,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":"and Chemistry 10:","textAfter":", Not GLP","comments":null,"startOffset":177,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"87637e32315a37a92f2d368cb1fa0b53","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":619.82},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["21effbd1ddf7f6ccf16df4b3b07b7311"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac1dae21cc2c649c03599aa3953eaa04","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":703.1},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6391,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":97,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21effbd1ddf7f6ccf16df4b3b07b7311","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":47.880997,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":null,"textAfter":null,"comments":null,"startOffset":92,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"018c222f1b4087db5bcc89a348e900b8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6394,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da890c82d8d51dba59833751a7f06a17","type":"PII","value":"60-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.987,"y":380.25},"width":22.003006,"height":10.0905,"page":643}],"sectionNumber":6395,"textBefore":"Analytical Biochemistry 462:","textAfter":", Not GLP","comments":null,"startOffset":198,"endOffset":203,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787346Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cd44055325118e84a8656d4525ae9ffa","type":"CBI_address","value":"Bracknell","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":227.87604,"y":349.17},"width":35.983032,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"Hill International Research, ","textAfter":", Berks RG42","comments":null,"startOffset":140,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d6af4b58926aecd4a45d8acc9e6b35","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":68.67999},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6407,"textBefore":"to Male Rats ","textAfter":" Leatherhead Food","comments":null,"startOffset":179,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1221b33ef6d693ea209d875457d0700f","type":"CBI_address","value":"Syngenta Ltd.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":390.57},"width":51.454002,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a63684968e7880aab7e2eb2e5fb50512","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":505.43},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":212,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["7e3f7df5f66416a227265429c10a7507"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f64f30c9d0adffcd8830a46d632c3d29","type":"PII","value":"63-75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.23201,"y":640.46},"width":22.077988,"height":10.0905,"page":644}],"sectionNumber":6402,"textBefore":"Chemico-Biological Interactions 76:","textAfter":", Not GLP","comments":null,"startOffset":196,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787346Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"83ea9c1d9ac9de1f6765b6bd79cea96c","type":"CBI_author","value":"Shi Y-L. Wang L. Zhou Q.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":598.58},"width":13.086998,"height":10.0905,"page":644},{"topLeft":{"x":118.56,"y":598.58},"width":18.149994,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":588.26},"width":54.045998,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":577.79},"width":9.730003,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["RULE"],"reference":["7e3f7df5f66416a227265429c10a7507"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09303e659c0b5d4f15754854d806d553","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":245.49799,"y":442.79},"width":27.574036,"height":10.0905,"page":644},{"topLeft":{"x":289.60403,"y":442.79},"width":8.550995,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":null,"textAfter":null,"comments":null,"startOffset":189,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2487ec324771aa7e01788d08fb0319dc","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":141.18},"width":29.385994,"height":10.0905,"page":644}],"sectionNumber":6407,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e94772989ca2e926609920176af0e9","type":"CBI_author","value":"Bhandal H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":265.89},"width":42.112,"height":10.0905,"page":644}],"sectionNumber":6406,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"309e9349eae599b5fadead1bf5f038e6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6402,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":221,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f413c2f07250621164651750c72fc39","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":744.5},"width":56.014008,"height":10.0905,"page":644}],"sectionNumber":6401,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8946299f23dcec2eacace2d8bd1a6fd","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":244,"endOffset":252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09303e659c0b5d4f15754854d806d553"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd8e48a84c6303732949a57f831cfede","type":"CBI_author","value":"Van den Berg K.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":702.62},"width":54.045998,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":692.18},"width":9.730003,"height":10.0905,"page":644}],"sectionNumber":6402,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e3f7df5f66416a227265429c10a7507","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":209.04802,"y":546.83},"width":41.274994,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":null,"textAfter":null,"comments":null,"startOffset":160,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b38304ed53d4a2ff680a8edc4f90c73a","type":"CBI_author","value":"Vero","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":251.00601,"y":577.79},"width":19.044983,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":"Sensitivity in Mammalian ","textAfter":" Cells Exposed","comments":null,"startOffset":109,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["7e3f7df5f66416a227265429c10a7507"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15c2c35be6fddad7280da6d4ee5edae5","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":183.06},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6406,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":183,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"365df3c591fe1390ac669330a926500c","type":"PII","value":"532-41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":249.908,"y":432.47},"width":26.602005,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":"of Toxicology, 33(6):","textAfter":", Not GLP","comments":null,"startOffset":218,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787347Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"024943c7f489671eab2d705fe3911c42","type":"PII","value":"479-487","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.996,"y":536.39},"width":30.985,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":"of Ecotoxicity 3:","textAfter":", Not GLP","comments":null,"startOffset":185,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787347Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67f0834e014176ea4e5fee3ecd11f695","type":"CBI_address","value":"Jealott’s Hill International","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.49},"width":116.110016,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"SYN545974 and SYN545547. ","textAfter":" Research, Bracknell,","comments":null,"startOffset":101,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ef859d2c91666f39efe9fe545c130ab","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"GLP Not published. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618956Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80db664ecdb81dd352be37df4624f3c7","type":"CBI_author","value":"Zhang X. Zhang X. Niu Z. Qi Y. Huang D. Zhang Y.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":494.51},"width":54.090996,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":484.19},"width":54.045982,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":473.87},"width":54.118004,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":463.55},"width":54.001,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":453.11},"width":35.037994,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618956Z"}],"manualChanges":[],"engines":["RULE"],"reference":["09303e659c0b5d4f15754854d806d553"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ee60486c56f6611d85eaf337ad68c00","type":"CBI_author","value":"Herwijnen M. Staal Y. Kleinjans J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":754.82},"width":54.081993,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":744.5},"width":18.973,"height":10.0905,"page":644},{"topLeft":{"x":126.966,"y":744.5},"width":9.748001,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":734.06},"width":43.57,"height":10.0905,"page":644}],"sectionNumber":6401,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["RULE"],"reference":["5f413c2f07250621164651750c72fc39"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a70378b2a49c2f287a33da0832f7a49e","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6401,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":86,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5f413c2f07250621164651750c72fc39"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b89a6004586686a1c900931f65220b30","type":"CBI_address","value":"RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":42.490005,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"Research, Bracknell, Berks ","textAfter":". Laboratory Report","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad2e9b4d10e80e6bc188448902e763c1","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":234.77997},"width":34.47101,"height":10.0905,"page":644},{"topLeft":{"x":181.94,"y":224.46002},"width":116.170105,"height":10.0905,"page":644},{"topLeft":{"x":181.94,"y":214.02002},"width":103.38699,"height":10.0905,"page":644}],"sectionNumber":6406,"textBefore":"Concerning Immunotoxicity Potential ","textAfter":" Not GLP","comments":null,"startOffset":98,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a50041c7ad4018bb3ee85ae3799d3b7","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":645},{"topLeft":{"x":181.94,"y":505.43},"width":116.170105,"height":10.0905,"page":645},{"topLeft":{"x":181.94,"y":495.11},"width":103.357025,"height":10.0905,"page":645}],"sectionNumber":6411,"textBefore":"in Mammalian Species ","textAfter":" Not GLP","comments":null,"startOffset":108,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618959Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25075d03f780447b4faad5bbe44086f0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":"Activity In Vitro ","textAfter":" Leatherhead Food","comments":null,"startOffset":91,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618959Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3991cf1ff83ac81f47146ec0e1fbbd08","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":599.06},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":181,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd40cd76f29e01e1c9e67ced5ae65c43","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.31306,"y":411.69},"width":34.36302,"height":10.0905,"page":645}],"sectionNumber":6413,"textBefore":"providing access to ","textAfter":" specific know-how","comments":null,"startOffset":367,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f15118abcd68d68ea5b7ff0062bab334","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6409,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":51,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f2eaeb83f4512e589525ccc37ff4395","type":"CBI_address","value":"Surrey, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":230.98999,"y":754.82},"width":27.225983,"height":10.0905,"page":645},{"topLeft":{"x":281.58798,"y":754.82},"width":13.995972,"height":10.0905,"page":645}],"sectionNumber":6409,"textBefore":"(LFR), ","textAfter":", 5522/1/2/2014 GLP","comments":null,"startOffset":7,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c5e07d3e916e2c909581a16afce72db","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.54312,"y":422.15},"width":34.354004,"height":10.0905,"page":645}],"sectionNumber":6413,"textBefore":"information might undermine ","textAfter":"’s commercial interests","comments":null,"startOffset":312,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c8dee707c808d90e3ccac0375c5abd0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":68.423996,"y":422.15},"width":34.58799,"height":10.0905,"page":645}],"sectionNumber":6413,"textBefore":"25, 1-5 *","textAfter":" requests data","comments":null,"startOffset":211,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aad1fa0a15c26f38ef9b8a5e34dc75b4","type":"CBI_author","value":"Green R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":557.15},"width":33.472,"height":10.0905,"page":645}],"sectionNumber":6411,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b9d8a99e4fe799ed3d432f6aa3f9e9e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6411,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":193,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63f6d35ea0e84c6df855627988b48a4b","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":29.385994,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de05334ad963a9957f8d14d945b95cdb","type":"CBI_address","value":"Leatherhead Food Research (LFR), Surrey, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":650.78},"width":115.966,"height":10.0905,"page":645},{"topLeft":{"x":181.94,"y":640.46},"width":25.677979,"height":10.0905,"page":645},{"topLeft":{"x":230.98999,"y":640.46},"width":27.225983,"height":10.0905,"page":645},{"topLeft":{"x":281.58798,"y":640.46},"width":13.995972,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":"In Vitro Syngenta ","textAfter":", 5523/1/2/2014 Not","comments":null,"startOffset":100,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"192e1dc23ac55e03629ca25a72b31b8d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":193.6,"y":480.0},"width":335.4,"height":-10.0,"page":257},{"topLeft":{"x":193.6,"y":469.7},"width":101.7,"height":-10.0,"page":257}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ab459de73837b73ee6894422eef5c90a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":466.5,"y":290.0},"width":36.7,"height":-12.2,"page":260}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13abdc3fbc097cab3a4c7d4eb909d1b6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.5,"y":249.1},"width":30.8,"height":-11.0,"page":260}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65bc858d24c644df38486365b7496d71","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":186.8,"y":237.7},"width":324.7,"height":-11.0,"page":260},{"topLeft":{"x":133.8,"y":226.2},"width":128.7,"height":-11.0,"page":260}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c9721a707d323d931eee81db0a9faf7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":210.1,"y":707.0},"width":279.3,"height":-10.0,"page":262},{"topLeft":{"x":210.1,"y":696.7},"width":160.2,"height":-10.0,"page":262}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c76cd7f25e1bb43cc33c2326af9d7036","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":183.6,"y":562.4},"width":83.9,"height":-12.2,"page":8}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"548fd1602ae16c2dca4c0d760704ec0e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":400.6,"y":588.0},"width":39.3,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b27708b8e642e0e4166561ad54feadd2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":437.4,"y":577.6},"width":36.1,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d4d152d53700c389846573bfa41746a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":400.6,"y":566.6},"width":39.3,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2288b58f72fff0070bf43a5b4b61ef14","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":437.4,"y":556.5},"width":36.1,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e1d65585c7953dec87844ae99d6e93f6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.9,"y":546.2},"width":27.2,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"05c97e02b379fed5df5c68f28cba00d0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.9,"y":502.6},"width":20.5,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b0e6feebea7d8efaa5ee21555d692f9c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":406.5,"y":524.0},"width":39.5,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e55c0531f8400bea38076e6ed2b47d2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":466.5,"y":305.9},"width":39.4,"height":-12.2,"page":265}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1adad9855020a004f698fff58c520a99","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":369.3,"y":373.7},"width":95.9,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9740e70e2f286c02a8d2f80cc65ad6b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":367.6,"y":337.6},"width":34.6,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"70b1eb7da8f57e842e3953789d0fe63e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":365.7,"y":312.3},"width":33.9,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"135d12ac5778f8487e6fa96bdd3c17e4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":286.8},"width":74.4,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfae659fa07833869b9ac7813196fa31","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":251.2},"width":105.0,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62df68982bdb81b39f50311af033793e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":215.4},"width":66.6,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33c34aca21bb2afee8c72f36764001d7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":179.4},"width":66.6,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae08bd2e7183c6a6bac054e2d9ed8bbc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":363.1,"y":143.8},"width":109.2,"height":-10.0,"page":10},{"topLeft":{"x":362.4,"y":133.3},"width":42.4,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59db05cd898c7e18950f75f4dadc6b0c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":363.1,"y":108.0},"width":28.3,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a816db26642826f727adc9239c9aa73b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":309.6,"y":551.8},"width":50.9,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58604a6afc3208e98cf887ace487e613","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":244.5,"y":481.7},"width":59.4,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85509cbc24bf730b20a08797949c3300","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":100.0,"y":424.4},"width":99.4,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89c48f12d04d39d041138cea2fc17e64","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":103.7,"y":341.6},"width":92.1,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97ecbc7ef3121595b3873be21251212e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":656.1},"width":47.6,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9748cda0329800811143ef1df41e7aa4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":643.6},"width":49.7,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aac0aa67091e8d641d3be65d6c82c528","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":486.4},"width":45.3,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62536a054de0165bc7df99f73e6c949f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":473.9},"width":51.9,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cbdcd20ece45ac6fa335a4656be26300","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":589.5},"width":42.4,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"349964ee2bfbbad30449d0a0f81344ff","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":577.1},"width":18.6,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da162296bba18270c3a3d1586485e366","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":132.6,"y":577.1},"width":18.5,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9533194a9ee6770d4904ede3ceb84bf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":292.7},"width":33.2,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"162a9dc999d23d6e41be27660f860d71","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":280.3},"width":20.8,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f1c317d97b88011b17ee746f559a1585","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":132.6,"y":280.3},"width":18.5,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59ddac70a663263d0f05f5cb3386a514","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":199.6,"y":309.3},"width":120.9,"height":-11.0,"page":13}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5955193fc4955c861b6610cc62ef3bd2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":336.4,"y":286.2},"width":189.4,"height":-11.0,"page":13},{"topLeft":{"x":133.8,"y":274.7},"width":394.7,"height":-11.0,"page":13},{"topLeft":{"x":133.8,"y":263.2},"width":47.8,"height":-11.0,"page":13}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"16b16641bd7149d0c6ae4af87bc07248","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":190.4,"y":761.9},"width":50.2,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e35348091672e43ce65e57fd05e21704","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":310.6,"y":750.3},"width":212.6,"height":-11.0,"page":269},{"topLeft":{"x":135.6,"y":738.8},"width":113.3,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1949cf2951736f43847b6e4e91f010c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":202.5,"y":696.2},"width":59.7,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2880d41e6a1d1342ac86ed487e7a7fab","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":265.1,"y":684.7},"width":170.8,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72b65243b91e10acae06764dfa8cfcf0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":712.5},"width":169.7,"height":-10.0,"page":271}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4717f517b48d0ce40def4d0705a992c2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":188.2,"y":659.1},"width":49.7,"height":-10.0,"page":17}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3cad0c7a79012a525b80f0b352510421","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":367.0,"y":297.9},"width":129.3,"height":-12.2,"page":25}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8b32c453126e8061e41dfa1a2060a33","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":204.1,"y":247.2},"width":40.1,"height":-11.0,"page":25}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9ac9fbc70b27445791a0adf8296d54d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":175.2,"y":224.2},"width":286.1,"height":-11.0,"page":25}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8c6351fb3e63ddda87ca4da3acc1cd4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.5,"y":413.9},"width":76.3,"height":-10.0,"page":28}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a9585d1e82fabe4d268046638433edf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":214.2,"y":600.2},"width":72.1,"height":-12.2,"page":30}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"abbb916d4396741f92c99fb7d54fc209","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":445.2,"y":241.1},"width":58.1,"height":-12.2,"page":286}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b2221ae3cef06bb83aa6f3686f7969e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":191.0,"y":187.1},"width":51.5,"height":-11.0,"page":286}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"833da622b25415a61605052b30517688","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":275.3,"y":175.6},"width":236.2,"height":-11.0,"page":286},{"topLeft":{"x":133.8,"y":164.1},"width":111.4,"height":-11.0,"page":286}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49ba885f38b21be3a7fcb5fd07a0a197","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.5,"y":521.7},"width":169.7,"height":-10.0,"page":288}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66671580996a65084aff717709cf9d36","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":453.6,"y":676.8},"width":40.1,"height":-12.2,"page":38}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"04364b0fceec2caa8c2422e8ce4debf0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":199.7,"y":613.4},"width":38.0,"height":-11.0,"page":38}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e0eceb7a58471f80f2772e2be8d953ab","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":481.3,"y":602.0},"width":30.6,"height":-11.0,"page":38},{"topLeft":{"x":133.8,"y":590.5},"width":240.3,"height":-11.0,"page":38}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e652cb53cfe2227065f5c1840fd42d6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":440.2,"y":579.3},"width":55.4,"height":-12.2,"page":296}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df9df163f9e954e85e9882b1e6f27775","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.5,"y":606.8},"width":76.3,"height":-10.0,"page":41}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"01a2e9c414c4e8037739b0a5baf50459","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":163.3,"y":75.1},"width":29.7,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"63235611dfc1a040a028cb1c6d39fae6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":218.1,"y":75.1},"width":39.3,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e33dbd0a1d9f9417e999b72e40c3ec2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":398.2,"y":85.4},"width":34.2,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02aed351ab3fb76b30a3edcc2bcabd4b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":458.1,"y":85.4},"width":27.4,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5eb00d95a38b8bd4dc79b88c2b20873","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":291.0,"y":130.3},"width":27.5,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4726fc285dc4de3d7fc21bb8a7ec14cc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":284.8,"y":211.0},"width":25.0,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54ad00f3c9e8b6cb6512b3be46266652","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":428.4,"y":308.9},"width":24.9,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e21ec40a97f69eed2c58db4f4f0ddf28","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":457.9,"y":375.4},"width":19.6,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa39a6c6d4b25c4afc2ecff64a91b53d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":163.3,"y":364.9},"width":22.2,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6c2af7fb963236aac666fc7b10bf033","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":186.2,"y":685.4},"width":39.2,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8aa500a6988f62f1b95af97de1d70b73","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":480.9,"y":695.7},"width":27.4,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b40f20abd769ea5b18c689e8ec22f49c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.6,"y":726.2},"width":27.5,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7b4bf6ed0e0a62ca06dd4986044285de","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":268.3,"y":726.2},"width":39.2,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"96bb9c7fbd10b748709090f014351d9d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":235.3,"y":641.8},"width":20.3,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28be8746bb95c8b43eb174cdbbcef34e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":289.6,"y":641.8},"width":27.1,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58ac67c247f88aff5965bad4be5306fd","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":346.9,"y":641.8},"width":36.2,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a962d8da1c1f21e74e6ba4aa46784fd1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":434.5,"y":108.9},"width":46.6,"height":-12.2,"page":48}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b680e7e6dc274c7beb45da0c554c9878","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":200.3,"y":760.2},"width":104.7,"height":-11.0,"page":49}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b264232d7bf9f19a12ad6fc601bd7240","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":242.7,"y":737.3},"width":269.7,"height":-11.0,"page":49}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"95c386141d8c4f83a77672bf730bda62","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":188.6,"y":452.0},"width":44.5,"height":-11.0,"page":305}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f68e70bb00a272aae161a62bf4e55b7c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":245.7,"y":440.5},"width":257.1,"height":-11.0,"page":305},{"topLeft":{"x":133.8,"y":428.9},"width":130.1,"height":-11.0,"page":305}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"009b906459409269ced22f96e586254c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":214.9,"y":604.3},"width":84.8,"height":-11.0,"page":51}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75f07b9f8fc663c43cc3a360963d1058","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.5,"y":721.4},"width":283.5,"height":-10.0,"page":307}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e33154bb87ede1c0e972fdb83daa4ef6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":153.0,"y":408.4},"width":347.7,"height":-12.2,"page":307}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40c2878ae399479331f9b667a9593664","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":214.2,"y":699.6},"width":69.3,"height":-12.2,"page":53}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cbdc9c2267b5cd9f6ad97ed1828031f9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.3,"y":188.7},"width":49.2,"height":-12.2,"page":310}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"597309b48f45c533ed5de7dd23892750","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":386.7,"y":60.1},"width":106.9,"height":-12.2,"page":57}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bcb7b51fd3158051d0809269b62d90c8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":195.9,"y":710.3},"width":118.8,"height":-11.0,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f50eb3fa55bde4631d51047d9352a39a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":239.1,"y":698.0},"width":208.9,"height":-11.0,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"009bb2de637a0cf4b70339d6c21e47c9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":236.6,"y":539.9},"width":44.4,"height":-12.2,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5fb05709616c835adf85676c4582726e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":64.0,"y":527.2},"width":118.4,"height":-12.2,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ceb29030b0009a8759b49a3ff69c4dd","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":354.5,"y":441.4},"width":43.2,"height":-12.2,"page":60}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33f12c5a4e8117cdf0f45259ba5807a1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":175.0,"y":428.8},"width":45.6,"height":-12.2,"page":60}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d99c31ae30df87029788778906ca7b1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":309.7,"y":647.9},"width":55.0,"height":-12.2,"page":61}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aafd4ae97d0c5b9a08b32df5bd8f0405","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":188.6,"y":737.3},"width":36.8,"height":-11.0,"page":323}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28dce45b0f1897c4ca7692e0e1e7c8fd","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":166.0,"y":714.2},"width":333.2,"height":-11.0,"page":323},{"topLeft":{"x":133.8,"y":702.7},"width":54.3,"height":-11.0,"page":323}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"465fb12931bc14093a245363539e67ee","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":258.4,"y":638.3},"width":97.6,"height":-12.2,"page":323}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bf969ed1136b085a42193e481525e780","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.8,"y":400.7},"width":43.4,"height":-12.2,"page":329}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3afd69261076ad469a064a7c71558952","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":77.4},"width":43.5,"height":-10.0,"page":330}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"81a6cec731c08b127131d94dd42bf54f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":718.9},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db0fc0b28eadca747513eb18540988e6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":372.4},"width":38.3,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"522d284dbad5e2fb8a5edce15c9fe9d8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":359.9},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d814c5c981843c98fbe2f764af64bf06","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":311.9},"width":32.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d5129e39ba7711a84136003952011ae","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":301.6},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c7b558f65121b8e1cf0bd8745328b796","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":220.8},"width":25.9,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1403e2261bdf046f6d156de58f958e4e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":208.3},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"244cf5e2d3cf737b88195355688fab96","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":113.5},"width":9.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8632425ef077a3c2904c3ca7fa725e7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":83.0,"y":113.5},"width":4.5,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"786755af9bcf38edc6114338654cb1b1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":78.6,"y":113.5},"width":16.8,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e0ddfe1e984e5a6da3ff756b7c73fa48","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":101.0},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7fa481b3f7818bf0083739897994e8d4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":207.2,"y":460.7},"width":56.2,"height":-11.0,"page":332}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4cd49894037d140cee0d937d6321c362","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":321.9,"y":449.2},"width":189.6,"height":-11.0,"page":332},{"topLeft":{"x":133.8,"y":437.7},"width":124.5,"height":-11.0,"page":332}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09d92c88379113d282ca711de6c5591f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.4,"y":421.1},"width":230.8,"height":-10.0,"page":334}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1ffa8b06b65b3dab46dca59a48c9db9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":366.7,"y":764.7},"width":131.0,"height":-12.2,"page":91}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2b2e3f84a4e45f95ceff5c40ee4f1987","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.9,"y":701.6},"width":93.2,"height":-11.0,"page":91}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"69247ec81547010b5b0efde42856f07c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":463.9,"y":690.5},"width":60.4,"height":-11.0,"page":91},{"topLeft":{"x":134.7,"y":678.9},"width":209.1,"height":-11.0,"page":91}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42f40ed864ec093fe294a168822ea385","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":232.6,"y":464.9},"width":101.5,"height":-10.0,"page":93}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"be931ca8a7122bdbf27475be3e43b6cf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":446.4,"y":364.1},"width":56.8,"height":-12.2,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39850138f56a0cd246253cd27fb4e44e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":203.8,"y":300.9},"width":43.7,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2aff36b8d07356137fe78afd5ca3c528","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":450.5,"y":289.4},"width":71.6,"height":-11.0,"page":352},{"topLeft":{"x":133.8,"y":277.8},"width":233.6,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0689717386c00c9d8d289f0781fb211d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.0,"y":235.2},"width":48.4,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62a2ac733bf0935fb6f294b0661d4cdb","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":266.2,"y":223.7},"width":170.4,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34aec46105d29c5c996fa610827a69b3","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":187.7,"y":734.5},"width":233.2,"height":-10.0,"page":354}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"14b6ed2ca6b3671b95c17138ddbd5f8b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":396.4,"y":359.9},"width":97.1,"height":-12.2,"page":99}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9f7671add1827b747cc587bc3ae617e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.9,"y":258.6},"width":90.7,"height":-11.0,"page":99}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e1d0986851933ce5ed326af5f816993","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":134.7,"y":235.9},"width":270.2,"height":-11.0,"page":99}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66bbe846f8005fbb05543c87ef95c66a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":232.6,"y":307.3},"width":101.5,"height":-10.0,"page":101}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f600033f970465d63c6a57660d315614","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":455.5,"y":281.4},"width":44.9,"height":-12.2,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0436547ff4245e057936ddca02cad0ee","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":217.1},"width":40.6,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b35e9b5ceb2b7c7bcbc405ef558fa9e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":209.0,"y":205.7},"width":306.0,"height":-11.0,"page":358},{"topLeft":{"x":133.8,"y":194.2},"width":37.8,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ec1a6012c5daa76ffdb358f023e7a18d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":232.3,"y":151.5},"width":2.5,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"165dc4660607cb093870581d382a7581","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.4,"y":151.5},"width":35.9,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"994e60a0b4f84a8c02767f09d01249f9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":179.3,"y":140.1},"width":170.1,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88da8bdb529beacd15c120c4fac8232c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":533.7},"width":207.8,"height":-10.0,"page":360}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49fc3bf45d5936d5dea17e18314dec18","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":391.5,"y":549.7},"width":99.9,"height":-12.2,"page":106}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2b65ff3c4727f6f50d7318f961b5268c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.0,"y":497.3},"width":190.4,"height":-11.0,"page":106}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b3e6b094bf79a1524c679c6a9aa420a8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":309.1,"y":473.6},"width":216.4,"height":-11.0,"page":106},{"topLeft":{"x":133.8,"y":462.1},"width":173.2,"height":-11.0,"page":106}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"825daf1c487b1623704dccdbf98b048c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":220.1,"y":438.9},"width":76.3,"height":-10.0,"page":109}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b75e23142bb808d3cbde69b81ef066e9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":461.0,"y":683.5},"width":45.0,"height":-12.2,"page":369}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"79208f147699a7595ff18a246229bc75","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":207.3,"y":618.0},"width":36.5,"height":-11.0,"page":369}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7e3397062932360184b97bb7f28eb6a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.2,"y":606.5},"width":71.2,"height":-11.0,"page":369},{"topLeft":{"x":133.8,"y":595.0},"width":288.5,"height":-11.0,"page":369}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d8b74359bf8897337a376bd79b391ea","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":386.4},"width":290.7,"height":-10.0,"page":370},{"topLeft":{"x":211.6,"y":376.1},"width":127.2,"height":-10.0,"page":370}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a54e33a6e50fd0a6610ca8284d0aece4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":648.0},"width":28.5,"height":-11.0,"page":376}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ebf96014c764b7ac6f5576c66406c51","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":216.3,"y":636.5},"width":281.8,"height":-11.0,"page":376},{"topLeft":{"x":133.8,"y":625.1},"width":67.5,"height":-11.0,"page":376}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"212f4ad30e0b1d8ef84f2b9ab2572a6b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.4,"y":689.5},"width":35.3,"height":-12.2,"page":376}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d53d627931b5838bf4ea354fd6f74492","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":419.8},"width":290.7,"height":-10.0,"page":377},{"topLeft":{"x":211.6,"y":409.3},"width":127.2,"height":-10.0,"page":377}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e04b4475e1dfe62de749d25cc765a9a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":134.2,"y":259.3},"width":36.5,"height":-12.2,"page":380}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"578af0654ffd36a213c43f1ca5b41bd5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":463.5,"y":410.0},"width":37.1,"height":-12.2,"page":384}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"755a2f07bf10a7b337f8b99d685d91c0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.8,"y":344.0},"width":37.6,"height":-11.0,"page":384}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9938daba74e3634d6a8bf5c145b433f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":376.0,"y":332.4},"width":146.0,"height":-11.0,"page":384},{"topLeft":{"x":133.8,"y":320.9},"width":194.2,"height":-11.0,"page":384}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53ebadcbf43f4282dd999f90247079db","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":141.4,"y":641.0},"width":28.2,"height":-11.0,"page":385}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b74e7b947a500521aa5fcfc047a3b4f5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":296.1,"y":250.1},"width":207.1,"height":-12.2,"page":130}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dff1ba17f81cadd46165462755fa7ec9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":456.7,"y":248.8},"width":46.6,"height":-12.2,"page":386}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f1296b8c6022804fcf068dd6b7f579d4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":209.8,"y":736.9},"width":30.9,"height":-11.0,"page":131}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"637b7c541ccae9efd352bc166586e742","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":333.4,"y":725.7},"width":177.6,"height":-11.0,"page":131},{"topLeft":{"x":147.6,"y":714.2},"width":214.2,"height":-11.0,"page":131}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6895f7ca06f101c22921ae3bfe991f97","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":607.9},"width":35.6,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88b866a0ef9cce70e245dd374d5ad031","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":585.2},"width":24.4,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"103611d2fd7958ed7d4ccc62cc490e96","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":323.7},"width":33.4,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d48683f32be54fdaffa21feb8969d52f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":301.0},"width":24.4,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"766657ce0ee778697ea95f6e2113b584","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":331.0,"y":765.3},"width":102.1,"height":-12.2,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f45f8c21dc7cfea0bb941953b132f621","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":223.1,"y":730.3},"width":275.8,"height":-10.0,"page":132},{"topLeft":{"x":223.1,"y":720.0},"width":187.4,"height":-10.0,"page":132}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"78e96defa3c85287bd06711deb3e5d74","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.0,"y":690.1},"width":37.8,"height":-11.0,"page":388}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f3fe6ae700c079e534851d774fa6d9b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":320.0,"y":678.6},"width":202.0,"height":-11.0,"page":388}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9d8126a49ed3e71c82e171e88b71c22a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":548.6},"width":276.2,"height":-10.0,"page":389}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a189e28bae5b487d7efde33ebdc8c2e7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":468.9,"y":681.2},"width":31.6,"height":-12.2,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30e7413ad870521200a6854288f66813","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":295.9,"y":316.8},"width":64.6,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7783f30643518024bfe21c54f1cec339","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":295.9,"y":295.5},"width":64.6,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bc99ed23794c6a802fa81a6a3775061a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":314.1,"y":274.3},"width":30.3,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3450dd67002b6ed94db2e287dc2768d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":299.8,"y":253.0},"width":56.8,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"766fd76a3f78e838beda5a1ad2d84240","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":297.8,"y":231.6},"width":59.1,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d19ccc1828ee336c21bab2fccd14987d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":310.6,"y":210.4},"width":39.7,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62a2b430cbf2b8bfe0683b585c291236","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":193.6,"y":725.6},"width":71.9,"height":-11.0,"page":138}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed4f3b353a0a49c1841732c008e3c6df","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":258.5,"y":714.1},"width":183.1,"height":-11.0,"page":138},{"topLeft":{"x":131.4,"y":702.6},"width":110.1,"height":-11.0,"page":138}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e71bc90e2dc89fbdc0c8a91692d3b241","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.7,"y":208.7},"width":40.6,"height":-12.2,"page":394}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8800c7155d9d354aac0451b1e5a99c9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":202.3,"y":121.2},"width":40.0,"height":-11.0,"page":394}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c9507c1edc0c9592d1d85510e3ab196","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":421.7,"y":109.8},"width":100.5,"height":-11.0,"page":394},{"topLeft":{"x":133.8,"y":98.3},"width":87.4,"height":-11.0,"page":394}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8ea05b8c0e4dea4fb333d44e755c82c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":206.9,"y":676.4},"width":312.5,"height":-10.0,"page":139},{"topLeft":{"x":206.9,"y":666.1},"width":67.7,"height":-10.0,"page":139}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"359f15f7b41bee2749f5fd7bda7ef3b6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":417.6,"y":500.7},"width":82.9,"height":-12.2,"page":140}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dcb8e4dfed7e39264941dce18dba94a5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.0,"y":437.5},"width":71.9,"height":-11.0,"page":140}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54bcff776fc7c22a57d174ffb6143758","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":154.0,"y":425.9},"width":293.3,"height":-11.0,"page":140}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9bf466bf9a48d58cebdf4a48cf7ff1b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.4,"y":587.2},"width":272.7,"height":-10.0,"page":396}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c9c55e9ac2d001e1bba3d98f40939de","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":467.6,"y":587.2},"width":22.1,"height":-10.0,"page":396}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44c768a450d658a87306231b32821ed5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":206.9,"y":355.6},"width":312.5,"height":-10.0,"page":141},{"topLeft":{"x":206.9,"y":345.3},"width":69.7,"height":-10.0,"page":141}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"61e703881be5cee17f8061c3d0b60776","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":421.3,"y":176.3},"width":79.2,"height":-12.2,"page":142}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7f1368136a80f4a8008ead1b84225ae","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":193.0,"y":712.4},"width":31.1,"height":-11.0,"page":143}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea93d8db910c8d2ad12cefb3f9c1df10","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":174.5,"y":701.0},"width":295.6,"height":-11.0,"page":143}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f64b099ebac01e9c79f47d2c4b55b329","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":189.2,"y":232.7},"width":333.8,"height":-10.0,"page":144},{"topLeft":{"x":189.2,"y":222.4},"width":76.2,"height":-10.0,"page":144}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ccaa0d63a8fcce0cb6c8ac8293459cc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.2,"y":169.1},"width":49.9,"height":-12.2,"page":400}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b27249f26fc2a5b6c96c0de3be9c2c3e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":465.9,"y":289.8},"width":37.2,"height":-12.2,"page":147}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce4f0b597f185c04c411b0139cefb542","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":213.4},"width":62.9,"height":-11.0,"page":147}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e2fbe8d2556cf6d0e346f9baf9691247","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":169.3,"y":202.0},"width":288.2,"height":-11.0,"page":147}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af1de44bcfc821c956057dd3d7b13bdc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":189.1,"y":268.3},"width":188.2,"height":-10.0,"page":148}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92f1c46928c4113ada300ca7801d4947","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":423.8,"y":683.9},"width":82.2,"height":-12.2,"page":150}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27ca78670bb5b6a05151929f589a88d1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":194.1,"y":595.4},"width":63.1,"height":-11.0,"page":150}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45fb2f3376a7f923635fcd93e5b71235","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":131.9,"y":583.9},"width":288.2,"height":-11.0,"page":150}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"716e7ffe688abb5e69f4e0cdd448cd40","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":206.9,"y":492.2},"width":195.6,"height":-10.0,"page":151}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"232a00448576ee37c54c18f924839011","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":422.5,"y":304.8},"width":75.8,"height":-12.2,"page":152}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3e9041e64dcc53c2563d36d507e7c49f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":195.3,"y":216.9},"width":41.5,"height":-11.0,"page":152}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecc6d60fe734fbffb217a750ea8fb28a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":133.0,"y":205.5},"width":290.6,"height":-11.0,"page":152}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7080f315fae834b5eedba6874d55d536","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":216.8,"y":58.8},"width":57.1,"height":-10.0,"page":153}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6b94a5efcd52e1e017ccf6c4bc09af4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":457.4,"y":468.8},"width":48.5,"height":-12.2,"page":156}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d83e1d7a626eba4280d2e1d4e60285c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":696.8},"width":38.0,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3cf36b61ba13c6ba92e6bcda029b5bc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":93.6,"y":686.5},"width":29.7,"height":-10.0,"page":163},{"topLeft":{"x":69.5,"y":676.2},"width":22.2,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"201ccdbede6e8e1318ab3f4904c47d1b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":628.3},"width":35.5,"height":-10.0,"page":163},{"topLeft":{"x":69.5,"y":617.8},"width":45.3,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58de3b86d04b6766896be70a69fd68df","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":595.1},"width":17.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dbde82307432e8ab44fd388ac807edb9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":472.5},"width":35.7,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b139d394d87264d9a7b23802396f954e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":99.8,"y":462.2},"width":17.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3a4828cf7e4565ae579504d861e1f3f9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":391.5},"width":35.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b37b142f526f26537a7bbe85155ab91","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":95.9,"y":381.1},"width":17.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d950c771ca0064c1e8ee244ae575279","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":225.5},"width":28.8,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a11fad6e82a5f57874287bebe241b456","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":213.0},"width":29.1,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cadc8e29e01c19ef8e4c1cae2e6df09d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":714.3},"width":31.0,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fa21441772123d3bca9059a990553103","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":691.6},"width":29.1,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a31d0c79ff82d390a65f5b480515105e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":633.4},"width":33.3,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91ffd68ff10d97ff368dd2d94c1e144f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":610.6},"width":24.4,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"24c3c6ed680e304629b1c3f038c10d90","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":195.9,"y":361.7},"width":39.5,"height":-11.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e028432b91eed3836b7c98fda938fe1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":166.5,"y":350.2},"width":209.6,"height":-11.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7fe47e8d3fdfa664f16975308b7856c1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":208.3,"y":509.7},"width":169.7,"height":-10.0,"page":166}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7cd806441faf08caaaca4503a4d7c70c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":456.8,"y":427.2},"width":43.7,"height":-12.2,"page":175}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1eb515f071fb1d45af1f030535a8ff7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":203.0,"y":350.4},"width":42.1,"height":-11.0,"page":175}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5056ae658b6f413ca1a3dea3fca4bd6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":203.5,"y":339.3},"width":209.2,"height":-11.0,"page":175}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a446d43ca61a4dbf5d7d16fce2857da3","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":192.1,"y":435.6},"width":169.7,"height":-10.0,"page":177}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"760cc2079747213190354211d17d4881","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.9,"y":269.7},"width":43.7,"height":-12.2,"page":184}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8ac1d7ec49ad8d2340667d53c1f937b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":181.7},"width":108.8,"height":-11.0,"page":184}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"15f4724a4f3fefc5deecd8ebe9dcf3b9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":475.8,"y":170.2},"width":33.0,"height":-11.0,"page":184},{"topLeft":{"x":133.8,"y":158.7},"width":174.0,"height":-11.0,"page":184}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a34aeeb600e49cd8c7e84b4046838c5c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.2,"y":283.3},"width":169.7,"height":-10.0,"page":186}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef275e98e92999047262568021cb471b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":466.3,"y":726.8},"width":33.6,"height":-12.2,"page":187}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"958523a432742baede34477337d1711b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":96.2,"y":300.2},"width":61.3,"height":-12.2,"page":187}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"374b6a0fe2cda62f31b0b868b9e1b347","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":379.4,"y":99.9},"width":121.1,"height":-12.2,"page":196}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e02b3300de6dc9e73ba5456d27d5fe9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.6,"y":735.9},"width":39.6,"height":-11.0,"page":197}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07781d82534b83d67640c20c56bc43d6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":417.0,"y":724.4},"width":97.4,"height":-11.0,"page":197},{"topLeft":{"x":133.8,"y":712.9},"width":121.1,"height":-11.0,"page":197}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb5e5ac6754544887abef9c8b79890fb","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":318.0},"width":169.7,"height":-10.0,"page":198}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"231024bb54ea2ab6cbacce33859fafc5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.8,"y":664.2},"width":43.4,"height":-12.2,"page":207}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df210fbf3df3490806402fdc52d1e065","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":622.7},"width":31.8,"height":-11.0,"page":207}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5b4a10a65463b1e3c055f511268c6e8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":133.8,"y":611.3},"width":351.8,"height":-11.0,"page":207}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d282889ac80696451661955d56da7c4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.4,"y":533.7},"width":308.2,"height":-10.0,"page":209},{"topLeft":{"x":213.4,"y":523.2},"width":32.3,"height":-10.0,"page":209}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fbd145f81f88cbcf96fa07156a2d8235","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":465.3,"y":90.2},"width":37.9,"height":-12.2,"page":217}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"206a5228f4a7d6c03844f9a9b2eb20c8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.5,"y":710.1},"width":34.4,"height":-11.0,"page":218}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d2a6bcdd9e96c624b4eeedeeecd56b3e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":170.6,"y":698.6},"width":311.6,"height":-11.0,"page":218},{"topLeft":{"x":133.8,"y":687.1},"width":40.1,"height":-11.0,"page":218}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a2f3aaafdca5518361ef96b44f0ea173","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":521.0},"width":276.5,"height":-10.0,"page":219},{"topLeft":{"x":211.6,"y":510.6},"width":32.3,"height":-10.0,"page":219}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fa664dd5c788b82c6513b9ac4b360281","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.4,"y":765.3},"width":40.7,"height":-12.2,"page":226}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5e7d55eb8ee83f1a952fb6a683e545d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.3,"y":639.9},"width":37.5,"height":-11.0,"page":226}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"510647b240f693250d0ea08de5b90f25","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":284.0,"y":628.4},"width":227.2,"height":-11.0,"page":226},{"topLeft":{"x":132.4,"y":617.0},"width":50.1,"height":-11.0,"page":226}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b96d57ef7558c1444dc5e738238913d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":191.5,"y":564.9},"width":260.3,"height":-10.0,"page":227}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b186a56217421366d8d11955eafec9ff","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.8,"y":765.3},"width":40.6,"height":-12.2,"page":232}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e45a7c4cff5e169d465a5e3cd36c5ffa","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":499.2},"width":27.8,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5618f4e44e1404ebb30e9d59d7b1acbf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":482.9},"width":24.4,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6ece11c2b3c7634924aeb023c804152","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":439.4},"width":24.4,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5833d297bae1a6303d61b0f2c82a7c3","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":455.7},"width":27.7,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed02b517389520b009270327e308f705","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.3,"y":302.1},"width":30.8,"height":-11.0,"page":255}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"219bf4aac443fbd7aee6040cb3ea3609","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":186.8,"y":290.6},"width":324.7,"height":-11.0,"page":255},{"topLeft":{"x":133.8,"y":279.2},"width":124.5,"height":-11.0,"page":255}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619001Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f21afcfbed445ca618a259382ecf82eb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":357}],"sectionNumber":6769,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259753Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34d2aba869a922476dedcf0055d237b1","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.48376,"y":477.83},"width":30.98468,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"study (Kitchin and ","textAfter":", 1989). The","comments":null,"startOffset":1463,"endOffset":1468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258874Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16a991fcff3f4981f284b0ae8be57f62","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":568}],"sectionNumber":6980,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259761Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c62ef5d17213adfeb392c856cb1c6a47","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":538}],"sectionNumber":6950,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259772Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8702b9e3f24f45efb17301deae9b245e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":247}],"sectionNumber":6659,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259773Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c04ec927a3bd26b140bc946fde93f4f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.53204,"y":586.07},"width":30.772034,"height":10.018499,"page":466}],"sectionNumber":5008,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259777Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a346a72fb4f384922090eb1d9bcbecfd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":41}],"sectionNumber":6453,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259775Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93d44bd440e3581a6dd0b4d42aa4c983","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: In conclusion, it can be stated that there were DNA strandbreaks observed in stomach, colon, liver,\nkidney, urinary bladder, lung and brain following oral administration of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.57202,"y":206.70001},"width":30.772034,"height":10.018499,"page":568}],"sectionNumber":5817,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259779Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46e0c43f8b5531de8d3788d5f6b0a2c0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":465}],"sectionNumber":6877,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259782Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9c07599f72644255773e88bd13288fa","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":101}],"sectionNumber":6513,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259783Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c77467d0b3bd3e7e0ad47b9b80cba37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":552}],"sectionNumber":6964,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259785Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9510b34a74139d7e49cb6e2d43494868","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":475}],"sectionNumber":6887,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259791Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bfc94fc024e1733a3d966ed3464974a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":618}],"sectionNumber":7030,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259793Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"968a2471a4ba19385be1125191dff256","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":329}],"sectionNumber":6741,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259795Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"530e1c4e56caa480c576edc8cdae7a7b","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":104.34003},"width":27.970726,"height":11.017679,"page":562}],"sectionNumber":5772,"textBefore":"White cell preparation ","textAfter":" cells were","comments":null,"startOffset":1040,"endOffset":1045,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787264Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c355311919d4ea655ce440c45dd99fde","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":402}],"sectionNumber":6814,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259803Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a326c61e4b1e569638dd998af13411f9","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.98,"y":320.49},"width":23.543686,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":"driven homogeniser (","textAfter":", 1987). The","comments":null,"startOffset":815,"endOffset":819,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258932Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e717c5699b2d6de5ef7e35054cc0a494","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":282}],"sectionNumber":6694,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259812Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ed2b044a22c284ad6fa26bdc798dae4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":640}],"sectionNumber":7052,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25981Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"352a7b53457e449099733e1fc6a821ec","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":397}],"sectionNumber":6809,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259813Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"542ded7dedb3a586761ad500545567e1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":54}],"sectionNumber":6466,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259816Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac5c4e9da3373d0817fc43bc67047a49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":124}],"sectionNumber":6536,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25982Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19cc85dc4e0c8ff8af69c285444ae1a1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":302}],"sectionNumber":6714,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259822Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b0ae4b65cad74835a3813eda7fb18d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":612}],"sectionNumber":7024,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259823Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8c9cbd0e23936bb61e25d623d058177","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.73886,"y":329.73},"width":40.92061,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"administration (Punler M., ","textAfter":", 2014a). The","comments":null,"startOffset":4694,"endOffset":4703,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257822Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4445efb341b6a36a58b8b7d2c8fc24f1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":77}],"sectionNumber":6489,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259828Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5369d4e3c3aa42af61b7bf51c9b1b276","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":254}],"sectionNumber":6666,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25983Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67640390fe4f48ffcefd3793703aca99","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":508}],"sectionNumber":6920,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259831Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"641ee931b8ee4a27443221dd146f6b3b","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.81312,"y":324.57},"width":11.918556,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1433,"endOffset":1435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860604Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"05ef72261ba4277681418fe02655af6c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":342}],"sectionNumber":6754,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259835Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b2afd20c9705ecce76bc89c08a064f3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":162}],"sectionNumber":6574,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259837Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c4a3ae0e1193a21334f39ddbdfe9823","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":283}],"sectionNumber":6695,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259836Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11d68c244f3b8a1410f8a6a30471d1bc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":275}],"sectionNumber":6687,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259841Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f16e9f77dcc019aaedd95826785d159","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":632}],"sectionNumber":7044,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259846Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d64da3188de5af75593acbf941a55433","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":142}],"sectionNumber":6554,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259847Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"577f8ceacc4448d0a7521765226472b8","type":"PII","value":"10-13","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.2754,"y":728.18},"width":26.774597,"height":11.017679,"page":463}],"sectionNumber":4999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":587,"endOffset":592,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787166Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8fe3eb06bdc8a9dc52c7cc750ff6cd9f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":34}],"sectionNumber":6446,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25985Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82e876cf48e2e481708b338f7ead5b2a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":624}],"sectionNumber":7036,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259856Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d7bb2748eece07015f0d721cf9e72c9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":82}],"sectionNumber":6494,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259857Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcb0a6f567ad9059d5da33c7bf227089","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":592}],"sectionNumber":7004,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259859Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cbf12d29c7beaf7ba6365160f3faa309","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":430}],"sectionNumber":6842,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259864Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed0fe57ca852fef5fab3af14db3690b3","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.1844,"y":690.74},"width":34.89392,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"Punler M. and ","textAfter":" (2014). SYN545974","comments":null,"startOffset":3198,"endOffset":3207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618291Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.25793Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f66f2c68578b0c54909934899c7d1b1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":81}],"sectionNumber":6493,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259865Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bb79cbc4f386380d41847c79252dad9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":179}],"sectionNumber":6591,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259867Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c65e8fe9f4818e2346da5e2f4187166","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":268}],"sectionNumber":6680,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259872Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"758c7c205547525bf159609c99bbe51a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":432}],"sectionNumber":6844,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259871Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fdf6b0b2c14dde20b6020b484b95c00","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.2209,"y":436.43},"width":46.3302,"height":11.017679,"page":13}],"sectionNumber":50,"textBefore":"300 mg/kg/day (","textAfter":" 2015; section","comments":null,"startOffset":12802,"endOffset":12811,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b6d6710d53759bbe96ab4be4b46144ce","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":477}],"sectionNumber":6889,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259875Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b6f2b04409c65d294b3cdb8ab6bf1ccd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":47}],"sectionNumber":6459,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259877Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fb05e696c0e44b1c18dc80e1a4499c","type":"CBI_author","value":"Harris","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicokinetics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.02783,"y":550.55},"width":28.555847,"height":11.017679,"page":8}],"sectionNumber":27,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3222,"endOffset":3228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6182Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257804Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d05cbb177567b7f57ff6280f5308c37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":597}],"sectionNumber":7009,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259881Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9025f8fda0a69dca14e9a1e12097f5a4","type":"CBI_author","value":"Punler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicokinetics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.64653,"y":550.55},"width":29.759216,"height":11.017679,"page":8}],"sectionNumber":27,"textBefore":"oral data (","textAfter":" and Harris","comments":null,"startOffset":3211,"endOffset":3217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618201Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257812Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2ebae44568f37f080320ca1bf053093","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":440}],"sectionNumber":6852,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259892Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24a167b12b282e81d7bcf9e33e83d79d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":163}],"sectionNumber":6575,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259897Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93f0313beb01ad18f8484dc751d66367","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":461}],"sectionNumber":6873,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259899Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a35a7434a2bee8a47c0f5a7de5b3069","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":630}],"sectionNumber":7042,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259902Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a0d1cff0d8a8bea635f0a5dbea6e835","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":117}],"sectionNumber":6529,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25991Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85d6e9d5c2fa98896164bb9bdcc2698f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":116}],"sectionNumber":6528,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259913Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5507979f224d0a07fcd09872d682dde","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":434}],"sectionNumber":6846,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259912Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29a74d7c7d9ff5fea7217be7e5ca369e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":46}],"sectionNumber":6458,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259914Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18aa6c960180dc08bfd8d0604c497a25","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":208}],"sectionNumber":6620,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259916Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc0b31107b82104b4b9fbf6e5862c53c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":634}],"sectionNumber":7046,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259917Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"813bc93ad41cba213ec8e0cbf0fb42ee","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.082,"y":435.47},"width":22.978027,"height":10.0905,"page":377}],"sectionNumber":4126,"textBefore":"New Zealand ","textAfter":null,"comments":null,"startOffset":48,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787113Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8021dff9158a5a62e5594821d70e8d8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":259}],"sectionNumber":6671,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259926Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"403c0d002b5ae2a0af39a29d84b8f4b0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":122}],"sectionNumber":6534,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259927Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f18dced9d74375197674206a31f3d8c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":619}],"sectionNumber":7031,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259929Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e072e822fa25fdf809f74102719f4d58","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Draft Assessment Report prepared according to the Commission\nRegulation (EU) N° 1107/2009","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.13,"y":297.81},"width":74.258545,"height":15.80514,"page":1}],"sectionNumber":2,"textBefore":"PYDIFLUMETOFEN ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259934Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aca86cbea1e32e9a7db12e5abee8a782","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":456}],"sectionNumber":6868,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259938Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63e16d0942eec09a232b85a22bd9b0a4","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Reproducibility and Consistency","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":59.200012},"width":46.230873,"height":11.017679,"page":300}],"sectionNumber":3307,"textBefore":"with SYN545974 (","textAfter":", 2015). This","comments":null,"startOffset":1514,"endOffset":1523,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618519Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787046Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"927d6ea3c105ff4309b156e04c116c1a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":195}],"sectionNumber":6607,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259941Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42099c8bc2e9b25aeb780fc5bb69799f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":352}],"sectionNumber":6764,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259942Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d493eed7ce5d749908eb48be1990cc56","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":12}],"sectionNumber":6424,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259943Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d7961a08bb048e6d4c4728f85ca8fb5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":505}],"sectionNumber":6917,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259945Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e20cde213a438bde130cbda753d1ab02","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":600.62},"width":25.435005,"height":10.0905,"page":164}],"sectionNumber":2150,"textBefore":"Sieber M (2013) ","textAfter":" Report D62072","comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618402Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da4bf964e720c6caf00767e61c70fdbf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":431}],"sectionNumber":6843,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259948Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"739e01948d815b497234ab00ff278d78","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.66,"y":753.5},"width":27.970718,"height":11.017679,"page":477}],"sectionNumber":5075,"textBefore":"activity session. Haematology: ","textAfter":" blood cell","comments":null,"startOffset":3761,"endOffset":3766,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af5be87805f0732f7d008499731611aa","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":269}],"sectionNumber":6681,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259959Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"613ada3bbea818572a96dadf29c8f849","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":400}],"sectionNumber":6812,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259967Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cae298096f429f31d11be1880215770d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":617}],"sectionNumber":7029,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259977Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8448e7778fbf6414b2975fbf497acf31","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":93}],"sectionNumber":6505,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259978Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90eeec6dea8821c95eae15f7fa6b2efe","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":385}],"sectionNumber":6797,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25998Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea6f01ff7bf70b680962454fdadaf3a7","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.49775,"y":239.58002},"width":46.21984,"height":11.017679,"page":624}],"sectionNumber":6241,"textBefore":"3.2.1 (Shearer and ","textAfter":", 2015 and","comments":null,"startOffset":1153,"endOffset":1162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4245505278da4830f34449cd7fb2d714","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":437}],"sectionNumber":6849,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259984Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5951a75fbeca9988b0352be0c4158ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":159}],"sectionNumber":6571,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259986Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52b1654fb4277f969efb9db17283a1ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":523}],"sectionNumber":6935,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259987Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c9ec09c032a1c1e632781897f391c2d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":123}],"sectionNumber":6535,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259989Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd3a28e109abe2ba73d282b35dc93d51","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":245}],"sectionNumber":6657,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25999Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e531b5e5c490440d843147b682367cf9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":221}],"sectionNumber":6633,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259992Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b25e87f161abe80b25e14286bde9644","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":128}],"sectionNumber":6540,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259994Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9c5f20d1433cad59955ff659172749a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":154}],"sectionNumber":6566,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5035af1d0bad12090039d78b6799c2c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":273}],"sectionNumber":6685,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260002Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f24486e787d5329669c481fbba1e592","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":328}],"sectionNumber":6740,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260009Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5d992142320f75859a82c96e7b66a61","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":408}],"sectionNumber":6820,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260013Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4499ed56a02bd9a7ece19f09ea22985f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":526}],"sectionNumber":6938,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260016Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"043aa8256f78c62b8faa45c823c751fb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":594}],"sectionNumber":7006,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260018Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c861768db67959ed096a8b4fded738d6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":98}],"sectionNumber":6510,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26002Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e42d7fb2e3c0000998e8bf920dd0df0d","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MOA Hypothesis for SYN545974-Induced Liver Tumour Formation in the Mouse Carcinogenicity\nData for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":215.38513,"y":740.9},"width":46.33023,"height":11.017679,"page":297}],"sectionNumber":3281,"textBefore":"mouse, respectively (","textAfter":" 2015a and","comments":null,"startOffset":242,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618515Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787043Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e96f83eebde6fb3b39db91ff99dc7967","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.34,"y":548.2},"width":34.196686,"height":10.44714,"page":74}],"sectionNumber":6486,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260023Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787397Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1d32eb99e9c81d923843c84da69389a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":27}],"sectionNumber":6439,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260024Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787397Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1496fc320c8e7d2a201030fd2c5acaf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":158}],"sectionNumber":6570,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260029Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5e2ec1339de228265e24ea2104a1f8c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":290}],"sectionNumber":6702,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260031Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cebf2f69ceb67d47cae4087d14208525","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":636}],"sectionNumber":7048,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260032Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"326ecb1d511f903cffe6a78a1f00b912","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":582}],"sectionNumber":6994,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260039Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5e5626a18a61272c697bc9cf86b8b7b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE ....................................................................................................... 626","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.95,"y":512.51},"width":36.482544,"height":11.017679,"page":4}],"sectionNumber":15,"textBefore":"be found in ","textAfter":" 1- level","comments":null,"startOffset":1369,"endOffset":1375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260042Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e1868153d4c56d7018ef1c7b20be0f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":21}],"sectionNumber":6433,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260043Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92169378be17462c0d1d75179dcb1bee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":570}],"sectionNumber":6982,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260045Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"66f9944bdd95e4e7bc5c581ae641bacb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":498}],"sectionNumber":6910,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260057Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82a74d2df3170b05846ef8022ff54419","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":441}],"sectionNumber":6853,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260059Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2656a35fb5bb74b7e951d993881e754","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-12: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":646.94},"width":22.978004,"height":10.0905,"page":204}],"sectionNumber":2546,"textBefore":"Distribution Width % ","textAfter":" Blood Cells","comments":null,"startOffset":47,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618436Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786987Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f473598fccbe71e9c1b9b7cd43ec029","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":140}],"sectionNumber":6552,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260064Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b730de27e60c1040cfbbd863a303594","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":53}],"sectionNumber":6465,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260069Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea8fb8a7fc2448445caced5592aa7af8","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":118.40975,"y":415.17},"width":12.040001,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1646,"endOffset":1648,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860628Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb5230b28ab3f2d4e2f30d0eee4c191f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":396}],"sectionNumber":6808,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260076Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74f8331a3d92809407cea7b212445eeb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":35}],"sectionNumber":6447,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260081Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ea47dd520753406297f87fab06923ed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":8}],"sectionNumber":6420,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260084Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58f3c64c1e61511f92c7dbafd8bb6ca0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":438}],"sectionNumber":6850,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260086Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21605f21458a7e22e54cee9fbf0af85d","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.5477,"y":299.25},"width":12.040009,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1653,"endOffset":1655,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860629Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"beefd6a4394acd79c6c5256e8405929d","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.67,"y":585.11},"width":25.435028,"height":10.0905,"page":448}],"sectionNumber":4881,"textBefore":"(2013a). Report No. ","textAfter":" 1555903. Syngenta","comments":null,"startOffset":140,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787161Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac0f65129032a34e3b86e7c0f90a8eb5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":419}],"sectionNumber":6831,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260086Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0faf341f4c3899d13e98bd2f43a7c054","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.69205,"y":630.5},"width":30.772034,"height":10.018499,"page":530}],"sectionNumber":5455,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260088Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0385304883aaa33466ca3e408fa0cbe0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":524}],"sectionNumber":6936,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260089Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ce453600a98bb53295611bf0c318c3f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":332}],"sectionNumber":6744,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260095Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e31934ade104fc57814da70ce3fd124","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":492}],"sectionNumber":6904,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260098Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5fc86c2b521b80499720f55899a4143","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":223}],"sectionNumber":6635,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260099Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53460301d41205f9a5f12d2ede89d68a","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7. NEUROTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":387.9808,"y":753.5},"width":46.09836,"height":11.017679,"page":387}],"sectionNumber":4248,"textBefore":"rat (Shearer and ","textAfter":" 2015) no","comments":null,"startOffset":654,"endOffset":663,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787119Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ab7e46e8fa0593375627d76398636f2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":485}],"sectionNumber":6897,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260101Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ce27cd51594c142773d8296bd371067","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":350}],"sectionNumber":6762,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260105Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29676a338d7d9d25772469095251d978","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":497}],"sectionNumber":6909,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260103Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45c30a60ea66fc731f571900b2b32f57","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":244}],"sectionNumber":6656,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260106Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"423ad4a3eb40fdf9ba16de72580322ce","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":387}],"sectionNumber":6799,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260111Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97830223a8e7d9894b87aea721a88b67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":62}],"sectionNumber":6474,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260119Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787411Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"907d0767bdabba526d5b49d842031f0d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":468}],"sectionNumber":6880,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260122Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c90f1b3a7016708167e9e22c341c2e2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":115}],"sectionNumber":6527,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260123Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"872906d747c4983aa915624cf5a3cd81","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":322}],"sectionNumber":6734,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260126Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bafa0f3afa53cad0179a8cc59acdcd50","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":347}],"sectionNumber":6759,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260131Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"161021f33c48cefcdfa9625091790063","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":274}],"sectionNumber":6686,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260137Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6df30269827c040079e4dddbb5dc9b42","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.15105,"y":226.73999},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2844,"endOffset":2846,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860635Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6ce1a2d162eda682ed380ceead45e8d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":370}],"sectionNumber":6782,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260142Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7891e5b10600243edd0349781cbff5d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":631}],"sectionNumber":7043,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260143Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"460fd130a4e7b4c0b230193cb70b718f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":139}],"sectionNumber":6551,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260145Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0366259241d4aeadd900c7881d6c15d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.10628,"y":386.49},"width":36.36113,"height":11.017679,"page":13}],"sectionNumber":50,"textBefore":"was added in ","textAfter":" 1 section","comments":null,"startOffset":13035,"endOffset":13041,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260146Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b6bb78d64f27cd447ee50d634f41cbf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":412}],"sectionNumber":6824,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260148Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7dc662d30fe24a31b0b632188558692e","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49745,"y":715.58},"width":12.040009,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":616,"endOffset":618,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860636Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"871dd3ef6c0235e6f7390d8b9fcdf1e2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":250}],"sectionNumber":6662,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260157Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"940b6dcdefb9d53f136b947c6ece7933","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":642}],"sectionNumber":7054,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260161Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"431edec5f0d58894f231191ec6479d24","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":452}],"sectionNumber":6864,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260162Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70d170702fd761775fbcde086135710d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":589}],"sectionNumber":7001,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260168Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d094601a5c2134b0a5cc552679b9df56","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":405}],"sectionNumber":6817,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260166Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30e1be8a258bab07b60270d0bce542ea","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":258}],"sectionNumber":6670,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260177Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8aaf7a32ba4406a80c76a5e00511eb0c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":211}],"sectionNumber":6623,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260179Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a33f1b513418ee7aef61de75368fece","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":469}],"sectionNumber":6881,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260189Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae1c78e96ab76e97713ed6984104c7d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":287}],"sectionNumber":6699,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260187Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b816f1b5abd542bd33a7fcbdaf848815","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":127}],"sectionNumber":6539,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260192Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81a086f6b33397bbbd4dcf4cb12bc740","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":7}],"sectionNumber":6419,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260201Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787424Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e2412f0d5d99e6741583c8bb80e50cc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":326}],"sectionNumber":6738,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260204Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0db326d67206b68c3461c5777f958794","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":377}],"sectionNumber":6789,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260207Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42fc1500d9907978c55871cb376e319e","type":"PII","value":"Louis","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.87515,"y":524.15},"width":21.510986,"height":10.0905,"page":605}],"sectionNumber":6057,"textBefore":"Chemical Company, St ","textAfter":", Missouri, USA","comments":null,"startOffset":141,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787307Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ebef08a9ed95a816f362d56c549e1acc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":518}],"sectionNumber":6930,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260205Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"668404f78a5e3c8952d5e1146cf7db31","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":407}],"sectionNumber":6819,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260208Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5daa513daa8fe06abd32aa79f54db26","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":121}],"sectionNumber":6533,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26021Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2aeb039709d1e98e7ccac599947cfa3f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":226}],"sectionNumber":6638,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260214Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40d94fbd5c34a8545b47422e92dd5a40","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":201}],"sectionNumber":6613,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260216Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff8fdb90259869b8ccc2be349232c994","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":354}],"sectionNumber":6766,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260217Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fffebdf61aaa09dd7095261f81c0b15b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.05502,"y":114.77997},"width":29.935028,"height":10.0905,"page":261}],"sectionNumber":3027,"textBefore":"Final ","textAfter":": 10 mL/kg","comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260219Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42e73792afc60bf4457fe5d973b5aaf6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":132}],"sectionNumber":6544,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260223Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9844ec3e8c957400a92f02fe0d123f3c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":425}],"sectionNumber":6837,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260224Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"386946de4054c0d5589f770baa31f81e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":522}],"sectionNumber":6934,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260227Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2163853ad2e5f270bfa66678a5feda01","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.11424,"y":311.85004},"width":12.039993,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1531,"endOffset":1533,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860643Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecf8b0dc55c393d78a4bbc8120cabd4a","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":630.74},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2812,"textBefore":"Sokowloski A (2014) ","textAfter":" (CCR) Report","comments":null,"startOffset":118,"endOffset":124,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787005Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdfa48e919dd80df37032f88db80df78","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":545}],"sectionNumber":6957,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260232Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1abe7214dab9ff6ead61fe3945916927","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":393}],"sectionNumber":6805,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26024Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de4e2827605453f3153991c8807c3688","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":131}],"sectionNumber":6543,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260242Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88e877c0e9a0550d6a22c23fd096fc37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":264}],"sectionNumber":6676,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260241Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2544907f2580470ce00040a8bdc765d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":569}],"sectionNumber":6981,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260244Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fe3b6e3f81e8b3cc97a13a5bf9f1db3a","type":"PII","value":"1-3","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.22348,"y":550.31},"width":15.666519,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":null,"textAfter":null,"comments":null,"startOffset":700,"endOffset":703,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860644Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98214a6d956f26a7a9475631c447841f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":109}],"sectionNumber":6521,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260245Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"621075fa59b2156f18727e0c4da4eb87","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":537}],"sectionNumber":6949,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260248Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"928202382bfa4b586b82fd9dfb212c71","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":521}],"sectionNumber":6933,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26025Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"559bc1e6a3c569b419ba310cae3ed3c7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":256}],"sectionNumber":6668,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260252Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b0c534286fcf648b93dc36badc93e21a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":565}],"sectionNumber":6977,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260255Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8297016df216c6091a5673cca2f89860","type":"CBI_address","value":"Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":366.13647,"y":586.31},"width":88.99988,"height":11.017679,"page":166}],"sectionNumber":2173,"textBefore":"Special Diets Services, ","textAfter":".","comments":null,"startOffset":200,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618404Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786954Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3e2e024c5b83584db753c1a6d6dc0e7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":15}],"sectionNumber":6427,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260259Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"188f1951404e04b5b6018998cdf1b905","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.05502,"y":307.52997},"width":29.935028,"height":10.0905,"page":530}],"sectionNumber":5460,"textBefore":"Dose Level Final ","textAfter":" Route 2,4,6-TCP","comments":null,"startOffset":542,"endOffset":548,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260262Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c22ab4e7c701aea92942da3d2e7d626","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":503}],"sectionNumber":6915,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260264Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e81992d0ca81a6de14e9667f8222e622","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":674.3},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2811,"textBefore":"Sokolowski A (2012) ","textAfter":" (CCR) Report","comments":null,"startOffset":118,"endOffset":124,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787005Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e9e4fcf259009e5a69b4fa90dcf507","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":202}],"sectionNumber":6614,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260265Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787434Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1af874f9f1464841d833b88305987864","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.85,"y":318.33002},"width":22.977997,"height":10.0905,"page":306}],"sectionNumber":3330,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618528Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787051Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1bb80ac08879dbd51f5e9047ce328ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":499}],"sectionNumber":6911,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260267Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787434Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1670c5de7675bc7dd9eef66a565a1cab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":111}],"sectionNumber":6523,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260271Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a63f0891bee066be0457c69afafb8c2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":192}],"sectionNumber":6604,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260273Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"639edcc2b1364814ddff74eae8665153","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":107}],"sectionNumber":6519,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260275Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a9b01bffcc35c2bd11ecb19cc2e49a1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":267}],"sectionNumber":6679,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260278Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e897d72cffbeee8da47299b9bdb3df2f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":470}],"sectionNumber":6882,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26028Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"351dc1690827e3ad695032dc93ff1aa1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":511}],"sectionNumber":6923,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260281Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59fe958dd5f9038dd44987cd60b31c70","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":281}],"sectionNumber":6693,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260285Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16fe817f4978a357a9c5be854b70002f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":334}],"sectionNumber":6746,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260291Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d539cd5f662f0ca2d7c1e150ed2bc9fd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":65}],"sectionNumber":6477,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260294Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5bd6bcef0a498d0ccc26bb3387fb6dd8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":95}],"sectionNumber":6507,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260298Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f3690411b7f64a628d43921eb86ea03","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.83636,"y":330.45},"width":12.039978,"height":11.017679,"page":276}],"sectionNumber":3097,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3354,"endOffset":3356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860651Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae0427b0ce47b9ef2a616f3278b55c69","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":754.46},"width":33.001488,"height":10.526819,"page":474}],"sectionNumber":5053,"textBefore":"Bilirubin Ketones Leukocytes ","textAfter":" pH Protein","comments":null,"startOffset":4710,"endOffset":4716,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2603Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b3a89198762ae85c5b73ba8b7e24a3b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":482}],"sectionNumber":6894,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260301Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51009aa5898daa529df0a3c42e16bf67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":507}],"sectionNumber":6919,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260306Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6af999e9c5fc082adeaf3535d909e67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":20}],"sectionNumber":6432,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26031Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9314ca89469ca0b5aae80bb35aadf3c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":152}],"sectionNumber":6564,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260312Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b23c4b0dee94700d5f6ef37c9835e9e3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":286}],"sectionNumber":6698,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260315Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6de5d03ec4f4eb2d6bf37328660318ff","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":540}],"sectionNumber":6952,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260316Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcbe6960dce018a992a68da58ab1aad1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":466}],"sectionNumber":6878,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260317Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a4f28c60e1f71b3180a443fa258d8b5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":224}],"sectionNumber":6636,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260319Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e219fcfd666d61955258dd27f9434a35","type":"CBI_author","value":"Webbley K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.75046,"y":140.70001},"width":54.378387,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"14C studies (","textAfter":"; Williams D.,","comments":null,"startOffset":6019,"endOffset":6029,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257837Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e32ec2b45ae6dd83c821686aa5af4f2","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Data Gaps, Uncertainties and Inconsistencies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.2389,"y":615.02},"width":46.230835,"height":11.017679,"page":302}],"sectionNumber":3310,"textBefore":"2015; Shearer, 2015, ","textAfter":", 2015a)","comments":null,"startOffset":709,"endOffset":718,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618523Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787049Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ff4901d0a8e836033665db178fc4b48","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":346}],"sectionNumber":6758,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260324Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4579173a5b1db40cfcdf4aa4b2e3ef50","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":10}],"sectionNumber":6422,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260325Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59f7a6716b20b9397eb8a0b176bacc49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":388}],"sectionNumber":6800,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260328Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c95d4883dd1afcecbe8e35d39524df0b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":579}],"sectionNumber":6991,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26033Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787444Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d2d00b7fe5117f3beb9a3c48ec05b64","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":389}],"sectionNumber":6801,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260331Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787444Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cbdf095bd2e0b97884b5865c7a97c56","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":167}],"sectionNumber":6579,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260333Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3500cae0a550f4aa92f1cb6e2f0a5111","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":472.91},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2816,"textBefore":"Roth M (2012) ","textAfter":" (CCR) Report","comments":null,"startOffset":85,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787005Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ca463fa15a517a9587896efd1e43789","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.15,"y":553.55},"width":25.435028,"height":10.0905,"page":402}],"sectionNumber":4366,"textBefore":"(2010). Report No. ","textAfter":" C57852. Syngenta","comments":null,"startOffset":209,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787127Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a2c6831b57d2493cc9f751b5f1373d3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":293}],"sectionNumber":6705,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260346Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eda2762fdd7dba7c85ecdb787c89ea8d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":423}],"sectionNumber":6835,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260344Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be4d895a123561ed28ef057d04c62241","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.09137,"y":628.34},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":462,"endOffset":464,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860657Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6621084c74c03bef6b10c403c67659f","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":740.9},"width":27.970726,"height":11.017679,"page":376}],"sectionNumber":4122,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":233,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787111Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"910180e7fce9cf1a3f283bdc1a6113a7","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal assignment and treatment:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.23303,"y":637.34},"width":27.970703,"height":11.017679,"page":436}],"sectionNumber":4659,"textBefore":"the New Zealand ","textAfter":" rabbit. Dose","comments":null,"startOffset":795,"endOffset":800,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787151Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62162f6648f0b4efb859ab408ed8aab9","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.4. GENOTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":505.8379,"y":618.02},"width":26.513428,"height":11.017679,"page":232}],"sectionNumber":2819,"textBefore":"responses in the ","textAfter":" tests and","comments":null,"startOffset":613,"endOffset":617,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618449Z"},{"analysisNumber":3,"type":"CHANGED","dateTime":"2022-05-11T14:03:58.164701Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39f149e0f5cb547e8633e4313222da63","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":92}],"sectionNumber":6504,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26036Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9efa04de2fc1c0db2d17e4705058b9f6","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.78192,"y":578.39},"width":30.863281,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"study (Kitchin and ","textAfter":", 1989). To","comments":null,"startOffset":863,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258877Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"346ea61d1243e9b1c6a7e419cd3908be","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.31073,"y":506.03},"width":36.37213,"height":11.017679,"page":626}],"sectionNumber":6258,"textBefore":"is presented in ","textAfter":" 1, Level","comments":null,"startOffset":121,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260365Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ebfb40c8a300cc344782ea0592ab112","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":512}],"sectionNumber":6924,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260366Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d579b5846e5ae96f23851e94e39d68f1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":626}],"sectionNumber":7038,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260367Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3137b767ae472fb986f45fddf907d80e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":225}],"sectionNumber":6637,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26037Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9728e73338a149216fd3968d90e311ad","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":257}],"sectionNumber":6669,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260371Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"594aa23bd13ecebdedcd9c6da3ca8a27","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Administration of SYN545974, once daily, by oral gavage, to pregnant New Zealand White rabbits","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.66202,"y":753.26},"width":29.770264,"height":10.929359,"page":377}],"sectionNumber":4124,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787113Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05cb3848c5646accc291802206e5e221","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.59,"y":534.83},"width":29.934998,"height":10.0905,"page":436}],"sectionNumber":4660,"textBefore":null,"textAfter":" (mL/kg)","comments":null,"startOffset":81,"endOffset":87,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260373Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"156871b0b90d55f473c26663637c02e3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":446}],"sectionNumber":6858,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260376Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c218f0ea2d7a6e6c31c25a213eedd698","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":610}],"sectionNumber":7022,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260384Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"540d0638580f963dda95527d41cbd0ca","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":490}],"sectionNumber":6902,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260388Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aaf8da1c84c62f966b11cd095e759160","type":"PII","value":"Anderson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.95,"y":528.59},"width":35.964966,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"B.H; Resnik M.A; ","textAfter":" B; Zeiger","comments":null,"startOffset":333,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78722Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89c8694efd71b75641736bfe56056127","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":421}],"sectionNumber":6833,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26039Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e36bbf12162e1b12b7ac80d660560f71","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":56}],"sectionNumber":6468,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260391Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f41df567f9dadc9110c2fc9f55c68cc9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":37}],"sectionNumber":6449,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260393Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25343704dcc3bd9962a652323079357d","type":"PII","value":"(3/1)","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":463.42505,"y":100.02002},"width":22.30722,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1835,"endOffset":1840,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860662Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b730ee1e43d55869c7be781bb1c46e72","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":175}],"sectionNumber":6587,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260397Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d716e64362279d804d54de57842db206","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":28}],"sectionNumber":6440,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260399Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a4f841da136070422622beae6b5b25bd","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.93,"y":96.064026},"width":22.977997,"height":10.0905,"page":239}],"sectionNumber":2851,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618457Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787007Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00fa97bb10517bca4a9e9e86dad60ea6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":581}],"sectionNumber":6993,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2604Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18ca5f759eefcfcda22e51caed5a00b7","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.958244,"y":501.59},"width":12.040001,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":186,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860663Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57b5f2efb9a03814ce807cb73136c979","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.064,"y":571.07},"width":29.935028,"height":10.0905,"page":257}],"sectionNumber":2970,"textBefore":"Final ","textAfter":": 20 mL/kg","comments":null,"startOffset":47,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260405Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b388ed2dacad2549032d60b669d459da","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":249}],"sectionNumber":6661,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260406Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a5d8d04950ce1d65acc0dd5579efd3a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":16}],"sectionNumber":6428,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260409Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34cc4dadcf62bc9ba032e920953a83b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":534}],"sectionNumber":6946,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260411Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b0d67ba8d9a0610d29aedd34ae5dabaf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":551}],"sectionNumber":6963,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260418Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93d5117c1f682fdfb389c3021bae1af5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":427}],"sectionNumber":6839,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260417Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e788cb281f9afe2bfc19500442eacc94","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":457}],"sectionNumber":6869,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26042Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93d5a579adebf628d5a66c6d38b17269","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":213}],"sectionNumber":6625,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260425Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c902e0f3fcb3ba25f495120aa95fe9d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.2},"width":34.19667,"height":10.44714,"page":136}],"sectionNumber":6548,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260426Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f4b377d487e89ce39e5061c9c80c3bd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":373}],"sectionNumber":6785,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260427Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"723d0d5f34518816a52bd95348e625ea","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.66202,"y":702.62},"width":29.770264,"height":10.929359,"page":370}],"sectionNumber":4067,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":2466,"endOffset":2471,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787108Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1873197cc3bdb56f8c15ffb5379707aa","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":588}],"sectionNumber":7000,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260429Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74ae30539bfdbd164fffe1a4725f055c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":549}],"sectionNumber":6961,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26043Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00d03373f17b2e7de5abb64677a49955","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":497.71194,"y":653.66},"width":11.918549,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":324,"endOffset":326,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860666Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75bdb10c9cd86e103e5ee6bb85264996","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":138}],"sectionNumber":6550,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260433Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8576261f3509065098def48c8a2d9e96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":253}],"sectionNumber":6665,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260437Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4565701103d3fd8c16162b6c3cb30c65","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":462}],"sectionNumber":6874,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260435Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"930e6033d64c9c4a80e7fc8baead0531","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":232}],"sectionNumber":6644,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26044Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d0b25e16f730f87a6de002734550c3a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":627}],"sectionNumber":7039,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260441Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3526624f3b139ac6ae6231c828fb38b3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":607}],"sectionNumber":7019,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260443Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e5fbf3439667f26a3c6488ad3a5c48d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":502}],"sectionNumber":6914,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260456Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4be86572b3047d127948f1a2ff4dbf15","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":68}],"sectionNumber":6480,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260462Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c04312c0f449efb89028e519cada84ef","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":380}],"sectionNumber":6792,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260463Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0cceb9fa670bc1984fa7fae27cead0a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":217}],"sectionNumber":6629,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260468Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3d88cb1fbd7c5508a50740789ef503b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":623}],"sectionNumber":7035,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260471Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82101743f7c8d4fd33fd890f1d63ff55","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":532}],"sectionNumber":6944,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260481Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb741b2715ac1bae28a0f38505af0a34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":252}],"sectionNumber":6664,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260479Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01605b0d0e3afc2c4193a1ccd7acd9ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":363}],"sectionNumber":6775,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260484Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"559dedc6ef3c550c64b0558fff71453d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":562}],"sectionNumber":6974,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260482Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da9451c9e458e52b64572e4fe58b0f90","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":576}],"sectionNumber":6988,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260494Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c520a180c6a10fc52c85065efb9d41f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":183}],"sectionNumber":6595,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260492Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a8b582ff52e7eabc056347686016050","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.97,"y":613.58},"width":22.978027,"height":10.0905,"page":177}],"sectionNumber":2335,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786966Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d9431c872dabebdb39a7a794af4a49f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":600}],"sectionNumber":7012,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260496Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50462de5aae539ea8d3fde7e01540518","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"In conclusion, it can be stated that there were DNA strandbreaks observed in stomach, colon, liver,\nkidney, urinary bladder, lung and brain following oral administration of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":347.69205,"y":579.71},"width":30.772034,"height":10.018499,"page":569}],"sectionNumber":5821,"textBefore":"Dose Levels Final ","textAfter":" Preliminary: Dose-sighting","comments":null,"startOffset":265,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260498Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1871d9b495eb3b4419ec6a940259014c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":312}],"sectionNumber":6724,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260503Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c85500fc08fa17ee4fa1b275e319576a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":528}],"sectionNumber":6940,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260504Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab2311f40d7104d22d91b0e129b7651a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":580}],"sectionNumber":6992,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260506Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d014067f82c72815bfc7877be9ba166","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":394}],"sectionNumber":6806,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260507Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b78638d062d8a370a4c7034ec09a10c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":386}],"sectionNumber":6798,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260509Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7708ba7a6de0b3ecf1824471f1d83f9b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":285}],"sectionNumber":6697,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260512Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2eb42d9e0bbe19f9f001021b03b43f0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":191}],"sectionNumber":6603,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260513Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d07f35865f5dc6355e0524741675e399","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":633}],"sectionNumber":7045,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260515Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2406c5490f1a0d43e31acac9a7dbf48e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":181}],"sectionNumber":6593,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260517Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65e6ad1e0afc67ae037ffbb14c0c84c4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":416}],"sectionNumber":6828,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26052Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d3727926157a756b02f84788615af3d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":448}],"sectionNumber":6860,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260522Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ed888f33c4b0917794b6c058975e6d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":75}],"sectionNumber":6487,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260526Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd6f917f58dcaa156f3df6275947bb99","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":547}],"sectionNumber":6959,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26053Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4318977e6790ef1151400a55704a6ff6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":55}],"sectionNumber":6467,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260531Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6306029efe1faf7507e0bb05cacc1a96","type":"CBI_author","value":"Punler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.38892,"y":497.87},"width":21.80754,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":"Data extracted from ","textAfter":" and Harris","comments":null,"startOffset":12365,"endOffset":12371,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618211Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.25784Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3eaabe3d12a2ba3542f9fab83fb6f3d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":83}],"sectionNumber":6495,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260539Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9de74a0c054d390b80ce3721dbccc820","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":541}],"sectionNumber":6953,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260544Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f0889dbc68e52dcf52262cf1dc64645","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.53204,"y":561.83},"width":30.772034,"height":10.018499,"page":466}],"sectionNumber":5009,"textBefore":"Final ","textAfter":": 10mL/kg","comments":null,"startOffset":29,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260545Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4050073cf237cc43cfa956a9314e000","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":376}],"sectionNumber":6788,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260548Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"799bd99f202ef769f41edfcbd6380136","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":171}],"sectionNumber":6583,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260553Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e513af64094e0946e7fb03a20ddd6c1e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":542}],"sectionNumber":6954,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260558Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d84dbd28cbfa90d6cf0b607cf4660061","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.69205,"y":604.22},"width":30.772034,"height":10.018499,"page":530}],"sectionNumber":5456,"textBefore":"Final ","textAfter":": 0.1 mL/","comments":null,"startOffset":39,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260556Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5b46fec50e78d9bc36aa022617291de","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":561}],"sectionNumber":6973,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260559Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a63489f3741a03288cb32956e5f79b02","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.4. GENOTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":118.58,"y":668.66},"width":26.513443,"height":11.017679,"page":232}],"sectionNumber":2819,"textBefore":"two in vitro ","textAfter":" tests (reverse","comments":null,"startOffset":139,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"},{"analysisNumber":3,"type":"CHANGED","dateTime":"2022-05-11T14:03:58.164705Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb5ecd67a413b8b42de93d70c7f620d7","type":"PII","value":"10-15","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.24582,"y":160.02002},"width":26.864166,"height":11.017679,"page":251}],"sectionNumber":2952,"textBefore":null,"textAfter":null,"comments":null,"startOffset":713,"endOffset":718,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618462Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78701Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b46500b414b2208565dec9a4e9a37c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":531}],"sectionNumber":6943,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260564Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69b776173ca4328ce00dee3b3908af74","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":450}],"sectionNumber":6862,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260568Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5b92b5a70b2089cdd7d9f29faaeef2d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":9}],"sectionNumber":6421,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260565Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72edb82bdecc09556ba7d5a140ff91ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":571}],"sectionNumber":6983,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260569Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"568ac1619aec449762a547ec1c3645cd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":536}],"sectionNumber":6948,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260573Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7400a278da8e2777b8d8f971dbd0d67c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":403}],"sectionNumber":6815,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260571Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"838a08f98b99f09080ffbd7156168bf7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":149}],"sectionNumber":6561,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260575Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a21b82701426c2d46354fbd37fd1cc7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":320}],"sectionNumber":6732,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260574Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19c261e09981e47741c664a8d10574c0","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.25,"y":241.14001},"width":22.977997,"height":10.0905,"page":261}],"sectionNumber":3024,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":192,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618467Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787014Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f20d488252a427c1a1a36e323ba58fb","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.71,"y":637.34},"width":25.435028,"height":10.0905,"page":402}],"sectionNumber":4364,"textBefore":"(2009). Report No. ","textAfter":" 1266902. Syngenta","comments":null,"startOffset":114,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787127Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b49e3a5d62b99c05fe36bf41067a55ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":113}],"sectionNumber":6525,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260591Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf11c77454e54819776dea000ead0fb6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":345}],"sectionNumber":6757,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260593Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb0674c374fddfd6393015df384351bd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":199}],"sectionNumber":6611,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260594Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee88bb1c9b380c97fa52431de3d9eef6","type":"PII","value":"Anderson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.333,"y":99.900024},"width":43.592285,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"B, Resnick M, ","textAfter":" B and","comments":null,"startOffset":2033,"endOffset":2041,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a17ffbada382324fb2cb5151f2d2c02","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":509}],"sectionNumber":6921,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260599Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27b66d8c9cdde7ab5ed27568e7b1d0ed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":39}],"sectionNumber":6451,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260605Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e42891ef82db33862eb959dbefdbe1d","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.33,"y":247.62},"width":37.99901,"height":10.0905,"page":617}],"sectionNumber":6208,"textBefore":"study (Shearer and ","textAfter":", 2015)","comments":null,"startOffset":167,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787317Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b02e05a632bed065d905ada5853263f5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":608}],"sectionNumber":7020,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260608Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95e17944e44ed0602ae54f747e3462c6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":548}],"sectionNumber":6960,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260611Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09535c05af483f857938a760af8ce380","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":161}],"sectionNumber":6573,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260615Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e8674f46442add48a5586c4dc0bcc1d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":266}],"sectionNumber":6678,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260614Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9466b570d421f662bd5225dd0c97bb2c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":84}],"sectionNumber":6496,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260621Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b020bd9c5f6340e8e6a9e4006782ab49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":64}],"sectionNumber":6476,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260626Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2bfed864f743ddb9d0962209754ca0d4","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.45847,"y":525.83},"width":35.22403,"height":11.017679,"page":361}],"sectionNumber":3954,"textBefore":"report K-CA 5.6.2/06 ","textAfter":" (2015b)). Dose","comments":null,"startOffset":2197,"endOffset":2204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258346Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60f4f49a9075c0955d1ad2915b499204","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":214}],"sectionNumber":6626,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260628Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a993983452d2617b64bc8303298da5ec","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":178}],"sectionNumber":6590,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26063Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10634f483d3a824d7d4a241cabce4653","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":435}],"sectionNumber":6847,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260631Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5276dc9affaa6506e6c195d60cde460f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":444}],"sectionNumber":6856,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260633Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c807bbdd84e46124fc223d6ce824ce1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":463}],"sectionNumber":6875,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260634Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b71c8f2c65d3bfdfbc41250abdd9864","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":471}],"sectionNumber":6883,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26064Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ff0b863ea1ca0f277783439b510568c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":306}],"sectionNumber":6718,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260638Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fba40250992c8b31cf21032e2cd6ad7e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":613}],"sectionNumber":7025,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260641Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e59cffeb4595451d6d9794e10fc33083","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.58461,"y":289.28998},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2493,"endOffset":2495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860678Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b7bbc69ee8460fe32639292936950e56","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":103.69344,"y":329.73},"width":47.754387,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"repeat administration (","textAfter":", Harris J.,","comments":null,"startOffset":4683,"endOffset":4692,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257828Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f145ff36f99cd49ff9d2906b610bac6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":374}],"sectionNumber":6786,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260645Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1008ff481949153d5f8764229381efc6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":176}],"sectionNumber":6588,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260646Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfe4fe9473bd773d7c264fd67a015a07","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":294}],"sectionNumber":6706,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260648Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"192a252f3b600916dfdc823b4ba021de","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":301}],"sectionNumber":6713,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260654Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a5ba175ae7b9efec45ca862b3fcd8ed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":344}],"sectionNumber":6756,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260655Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e275db579bcebbf6b5434449e1531cd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":114}],"sectionNumber":6526,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260657Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a0adba66a4ac2581aa007ccda7c09ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":67}],"sectionNumber":6479,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260661Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb38797e7c15fdc2ae39563052706c67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":455}],"sectionNumber":6867,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ce26e906ae33340d3c4171188d4c437","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.16673,"y":330.45},"width":12.040009,"height":11.017679,"page":276}],"sectionNumber":3097,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3313,"endOffset":3315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.86068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af63604ba39645f12e14144f63049bf7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":303}],"sectionNumber":6715,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260663Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2fb23b8901d04c1bd050f5aacae5a85","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":240}],"sectionNumber":6652,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260665Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21ef172e157678178c80b59343730e89","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":629}],"sectionNumber":7041,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26067Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f542f994599e71aee5d4437388c6b161","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":219}],"sectionNumber":6631,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260674Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"744e52dd444829ef885096a510bcad2f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: In conclusion, it can be stated that there were DNA strandbreaks observed in stomach, colon, liver,\nkidney, urinary bladder, lung and brain following oral administration of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.57202,"y":230.94},"width":30.772034,"height":10.018499,"page":568}],"sectionNumber":5816,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":93,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260679Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f75669a503da443d48b4c162d11f3f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":242}],"sectionNumber":6654,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260681Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b9f666371928992351a212746a72984c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":420}],"sectionNumber":6832,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260682Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f19f7e9ffe888ae15d800faecddaf4f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":58}],"sectionNumber":6470,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260687Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787498Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99c24ad0e4ae4c5fc5ee2dceb9fc3a87","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":398}],"sectionNumber":6810,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260693Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32b9ffaf207c8593d455c2ef0fd40204","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":229}],"sectionNumber":6641,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260691Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f13ad4d2867cec99490a925ace2a8f8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":481}],"sectionNumber":6893,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26069Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787498Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8498086fd5c6648ddd67ec87862f8f0e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":379}],"sectionNumber":6791,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260695Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3564a9aed8c7d6c66cbf551d9477b347","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":204}],"sectionNumber":6616,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260701Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4405d7248743135b8ffc61ebf17d9bd3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":458}],"sectionNumber":6870,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260703Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"649f9f21bbf74f1c6f060ee15351d1d1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":99}],"sectionNumber":6511,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260706Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb9b3b45ab031fcc8a29107375175bcd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":61}],"sectionNumber":6473,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260712Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f588c1137380f0d63a377de099e510ef","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":480}],"sectionNumber":6892,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260718Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a83a66775f72833319cb9e099c2b5b8b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-7: Intergroup comparison of selected urine parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.224,"y":461.63},"width":29.934998,"height":10.0905,"page":195}],"sectionNumber":2501,"textBefore":"pH ","textAfter":null,"comments":null,"startOffset":3,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26072Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4a81215c1951ba6315508eeb6dcf5a7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":144}],"sectionNumber":6556,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260725Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c8f5d035c6637db51966aedc359c57b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":333}],"sectionNumber":6745,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260727Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4b4341f23fcaa85e662fc85653abf93","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":459.35},"width":22.978004,"height":10.0905,"page":402}],"sectionNumber":4368,"textBefore":"in New Zealand ","textAfter":" Rabbits","comments":null,"startOffset":95,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787128Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80f2b64229c890ea08edb528621959a5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":284}],"sectionNumber":6696,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260729Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"442c90ce2b8dd070771f48056bb21949","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":321}],"sectionNumber":6733,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260732Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e958c31d96dc81d137cd53dd3e486b13","type":"CBI_author","value":"Blum","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.50803,"y":715.58},"width":20.953003,"height":10.0905,"page":511}],"sectionNumber":5299,"textBefore":"Juhl U; ","textAfter":" K; Witte","comments":null,"startOffset":95,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"190d0367e6e3c829a3765e7e6f5fd90a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":616}],"sectionNumber":7028,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260738Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92f388c716f16970885b58588a728908","type":"PII","value":"10-13","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.27878,"y":690.86},"width":26.831207,"height":11.017679,"page":463}],"sectionNumber":4999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":717,"endOffset":722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787166Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"923410e47d20e487842733ec63f05c76","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.738,"y":188.22003},"width":30.898003,"height":10.018499,"page":389}],"sectionNumber":4260,"textBefore":"Dose ","textAfter":" (mL/kg bw)","comments":null,"startOffset":5,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260745Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6636c481d66da49d9f1c061f20041c47","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":260}],"sectionNumber":6672,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260746Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fad7d340fdd34ca5d457997ef396196","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":599}],"sectionNumber":7011,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260747Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c2458e1a550160fd6ac5c2a464576cd","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":538.43},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2814,"textBefore":"Wollny H-E (2013) ","textAfter":" (CCR) Report","comments":null,"startOffset":164,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618452Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787004Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82af4d4d8a434ef5741dd5d8ed2d9b5d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":272}],"sectionNumber":6684,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26075Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9a7d0cdbf56ca8a84abdab663f51071","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":472}],"sectionNumber":6884,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260755Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d97a11fa5bd2327552c1ba4e1267d20e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":66}],"sectionNumber":6478,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260767Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad1a8da764f1766a5226db566cf5180e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":173}],"sectionNumber":6585,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260768Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da038ff5e83a6cf528bf876452a78493","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.082,"y":402.09},"width":22.978027,"height":10.0905,"page":370}],"sectionNumber":4069,"textBefore":"New Zealand ","textAfter":null,"comments":null,"startOffset":48,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787107Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c7fce92df031ddd54c316688383decf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":228}],"sectionNumber":6640,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260773Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a60fd9ebb28b61914ac09287ad1dcdba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":516}],"sectionNumber":6928,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260775Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89875356695c8abadbcd3db98cc7b275","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":409}],"sectionNumber":6821,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260776Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d28ea014a8f01888c57a07d7bb378cf6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":197}],"sectionNumber":6609,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260777Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"579b2bf4bef9a848e5c0beabdcc08e26","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":103}],"sectionNumber":6515,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260779Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"004bde3113747a98b2c506a048e772e7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":464}],"sectionNumber":6876,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26078Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8da35558b845f703e2466d6073cb91a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":493}],"sectionNumber":6905,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260783Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61e1097d36d2a6c4345852ff3373b66e","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.56847,"y":112.619995},"width":11.918564,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":null,"textAfter":null,"comments":null,"startOffset":316,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860687Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11a7bf0dc606a789f00fdd97b1d77299","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":42}],"sectionNumber":6454,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260789Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6be7a3e9d727e318e96a179a7a2348f4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":428}],"sectionNumber":6840,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260791Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5efc345b6858c278b490316bfe617f5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":65.424,"y":455.27},"width":29.934998,"height":10.0905,"page":433}],"sectionNumber":4635,"textBefore":null,"textAfter":" [mL]","comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260794Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0291b661af1bf5c99523d9dff12aa0d9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":157}],"sectionNumber":6569,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260797Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787513Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3f5d72daafdb541a3074eb051e764e2","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.85263,"y":690.74},"width":40.869904,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"Report: K-CA 5.1.1/06 ","textAfter":" and Harris","comments":null,"startOffset":3184,"endOffset":3193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257932Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787513Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93a9c235141848ee9229e1625f574f59","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":57}],"sectionNumber":6469,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259751Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36011b08a08c2433a47066bca399c1fb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":410}],"sectionNumber":6822,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259755Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"424e94c9f3a58088da2aa9dca13b8c20","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":487}],"sectionNumber":6899,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259757Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d51ac2d630ab058acecdaf19686c24a3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":510}],"sectionNumber":6922,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259759Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2594b278f7d95f69204e7a7d1fa5d36b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":279}],"sectionNumber":6691,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259762Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3d7c6f2cfdfbb77675930f701c75fb0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":424}],"sectionNumber":6836,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259764Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db0a931e675f132e3b6f3842dbdc1ccb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":43}],"sectionNumber":6455,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259765Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a2246c16c14f88b112b99f85c7ef97f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":391}],"sectionNumber":6803,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259767Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a64125d40f0b54ac133e7fbf37d34677","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":91}],"sectionNumber":6503,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259768Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"768a444d72f48a547538dd5384973a1b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":591}],"sectionNumber":7003,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259771Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6743e6531fe4294f5321aef3778872d7","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.44463,"y":515.75},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1013,"endOffset":1015,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860689Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"028a6511810ea9a9adb3c549cfa907f0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":239}],"sectionNumber":6651,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25978Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0df8edd827bc3c11d65b5a3ee0773335","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":595}],"sectionNumber":7007,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259787Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"250776d4a6608e3174af8091d1b3d947","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":23}],"sectionNumber":6435,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259789Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"91b052ff716536b1bce4028233267f34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":557}],"sectionNumber":6969,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259792Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a509dd1d84e4a6ee1f4dfc5245e0062","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":606}],"sectionNumber":7018,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259797Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf4e1b23a16c84d70d769c3020c55364","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":203}],"sectionNumber":6615,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259798Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f5de2224615eb7dd7e40ac98492aec51","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":525}],"sectionNumber":6937,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259799Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8d6ffa0d4c8de920c60b73c53722cbd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":209}],"sectionNumber":6621,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259801Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51089ef83b4e2e6f38b9a27fcbd22b61","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":593}],"sectionNumber":7005,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259804Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d976a381ef8244e062f408078626d396","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":474}],"sectionNumber":6886,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259805Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"77768dfe9cefc68a51144d1e33291355","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.60202,"y":731.18},"width":22.978027,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"New Zealand ","textAfter":" rabbit","comments":null,"startOffset":31,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61836Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78692Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89f9c268eaebda0ede70b13f4d9fd739","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":578}],"sectionNumber":6990,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259807Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcc680ec5d165278c05aaefc4b17b796","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":478}],"sectionNumber":6890,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259809Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c24af818afe94d3a1a21ac264529ddab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":125}],"sectionNumber":6537,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259814Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"479b5bf6cace83f5d2f530daea981261","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":22}],"sectionNumber":6434,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259817Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1e17fb2575b1d87de643c667ca5605f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":459}],"sectionNumber":6871,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259819Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6289c6ed43b14c12229ad6d24677da7a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":355}],"sectionNumber":6767,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259825Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6db5cfd89ef1c4d97e9dafde7e0db7f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":180}],"sectionNumber":6592,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259826Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53f893cdbcb79300285de5684e960069","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":596}],"sectionNumber":7008,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259833Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13de90d03aafabc4df6b58136875b454","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":489}],"sectionNumber":6901,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259839Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4619b83aa1830ee26c4773f19e5af681","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":645}],"sectionNumber":7057,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259842Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"000097d8be491242e9050f00305c2fcf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":307}],"sectionNumber":6719,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259844Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6782f88ed7528a0327343937ce1f49c","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.035,"y":698.06},"width":10.062988,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":null,"textAfter":null,"comments":null,"startOffset":320,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860693Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ac859ddbf766e9daddd06c2cea533f58","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":309}],"sectionNumber":6721,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259849Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9a7765a7bef9d14d07ab9e647fb1519","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":134}],"sectionNumber":6546,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259851Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed656a0c6829d80fda1acb2d84695ccd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":395}],"sectionNumber":6807,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259855Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"743164b7e33c0453608849d1b463837a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":237}],"sectionNumber":6649,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259853Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e87b5287932a9a68ba202ebf73a3fdaa","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.25,"y":667.34},"width":22.977997,"height":10.0905,"page":93}],"sectionNumber":1355,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":68,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618293Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa8064085be8678d15ed659d74920487","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":577}],"sectionNumber":6989,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25986Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f59c0030f7a827d0721bcdee67b1376","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":102}],"sectionNumber":6514,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259862Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17f4fbb6c7374bd8e2f0db88f44545d9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":413}],"sectionNumber":6825,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259868Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69a72028206248fd47652df29aff81b8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":270}],"sectionNumber":6682,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259869Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b25935d06de0a4e5c8a6b923986dff8","type":"PII","value":"(50","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Immunological assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.79553,"y":627.02},"width":15.627991,"height":11.017679,"page":599}],"sectionNumber":6026,"textBefore":null,"textAfter":null,"comments":null,"startOffset":909,"endOffset":912,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb3f4279baf3efcdf3c46e974e13ab31","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":126}],"sectionNumber":6538,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259874Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7278458e6dc30d826402d9765c89e49e","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.169,"y":553.55},"width":25.317993,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":"(2014a). Report No. ","textAfter":" 1602600. Syngenta","comments":null,"startOffset":99,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787159Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"964697f738e4d142584ab6d24e94525d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.89502,"y":598.46},"width":29.935028,"height":10.0905,"page":257}],"sectionNumber":2969,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259878Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2d803dd6bcfd1d4726c0417648df0ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":338}],"sectionNumber":6750,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25988Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cc8480dbd5a2d6ca3a586c098ae2e7a","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.16483,"y":402.57},"width":12.039978,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1826,"endOffset":1828,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4fd88a34dc8e21d7050d0bc48a037db0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":530}],"sectionNumber":6942,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259883Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f895450711338c10a2804f1ceedf6e5","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.32172,"y":549.11},"width":26.62384,"height":11.017679,"page":522}],"sectionNumber":5403,"textBefore":"as described by ","textAfter":" (Ames et.","comments":null,"startOffset":370,"endOffset":374,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258673Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b14e13baad50985df3118f909e70d8da","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":76}],"sectionNumber":6488,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259884Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"119c63a749fcca3e42afd2dab53ba099","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":299}],"sectionNumber":6711,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259886Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9b0f12a8b726de55a95fb7800eb75af","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":89}],"sectionNumber":6501,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259888Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b83edf1da5ca37d4aa335c0b14c0a549","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7. NEUROTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":331.01437,"y":753.5},"width":34.517456,"height":11.017679,"page":387}],"sectionNumber":4248,"textBefore":"in rat (","textAfter":" and Robertson","comments":null,"startOffset":642,"endOffset":649,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258394Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c817eff70cdf2c4f12ed76e74aa27048","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":205.22832,"y":487.67},"width":12.040009,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5777,"endOffset":5779,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860697Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44255823e9ce4604eb3e7cac9171d8cc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":150}],"sectionNumber":6562,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259889Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10b71f70b4c0d610fc572d578134621a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":375}],"sectionNumber":6787,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259891Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24b320f05e2a817a43a66e91c3120a38","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":519}],"sectionNumber":6931,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259895Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da13abf22e86ed7ab0b1aa146218c5fd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":187}],"sectionNumber":6599,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259894Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28c4548713ed7a2f85476b1b373e31c8","type":"CBI_author","value":"Williams D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.3554,"y":140.70001},"width":54.985596,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"studies (Webbley K.; ","textAfter":", 2015; Hutton","comments":null,"startOffset":6031,"endOffset":6042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257826Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78738Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"025d02ebb5d457543bcb578da3ec2620","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":372}],"sectionNumber":6784,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259898Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e80e81a24541c0415271f76c7e3fdc5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":609}],"sectionNumber":7021,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259901Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d9d40f5bc15bf04d1dfeee35fe72936","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":305}],"sectionNumber":6717,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259904Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84cb4802f6a2903e224133a927f60e7e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":324}],"sectionNumber":6736,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259905Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5dbcf4f4bed400b6c750687374533e5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":119}],"sectionNumber":6531,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259907Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"191a437bd8f3e0c0da8eaa313dccac28","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":347.21204,"y":248.70001},"width":30.772034,"height":10.018499,"page":565}],"sectionNumber":5789,"textBefore":"Levels (mg/kg) Final ","textAfter":" Preliminary: Not","comments":null,"startOffset":89,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259909Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdea9755a40515292d392376bb5d5e25","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 is classified as “non phototoxic”.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.85,"y":628.46},"width":22.977997,"height":10.0905,"page":157}],"sectionNumber":2115,"textBefore":null,"textAfter":" solid","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1eaf83297b26d62fe5a494a3bd1f8251","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.9243,"y":314.61},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2295,"endOffset":2297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7b4e38313ca5ac276758942149b8c29","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":153}],"sectionNumber":6565,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259919Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c273735ba3c84ca0fdb72aabcf0d0fd3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":614}],"sectionNumber":7026,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259922Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbb0aecef6f2f1207ae60c73ccec1182","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":296}],"sectionNumber":6708,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259925Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51f296348bec65abdd5209fbfffc7295","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":6}],"sectionNumber":6418,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259923Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59e219709eb7ce5fe8ebdd753880b986","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":442}],"sectionNumber":6854,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259931Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ab4849f8dc1c643a3090dac813a40a5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":184}],"sectionNumber":6596,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259935Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d38e75bfaeed8ef9afe31e1cb3093ab8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":554}],"sectionNumber":6966,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259937Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2cfc3ea3e42400d06d7a8c73759313c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":194}],"sectionNumber":6606,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259946Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b14e600230098d23e2685ffbf3d7938","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.52434,"y":384.81},"width":27.860306,"height":11.017679,"page":150}],"sectionNumber":2051,"textBefore":"male New Zealand ","textAfter":" rabbits. The","comments":null,"startOffset":161,"endOffset":166,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c33561ac60c490b7198ee1bd5133aa5a","type":"CBI_address","value":"Indianapolis, IN, USA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":462.59},"width":101.82578,"height":11.017679,"page":320}],"sectionNumber":3400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3713,"endOffset":3734,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.8607Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"198e8e80144f6c55430ef9af8ce8efd3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":298}],"sectionNumber":6710,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259949Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a8158cc514b0fc1ad010f529554cefc8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":186}],"sectionNumber":6598,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259952Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f9c9c0b33f2f4a4f5695b97ffa2d876","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":86}],"sectionNumber":6498,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259954Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4f7e46f90150a1210506a6058640a7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":445}],"sectionNumber":6857,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259951Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d9af339998ab3383683c9c8ada5f5e4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":360}],"sectionNumber":6772,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259956Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"938c7a46d5be4ba89fc65cfc7948a1e4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.015,"y":142.26001},"width":29.935028,"height":10.0905,"page":261}],"sectionNumber":3026,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259957Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8866e0d962f4fb81b433ad86768f163a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":261}],"sectionNumber":6673,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259962Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a3376d04b66fd0465dcb8ea396028d3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":316}],"sectionNumber":6728,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259961Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4dbbd2836b36992184def5b7ccfadcc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":19}],"sectionNumber":6431,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259965Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e152c0c1379a3c341a401d2cacac2e4e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":369}],"sectionNumber":6781,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259964Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"999ea1dd254de327f6662d5f3ac60b93","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":51}],"sectionNumber":6463,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259969Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2038d992ce8cee5d05b40cdd1a1344ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":555}],"sectionNumber":6967,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259971Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12b531e271dc2e812af8777ef1d6a46a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":535}],"sectionNumber":6947,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259972Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"084b1f24dc6638e74ea0cdc141c3be7c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":145}],"sectionNumber":6557,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259975Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62c8351aced98b3cd294c1bb46466d0c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":231}],"sectionNumber":6643,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259973Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79085c26cbe50637f93e6722feb9243e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":220}],"sectionNumber":6632,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259982Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec2da3337a821838f708f63ee36ce7d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":453}],"sectionNumber":6865,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259993Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8835173b08a57cec815f7db6ec954e43","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.2},"width":34.19667,"height":10.44714,"page":205}],"sectionNumber":6617,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259997Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab75a1e85fee0f0a6df8fa6979f26433","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":236}],"sectionNumber":6648,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259999Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7eb2c63bd479693aada6610daae82414","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":304}],"sectionNumber":6716,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260003Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cdc9bc6f0feb270aca309ed5d7bfb96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":233}],"sectionNumber":6645,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260006Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"999570f79bec28725502fcd4fd31a772","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":415}],"sectionNumber":6827,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260005Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cdefcf1626e69c5a978eef726785385","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":513}],"sectionNumber":6925,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260008Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b528fde90d2b5573b3db42803f15563","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":558}],"sectionNumber":6970,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260011Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"119d5e12f234a5b5babdc8c418bc5b35","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":451}],"sectionNumber":6863,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260014Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3c5b4e40b2ccce8fc6a23abf694bb71","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":575}],"sectionNumber":6987,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260022Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787397Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b2ac974625d7bf6fdd0efde64d2ffdd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":255}],"sectionNumber":6667,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260028Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"775ee3fd0f6a620f7c3bb3a7052d3f89","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":36}],"sectionNumber":6448,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260026Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78e80cc9285b10ab73569e2b37fc213c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.92},"width":34.19667,"height":10.44714,"page":368}],"sectionNumber":6780,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260034Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04af9f5e576aa48b4c96a0b2b2390f98","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":429}],"sectionNumber":6841,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260036Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"73ea7c7d78272536e65e22fc26d1e3f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":265}],"sectionNumber":6677,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260037Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6dc57bc64c82a16d85c65d7ae4c0159","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":401}],"sectionNumber":6813,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26004Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee77ea0b9543d026133af147c0f25224","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":635}],"sectionNumber":7047,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260048Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bf4795fef501ae057f421296b549d19","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":97}],"sectionNumber":6509,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260047Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10afad9ba35ae01c7c8866573c75a44a","type":"PII","value":"Louis","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.50003,"y":506.87},"width":21.510986,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":"(Ralston-Purina Co., St. ","textAfter":", MO) ad","comments":null,"startOffset":245,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787212Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a118522b92e4d61f30b54b07fc2506d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":166}],"sectionNumber":6578,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26005Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a315afc483159ab3d48853d533c7247f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":625}],"sectionNumber":7037,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260051Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f5c7ce0d9eff39927531afa8c54edbc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":514}],"sectionNumber":6926,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260053Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"386f9a0bfeaf93fff2f39318607f24bb","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.25064,"y":321.21002},"width":25.352264,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"in New Zealand ","textAfter":" Rabbits –","comments":null,"startOffset":164,"endOffset":169,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787149Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"069e85850b99fd2aeeee572a5c18c78b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":378}],"sectionNumber":6790,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260054Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d10d10905808a44e3b6fd2e7715c4aed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":515}],"sectionNumber":6927,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260056Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1e2d6a22c1717c00333ce52e212f8ee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":639}],"sectionNumber":7051,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26006Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6900ff1df2bdcfe80e442bf1fbb321a2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":383}],"sectionNumber":6795,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260063Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70cbd980b9961e6d39250a28927bff62","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":527}],"sectionNumber":6939,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260062Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fe04ee34220177682e742149d350c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":399}],"sectionNumber":6811,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260066Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d47193ede714f486d8b4e34a3b761668","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.81204,"y":501.83},"width":30.772034,"height":10.018499,"page":565}],"sectionNumber":5784,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260068Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5db1b8b1613fc05373c135aff2657fc1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":143}],"sectionNumber":6555,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260071Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae7bef257051b3a7e5870bd2ad6254a7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":155}],"sectionNumber":6567,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260072Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95f84820a81d46020f1fcbd35b9ecec3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":241}],"sectionNumber":6653,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260075Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7fd75240fa13dfe9db54e576cb402b81","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":539}],"sectionNumber":6951,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260073Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c442fa3f648785b9de2f70c4612eae53","type":"CBI_address","value":"Box 705, Witham, Essex, England","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":513.2673,"y":249.65997},"width":19.359558,"height":11.017679,"page":306},{"topLeft":{"x":64.104,"y":237.06},"width":131.77985,"height":11.017679,"page":306}],"sectionNumber":3332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":129,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860707Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e985494cba6e875f92e4ac2efac6a215","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":433}],"sectionNumber":6845,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260078Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44610c7bb6963d6f24d0b6c2af59c8ca","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.34,"y":548.2},"width":34.196686,"height":10.44714,"page":73}],"sectionNumber":6485,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260079Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"38543a088a760bf77160445892ab0f33","type":"PII","value":"(10","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Immunological assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":118.28833,"y":563.75},"width":15.628006,"height":11.017679,"page":599}],"sectionNumber":6026,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1343,"endOffset":1346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b73b0f440c3b0f20f95c2dd87f40a96b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":193}],"sectionNumber":6605,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260083Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eabe5fd005d5882287f3a299f19e9212","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":490.43},"width":12.039993,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1194,"endOffset":1196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9133bb245301fa14bdb787393b8e961e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":365}],"sectionNumber":6777,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260091Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90759a87c0e65f302ef3983df85ce547","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.36786,"y":435.95},"width":27.860321,"height":11.017679,"page":376}],"sectionNumber":4123,"textBefore":"female New Zealand ","textAfter":" rabbits were","comments":null,"startOffset":139,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787112Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0abff5ebab1f2b97ee318ff2e03dba9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":362}],"sectionNumber":6774,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260093Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68c74aaf2d2ab1995db713a5baa95162","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":449}],"sectionNumber":6861,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260096Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52fb474cfe01544016c59c88b8f9e2d6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":605}],"sectionNumber":7017,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260108Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84b8f4aacd3ed48e91a774767feca64f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.61502,"y":542.87},"width":29.935028,"height":10.0905,"page":262}],"sectionNumber":3035,"textBefore":"Final ","textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260113Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"658b3f8b03d2f6788a5afd92de623894","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":291}],"sectionNumber":6703,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260109Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df6744a58fb54324c3cea915f7011f38","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":91.937996,"y":227.22003},"width":30.898003,"height":10.018499,"page":396}],"sectionNumber":4317,"textBefore":"Dose ","textAfter":" (mL/kg bw)","comments":null,"startOffset":5,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260116Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3b43fbe68eeed20104e9ea716bf2fd9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":147}],"sectionNumber":6559,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260114Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dbff27e76103f830e60130278bab27d","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.93,"y":456.35},"width":24.41803,"height":10.018499,"page":531}],"sectionNumber":5469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55dda83b202c4446d96023d0cf32f19b","type":"PII","value":", In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":157.08658,"y":592.1},"width":252.75912,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"Research GmbH (RCCCCR)","textAfter":". Laboratory Report","comments":null,"startOffset":184,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787131Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c73fbe2c244867b5a0afa1eb9ecb0e8b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":106}],"sectionNumber":6518,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260117Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787411Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d1a48202c5b9444f55699ad6f227a02","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Investigations post mortem:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":333.23715,"y":626.42},"width":11.918549,"height":11.017679,"page":180}],"sectionNumber":2372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1169,"endOffset":1171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.86071Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6cb9be35c200c95b46c9b43504529d6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":454}],"sectionNumber":6866,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26012Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787411Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e8024d00e6f2909c23abbe21a11873b","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.66128,"y":121.5},"width":27.970726,"height":11.017679,"page":434}],"sectionNumber":4654,"textBefore":"(NZW) New Zealand ","textAfter":" rabbits by","comments":null,"startOffset":217,"endOffset":222,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787148Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46ff69525f6ea0651a76d1864bd2c782","type":"PII","value":"Schulze","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":553.67},"width":35.897438,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"rat. Experientia 25:1250 ","textAfter":" P, Czok","comments":null,"startOffset":3758,"endOffset":3765,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad8dc6efb3dc5da91bd973394def4870","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":546}],"sectionNumber":6958,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260125Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6003dd714f7decab0c273872741d2e40","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":120}],"sectionNumber":6532,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260128Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf1d38f5079adcd2266b40d163bfbe3d","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.79774,"y":488.99},"width":11.918564,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":284,"endOffset":286,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860711Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"00481b0e46c1beb78825eca1366adea0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":603}],"sectionNumber":7015,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260132Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf705c8cc86fd6ebdae0aed3d1a1c5c1","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.56348,"y":539.99},"width":46.363373,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"distribution study (","textAfter":", 2015b) there","comments":null,"startOffset":3440,"endOffset":3449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257829Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c2b4824d012d09b8d57f484d92f4007","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.25,"y":687.02},"width":22.996002,"height":10.0905,"page":166}],"sectionNumber":2171,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618405Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9a5a77a12ad641771cebaa01451e6d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":311}],"sectionNumber":6723,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260133Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a18d6b19c56cc1aed78379b67d3f9c0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":137}],"sectionNumber":6549,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260135Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86b5816a57814788cc9e59e9ffc969ad","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":3}],"sectionNumber":6415,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260136Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d5f19d3675568b88ac302b5ea84bf9b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":335}],"sectionNumber":6747,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260139Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40515c5dd309499908f2a041a303c631","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":337}],"sectionNumber":6749,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26014Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a7e1e67e3571d3cbba0b193e1cb8503","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.71,"y":595.46},"width":25.435028,"height":10.0905,"page":402}],"sectionNumber":4365,"textBefore":"(2009). Report No. ","textAfter":" 1266901. Syngenta","comments":null,"startOffset":140,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787129Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efd0a64d46d0a3ae2c9e1106fffda61e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":151}],"sectionNumber":6563,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260149Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c50adb38abe633132e07713b28952590","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":313}],"sectionNumber":6725,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260151Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a7a53289308307978e11a005fe1d028","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":586}],"sectionNumber":6998,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260153Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12edd9af25a96c23efe225432523207c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":331}],"sectionNumber":6743,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260154Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d183055983a1ca3dc17c11488069ed1e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":141}],"sectionNumber":6553,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260156Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b3acae500437ae1a460f36b971c582e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":371}],"sectionNumber":6783,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260159Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"955bce36a015d0db8c1169d77ce7432c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":590}],"sectionNumber":7002,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260164Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c509d3856e579ee5d1ad5c155911d7dc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":177}],"sectionNumber":6589,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260165Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c420b4cdd64b711bd7a399b7f77503d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":79}],"sectionNumber":6491,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260169Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"418a6263bf4c0da8ffa9b6a031c0a2c8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":222}],"sectionNumber":6634,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260172Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aabe68779d9ff3a263674afa9761c7c7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":96}],"sectionNumber":6508,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260171Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b9be8819774b244730de1fd3be6339b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":238}],"sectionNumber":6650,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260174Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c7874c4dde234711f92890188360238","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":44}],"sectionNumber":6456,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260176Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c2262ed24782e84aa327a2866a98fd7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":13}],"sectionNumber":6425,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260181Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b90edbe08b800d4f1eac7863b5be8a4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":479}],"sectionNumber":6891,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260182Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"357bdacf294170b66bfab1e05bb6d5e8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":483}],"sectionNumber":6895,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260184Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88fea6130c6d02d5a6a01772c2d48076","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":356}],"sectionNumber":6768,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260185Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0264081aef1cb6ccddd4bd7b3406a231","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":641}],"sectionNumber":7053,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26019Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b7af3ac4b99c9e6ee8d064a3e959dbf","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Investigations post mortem:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":373.88647,"y":75.03998},"width":12.039978,"height":11.017679,"page":179}],"sectionNumber":2372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":298,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860715Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"408b8299ec5168b8d9f4a3731b28407c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":278}],"sectionNumber":6690,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260195Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"481d32fc99348ecd1e46c9bccdd54da3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":165}],"sectionNumber":6577,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260196Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"316d5d91b6738bf59fbd7f647fd45151","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":583}],"sectionNumber":6995,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260193Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67ccb4349e0dac17dc25ca4c64e1316a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":643}],"sectionNumber":7055,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260198Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d9b3c0a9ced787987560ba3db6773bd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":297}],"sectionNumber":6709,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2602Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787424Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d863f0d88e32813675458943b3bde43","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":361}],"sectionNumber":6773,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260202Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787424Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5aa803dbd822d5868c4698206340ca00","type":"PII","value":"Assessment Report","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Draft Assessment Report prepared according to the Commission\nRegulation (EU) N° 1107/2009","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":140.91129,"y":436.43},"width":114.92056,"height":12.26886,"page":1}],"sectionNumber":4,"textBefore":"Draft ","textAfter":" prepared according","comments":null,"startOffset":6,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":2,"type":"ADDED","dateTime":"2022-05-11T13:59:09.987672Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787355Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a1f0ac64c3ffd3015f37b5bf2278146","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE ....................................................................................................... 626","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":63.984,"y":449.27},"width":36.372154,"height":11.017679,"page":4}],"sectionNumber":15,"textBefore":"details refer to ","textAfter":" 3CA B-3","comments":null,"startOffset":1675,"endOffset":1681,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26022Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dd9c22a77ac19357063d577c329bc9a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":18}],"sectionNumber":6430,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260222Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"072bd80afbff98e1dccf13decfdfca96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":118}],"sectionNumber":6530,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260229Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53ba3a46af735f1726221f0797bced6c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":411}],"sectionNumber":6823,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260226Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24b45a92bc5303cf87137025ca511306","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":71}],"sectionNumber":6483,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26023Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b03486498655c324ef216ca59ff76219","type":"PII","value":"Anderson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.54398,"y":705.02},"width":39.79428,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"B, Resnick M, ","textAfter":" B, Zeiger","comments":null,"startOffset":392,"endOffset":400,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787255Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf0a37dc525457870a3aadac0ff917ec","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":323.95,"y":219.89996},"width":23.687195,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":"described previously (","textAfter":", 1987), employing","comments":null,"startOffset":1496,"endOffset":1500,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258935Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57bd7d9cebe540dca00fe8db5af0cf72","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-2: Summary of SYN545974 toxicokinetic profiles and their use to set high dose levels in\ntoxicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.603,"y":578.03},"width":38.007996,"height":10.0905,"page":9}],"sectionNumber":21,"textBefore":"2 Year (","textAfter":", 2015) Multi-generation","comments":null,"startOffset":69,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618201Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786776Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"326966ffe90d87fda7b060e582c1e7af","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":49}],"sectionNumber":6461,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260234Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"289b58a1e7a35e3d2dfb2019b921e568","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":200}],"sectionNumber":6612,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260237Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9cba31ffa9e78e0c3b761e27aaa37f1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":230}],"sectionNumber":6642,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260238Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a53d96b2200724062b947c236b0886b2","type":"CBI_address","value":"Rockville, MD, USA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Under the conditions of the test described, 2,4,6-TCP did not cause a greater than 50% inhibition of\nDNA synthesis over the concentration range tested.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":145.04927,"y":409.53},"width":94.98352,"height":11.017679,"page":598}],"sectionNumber":6023,"textBefore":null,"textAfter":null,"comments":null,"startOffset":343,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860719Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3daa5c931a8b5a2d1df0d747043d074f","type":"CBI_author","value":"Williams","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":260.5491,"y":506.99},"width":30.289642,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":"from Webbley and ","textAfter":" (2015) study","comments":null,"startOffset":12290,"endOffset":12298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257844Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6bc65382b4e6b71de31505c3e1a79cf3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":340}],"sectionNumber":6752,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260247Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c5fbbdf42d9a109ac1c6d1f0850e8d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Preparation of representative sample pools for metabolite profiling","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.4143,"y":740.18},"width":36.37213,"height":11.017679,"page":19}],"sectionNumber":103,"textBefore":"to the equation, ","textAfter":" pooled =","comments":null,"startOffset":547,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260251Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1dc89bcf116a26171f3315eede63414","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":189}],"sectionNumber":6601,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260254Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dae0f22eafb194df7be5be309453d6cc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":206}],"sectionNumber":6618,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260257Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d9f52be5702e0f0e2b39d0309ecd0b1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":182}],"sectionNumber":6594,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26026Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6248acf3f45f4b8657e254a16908d17a","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.03107,"y":288.57},"width":22.978027,"height":10.0905,"page":148}],"sectionNumber":2032,"textBefore":"Adult New Zealand ","textAfter":" Rabbit","comments":null,"startOffset":60,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618383Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18cfcaa39b3b7681fe040c2e98b2437f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":292}],"sectionNumber":6704,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260268Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c8d22aeaaa48f4f41c925e252c7c991","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":319.68097,"y":330.21},"width":34.206696,"height":10.44714,"page":466}],"sectionNumber":5014,"textBefore":"Final ","textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26027Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a49974c6ac27faa8f6f6ff806103bfee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.92},"width":34.19667,"height":10.44714,"page":366}],"sectionNumber":6778,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260276Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c631c2d64ab516b5732161c6f20d89d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":574}],"sectionNumber":6986,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260282Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8954624e0a2dbda7fa019e224ecd4201","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":198}],"sectionNumber":6610,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260284Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86bd7de7a1a8a33993136768bca9c42b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":300}],"sectionNumber":6712,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260286Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea6a55d8b1993a052c549c73a7b58449","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":4}],"sectionNumber":6416,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260288Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f411e42f5b21410a6b008d545727458","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":11}],"sectionNumber":6423,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26029Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bab31b5dbb2b514df7474cce3924b3d0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":174}],"sectionNumber":6586,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260293Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f038a8315d26223e0da7b02547abf9e","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.84576,"y":74.67999},"width":12.039978,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":null,"textAfter":null,"comments":null,"startOffset":683,"endOffset":685,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860721Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d61d029c2f5d66d653fbe63f2f979d42","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":246}],"sectionNumber":6658,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260295Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b064a4eb41fbdf4046c980a56c6febd1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":5}],"sectionNumber":6417,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260297Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87d31c42a506d99b8c4a10177458f446","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":32}],"sectionNumber":6444,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260303Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b89670acd6f3b7e0b5cc4cf2c8e48d77","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":621}],"sectionNumber":7033,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260304Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4268da04893bed6d9565254b28fe4ab0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":251}],"sectionNumber":6663,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260307Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c1169f2c5c252ed0c500d2f7b60d988","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":160}],"sectionNumber":6572,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260309Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff22470ffbcef862eb5ec32c8795efd7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":234}],"sectionNumber":6646,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260313Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81265c40a4a7cb7fdfbba645e7eeee79","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.25,"y":565.91},"width":22.977997,"height":10.0905,"page":101}],"sectionNumber":1414,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":68,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618305Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786876Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8ed41bcde49b08be4640e77761ae4225","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Ophthalmoscopy:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.25,"y":719.3},"width":22.978027,"height":10.0905,"page":429}],"sectionNumber":4532,"textBefore":null,"textAfter":" blood cells","comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787141Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9341e1e8ff15ea140b1cb79afce9412c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":637}],"sectionNumber":7049,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260321Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32809f0aca3255f6f9574f27110dc7b4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":210}],"sectionNumber":6622,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260322Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90c110c0d05d4a6be6269e0052bd8877","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":315}],"sectionNumber":6727,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260326Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"776d1692ec9b2d8362f3caaf213357ff","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.19221,"y":469.91},"width":59.42366,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"toxicity studies (","textAfter":", 2015a, b);","comments":null,"startOffset":3887,"endOffset":3899,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257833Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787444Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4146fdc4b4e821e01c9fe357850149f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":169}],"sectionNumber":6581,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260334Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40cbc6ec2eb8d78471c6cf1e8104eb03","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":196}],"sectionNumber":6608,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260335Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb86f24d3fdcb79badea1cda4125a1f7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":94}],"sectionNumber":6506,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260337Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0485ed48c6f3912f6a0db099cc0306ea","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":572}],"sectionNumber":6984,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260341Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5718a99124bd02c37256962620a0fd49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":215}],"sectionNumber":6627,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26034Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"379908b7aefcfd00402b9e35c662c63e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":133}],"sectionNumber":6545,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260338Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d75ed47e0267211523222e953492a915","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":308}],"sectionNumber":6720,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260343Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7921934c1398e3391ba0130dbad0b502","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":227}],"sectionNumber":6639,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260348Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96b46a4f4ac7e51c91c5563e9a626e2a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":212}],"sectionNumber":6624,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260349Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"356648a95fbd09ec287abadef2174f4a","type":"CBI_author","value":"Harris","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.85034,"y":497.87},"width":20.906982,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12376,"endOffset":12382,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618214Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257847Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85be48b65f005b96e91ae1e44391222c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":563}],"sectionNumber":6975,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260351Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92d3cd01b09d1779a17d14bf988ae6da","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":52}],"sectionNumber":6464,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260352Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d98eaec6b8c401b94ae92e0353a553d1","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.54642,"y":504.35},"width":27.86029,"height":11.017679,"page":131}],"sectionNumber":1865,"textBefore":"female New Zealand ","textAfter":" rabbits were","comments":null,"startOffset":278,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618359Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a06fb4375ebadca248e4789525cc97fb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":417}],"sectionNumber":6829,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260355Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"904b17c6b04db3c77e108024cf537868","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":104}],"sectionNumber":6516,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260353Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc949681c472b2f3d935ebe7c9009ba0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":422}],"sectionNumber":6834,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260356Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"706ab7d9a143e7667b1cb1cde45b68d3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":280}],"sectionNumber":6692,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260361Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29650d2edf11a2075df9a1b24a2adf01","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":550}],"sectionNumber":6962,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260363Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7231739dff9475893f58ef317b7c5a6c","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.95416,"y":302.01},"width":12.039978,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2436,"endOffset":2438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"52540d74560ecefe70f805bcff8874c8","type":"PII","value":"(90","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.75684,"y":73.84003},"width":15.74942,"height":11.017679,"page":598}],"sectionNumber":6025,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1174,"endOffset":1177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ede824c25c9fd5cfd7f96f7f4be42b22","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":506}],"sectionNumber":6918,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260374Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6105496cc258458eca2560127c294329","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":319}],"sectionNumber":6731,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260377Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c91ef8d61f009ae7a20454c8905bb4a5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":235}],"sectionNumber":6647,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260383Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63e2c24083954be35f2e7c802ec6ed13","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":325}],"sectionNumber":6737,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260385Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d0294f3f2bbdfab380b50ac4b2ce9485","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":263}],"sectionNumber":6675,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260387Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"221c2566c6515b5e4d76e77e20fdc1f2","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.744,"y":752.42},"width":20.62564,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"22.6 23.5 22.9 ","textAfter":" blood cell","comments":null,"startOffset":4044,"endOffset":4049,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07b67456f63bdfc44d88831fd552b6e0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":248}],"sectionNumber":6660,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260395Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2c90ae819afddbff0d30c120d899176","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":60}],"sectionNumber":6472,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260396Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df04339434e68c942ad4967332f2594c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":108}],"sectionNumber":6520,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260402Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9909852e59ee7a5992c2ac1142132931","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":314}],"sectionNumber":6726,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260403Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"435eae989475bc76fdce4a311b5b1145","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.035,"y":230.10004},"width":10.062988,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":228,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8743bccad981a71d37e0778a0a2ab9a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":390}],"sectionNumber":6802,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260408Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4540466e427afe74ae328d7778dc7d37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.92},"width":34.19667,"height":10.44714,"page":367}],"sectionNumber":6779,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260412Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ed95943f24476f832a82d26ab555a07","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":317}],"sectionNumber":6729,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260414Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"06957e4aea731bcd47bab6bd22803e5f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":129}],"sectionNumber":6541,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260415Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bca4deb1660361039cdbe14a3970770","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":135}],"sectionNumber":6547,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260421Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a8218939d99d572a88b5f57e6d96337","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":336}],"sectionNumber":6748,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260423Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d509752c0532c318f904e5b4f09da95","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":358}],"sectionNumber":6770,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260432Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87102f5c9d277f7351d881235813c528","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":598}],"sectionNumber":7010,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260438Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10e18e4e38eb96e48d30fd33cc210f55","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":185}],"sectionNumber":6597,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260445Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee898033809883b4b5027c670a261a28","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Reproducibility and Consistency","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":173.36687,"y":97.14398},"width":46.208817,"height":11.017679,"page":300}],"sectionNumber":3307,"textBefore":"been demonstrated (","textAfter":" 2015 and","comments":null,"startOffset":1238,"endOffset":1247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618518Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787045Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8740ae1b2f9b1bed37c50ca2377c6828","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":564}],"sectionNumber":6976,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260447Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69a273aa2952fb7838496fdfb9298f80","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":318}],"sectionNumber":6730,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260448Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ea30f8b71290a2a62968a0ec2a9371d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":628}],"sectionNumber":7040,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260452Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e6918c86034b6547ddf13e5b1f5bd2a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":494}],"sectionNumber":6906,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26045Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"425d91b77c1b1072c9b22471d30f255a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":59}],"sectionNumber":6471,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d48b3ae5f76317af903b393b64ad77d0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":520}],"sectionNumber":6932,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260457Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0825f4c354e85b7887561a2d6f62a15","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":447}],"sectionNumber":6859,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260459Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b41f17f3373bd8b22c17a5b504c4d7d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":110}],"sectionNumber":6522,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26046Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78058c4f3d4bf909398017fb6e4b3f6f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":495}],"sectionNumber":6907,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260466Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"907ee82fc600426ef6472a5844828fac","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":622}],"sectionNumber":7034,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260465Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9a2e5ff35fd00a62a54b2cc3c0902b7","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":103.69344,"y":412.53},"width":47.997276,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"AUC ratios (","textAfter":", Harris J.,","comments":null,"startOffset":4198,"endOffset":4207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257836Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08ff3f1d1f67b1ac957e6fd761e4a00c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":100}],"sectionNumber":6512,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26047Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4519a3421bdb2ed78aba84c390d2878","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":26}],"sectionNumber":6438,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260472Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0eced339b5f72f2cabccb9bb596cd7d8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":88}],"sectionNumber":6500,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260474Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61cbb093a0fda66566398bdb36ff9160","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":330}],"sectionNumber":6742,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260475Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b59edb4b4e0358ef57c0231f72b313b","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.14641,"y":715.58},"width":12.040009,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":604,"endOffset":606,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5701537a16d0702663690a7d51252b92","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":50}],"sectionNumber":6462,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260477Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1fab71844a9a1333d71f1a8c6264a2b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":426}],"sectionNumber":6838,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260478Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e69665ce3a12a361517c090152838afc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":436}],"sectionNumber":6848,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260486Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9ca73a4eb53f2a49dd61f2a9ef27504","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":29}],"sectionNumber":6441,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260485Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7be4db0ed1f8effe43f6ecc01301491e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":351}],"sectionNumber":6763,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26049Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39d6880fbc67355810acf90ba2d414d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":146}],"sectionNumber":6558,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260488Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fc0c9eebb7c3a46346dad62d26700cd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":473}],"sectionNumber":6885,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260491Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"493d06e51475588038b7220643aa1153","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.76187,"y":549.11},"width":26.62384,"height":11.017679,"page":522}],"sectionNumber":5403,"textBefore":"by Ames (","textAfter":" et. al,","comments":null,"startOffset":376,"endOffset":380,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258671Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"491012877a1e5ee9a87f615cd1d4e8db","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":78}],"sectionNumber":6490,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260497Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93f1d0a957ee792a5989aec7ed1256c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":543}],"sectionNumber":6955,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2605Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c34d4f56af1d1891e0e77c59fda60cd7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":24}],"sectionNumber":6436,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260501Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf01ebf17bf57bbf9ca21d02e0497ea0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":638}],"sectionNumber":7050,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26051Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a64736877c0b2be0c9d722915ec7a757","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.1013,"y":487.67},"width":11.918549,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5818,"endOffset":5820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860733Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb293970ca0cba0788a4712d579e0309","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":343}],"sectionNumber":6755,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260518Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fb024058b3b6142280a3f0985c998fc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":488}],"sectionNumber":6900,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260521Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da4af2c0217865503a221dd1c56ef9d9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":486}],"sectionNumber":6898,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260524Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cfa9f3772b4906687e34f7b57b33610","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":501}],"sectionNumber":6913,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260528Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4e814e81964a95e99f6449fc3b03e0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.34,"y":548.2},"width":34.196686,"height":10.44714,"page":72}],"sectionNumber":6484,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260533Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aad002e94601656a90ad77329db6eca0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":188}],"sectionNumber":6600,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260536Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b580efd653403401317b2903e6006076","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":349}],"sectionNumber":6761,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260534Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ca2ce0ac3e065c529516c18f7164e050","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":170}],"sectionNumber":6582,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260537Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36823316b3e754b5b716efb9fd113f50","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":218}],"sectionNumber":6630,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26054Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65bad13ae23e85995fe9a85977486215","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":460}],"sectionNumber":6872,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260542Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7e2b2c126a621a1fa9fcba9073a7600","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":40}],"sectionNumber":6452,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260546Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc54450be5063a6b1595c0528a33f374","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":295}],"sectionNumber":6707,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260551Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c8db84e02c35066ef37c445145e80f8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":216}],"sectionNumber":6628,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260549Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0322dd39f41d6f3629c1a476a526d34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":602}],"sectionNumber":7014,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260552Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f96dcce5a50c8bf432c181d4fb1147d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":392}],"sectionNumber":6804,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260555Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"145b66380b5f3493a7b00df9b916e416","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":164}],"sectionNumber":6576,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260561Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0024d89db8ca1f870a22f464ab906851","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":601}],"sectionNumber":7013,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260562Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97a2f253cff922c10222798534865c68","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":353}],"sectionNumber":6765,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260566Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"539833693efe6577dc780b24a6fbce4f","type":"CBI_address","value":"Greensboro, NC, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is a direct activator of CAR from mouse, rat and human, and has high efficacy (i.e.\nmaximal fold change compared to model activators) in all three species.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":331.63403,"y":487.79},"width":82.53992,"height":10.0905,"page":319}],"sectionNumber":3398,"textBefore":"Protection, LLC (","textAfter":")","comments":null,"startOffset":109,"endOffset":128,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618539Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787057Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a53d125d58acc50d2853638239de618","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.4. GENOTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":270.99033,"y":643.34},"width":26.513428,"height":11.017679,"page":232}],"sectionNumber":2819,"textBefore":"human lymphocytes). The ","textAfter":" studies were","comments":null,"startOffset":368,"endOffset":372,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"},{"analysisNumber":3,"type":"CHANGED","dateTime":"2022-05-11T14:03:58.164704Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60738641937f9601ba75ecb1e1d365be","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":496}],"sectionNumber":6908,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260577Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee1186c59d090a6de71102e3415fca11","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":529}],"sectionNumber":6941,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260578Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68b7976868ae987d828e96cbd4f8c80d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":573}],"sectionNumber":6985,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260583Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a127459489284785711466ed2205b96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":359}],"sectionNumber":6771,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26058Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a11f7548ab4f7b09b27c9882accf5ee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":276}],"sectionNumber":6688,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260581Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7638c15614d6288d5209b98bd7582a7f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":414}],"sectionNumber":6826,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260584Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15d04a23ac637afe3616537e80ba41cb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":644}],"sectionNumber":7056,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260585Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c80379c0460eb4069cdb5e0da950c01f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":323}],"sectionNumber":6735,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260587Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28cd3fc2660bfd48b1418e8d1cc8a800","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":289}],"sectionNumber":6701,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260588Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bd5843692046ad5e9f50efe7dadd117","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.17,"y":212.70001},"width":22.977997,"height":10.0905,"page":353}],"sectionNumber":3866,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787091Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fd1c80bcfbc692c154d7fb45a1acffe","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":560}],"sectionNumber":6972,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26059Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82330acdb044386c38b3fd0cf1c8cefb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":271}],"sectionNumber":6683,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260596Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39d80832ffcb461820387ef25e87a05b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":418}],"sectionNumber":6830,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260597Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b13a7791820ce2905db112aac3392c0c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":80}],"sectionNumber":6492,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"934c0ae30a985eec4569e02ce6ae17a8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":63}],"sectionNumber":6475,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260602Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7dbd2926314bed559d17d3234037b19","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":382}],"sectionNumber":6794,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260604Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"518c63208abe38de000af6351bce26b0","type":"CBI_author","value":"Webbley","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.18434,"y":506.99},"width":29.84755,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":"Data extracted from ","textAfter":" and Williams","comments":null,"startOffset":12278,"endOffset":12285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618212Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257842Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcfdb4e39f637ef50d9374ff3a73b8ff","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":2}],"sectionNumber":6414,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2401198473590d1715973303941bfa3f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":262}],"sectionNumber":6674,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260609Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd0dfbde075749a466b9edf0452adf85","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":611}],"sectionNumber":7023,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260612Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c284800104329967fc96228b09844254","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":587}],"sectionNumber":6999,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260617Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"346ca2a17f691144f664e06b888ba7db","type":"PII","value":"10-15","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.76706,"y":184.62},"width":26.682953,"height":11.017679,"page":251}],"sectionNumber":2952,"textBefore":null,"textAfter":null,"comments":null,"startOffset":583,"endOffset":588,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618461Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787009Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"566f25dd1ecc20507310dfb85d97ce47","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":620}],"sectionNumber":7032,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260618Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787486Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01547fe74c65b03480c01bc43fbc4faf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":112}],"sectionNumber":6524,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26062Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787486Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"994b01cfc6e9c3ed9b0a6807cb2a1ee1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":476}],"sectionNumber":6888,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260624Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8ea8b7206114a1ea3df0d9a0fd68e69","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":69}],"sectionNumber":6481,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260623Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70d993bf488275a1c98e2af5c7155a34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":148}],"sectionNumber":6560,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260627Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc4ad2c9b5db3dd9a2efd7badf6bf033","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.67,"y":668.9},"width":25.435028,"height":10.0905,"page":448}],"sectionNumber":4879,"textBefore":"(2014a). Report No. ","textAfter":" 1555901. Syngenta","comments":null,"startOffset":122,"endOffset":128,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787161Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c18eeadb677433ce5762971698f434a7","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.60213,"y":354.21},"width":27.970718,"height":11.017679,"page":369}],"sectionNumber":4067,"textBefore":"female New Zealand ","textAfter":" rabbits were","comments":null,"startOffset":393,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787106Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25cbda9231c59304a7024efa005cc055","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":544}],"sectionNumber":6956,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260636Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e7e2d265b031a437c9eb19478810e361","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":604}],"sectionNumber":7016,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260637Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"648b96b5c519111198c2679a25c70e5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":172}],"sectionNumber":6584,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260644Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5d9d3817028f707cf07d69f0cbd8a96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":45}],"sectionNumber":6457,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260649Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41bc85c5e894c0251b1d2624ab7a8b92","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":553}],"sectionNumber":6965,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260651Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53a7b74019bac5f158d8366ffefbe1d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":90}],"sectionNumber":6502,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260652Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d98ff33edda06348869eef6c7560238","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":87}],"sectionNumber":6499,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260658Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4faed4467a7336eccdb8baf496ca438f","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":116.82001},"width":29.781288,"height":10.929359,"page":562}],"sectionNumber":5772,"textBefore":"for alkaline elution. ","textAfter":" cell preparation","comments":null,"startOffset":1017,"endOffset":1022,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787263Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac1bc0a04fd0f31299b3729d8cb49538","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":14}],"sectionNumber":6426,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260664Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3710039fd53c2082033cbb2fe3174e7a","type":"PII","value":"Schulze","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.203835,"y":100.02002},"width":35.775993,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"foils according to ","textAfter":" and Czok","comments":null,"startOffset":1753,"endOffset":1760,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787297Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"740f359ed2371250c5314f4b8ca3003c","type":"CBI_address","value":"Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":357.83432,"y":512.15},"width":88.8674,"height":11.017679,"page":177}],"sectionNumber":2337,"textBefore":"Special Diets Services, ","textAfter":".","comments":null,"startOffset":200,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786965Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6dc2ae1cb3864d11ad45ee2167688f52","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":38}],"sectionNumber":6450,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260667Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb4b6c23607d333c0e04869141b4b943","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":207}],"sectionNumber":6619,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260668Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29b3a82921956fad9c5104a02d4a115b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":404}],"sectionNumber":6816,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260672Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"787ab6fcc7e095aa10a534c36549e196","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":587.15},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2813,"textBefore":"Bohnenberger S (2013) ","textAfter":" (CCR) Report","comments":null,"startOffset":193,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787003Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d176dddf167a66fcc49e2b9cd86cd60","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":484}],"sectionNumber":6896,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260675Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4cf89955cefb66584c1d121ce3620fb8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":467}],"sectionNumber":6879,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260676Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e594f4d6e9108d637cfce29b86efb6c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":85}],"sectionNumber":6497,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260678Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fef9a21da226a6076bdac933131745c4","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":159.22462,"y":412.53},"width":41.14142,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"ratios (Punler M., ","textAfter":", 2014a). For","comments":null,"startOffset":4209,"endOffset":4218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257832Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d17b396f45452862682c3e8cbf52881","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.85,"y":577.79},"width":22.977997,"height":10.0905,"page":334}],"sectionNumber":3538,"textBefore":null,"textAfter":" to off-white","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618552Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787066Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"094544440d3375226397e9e5e53c4d33","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.47,"y":589.94},"width":25.352264,"height":10.526819,"page":473}],"sectionNumber":5053,"textBefore":"distribution width Platelets ","textAfter":" blood cell","comments":null,"startOffset":3339,"endOffset":3344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a1a26bb700213b69d77e3d722b4ac64e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":615}],"sectionNumber":7027,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260684Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6e2496952e6c8ebb0acaf683582cd82","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":17}],"sectionNumber":6429,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260685Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4720ce8d561ee846fc64af9aa38c2f7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":504}],"sectionNumber":6916,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260689Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787498Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32fda744c564aca6bd218a0600fb8533","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":384}],"sectionNumber":6796,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260697Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3aeb6a108246a06dc4dae104dbaa909b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":130}],"sectionNumber":6542,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260698Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed4dba91e5522b73929f7db7d99c0798","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":520.77423,"y":628.34},"width":11.918579,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":534,"endOffset":536,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860744Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee6a27bb3726f495296a83d48cf72c88","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":310}],"sectionNumber":6722,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260699Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c026bb35a89007e1225d6025d6b784b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":517}],"sectionNumber":6929,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260705Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4166ca25c0c33ffbb5f0fd0e777f9bb5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":567}],"sectionNumber":6979,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260708Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d61730c4a41d223343031097eada0096","type":"PII","value":"10-13","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":119.71248,"y":740.9},"width":26.627533,"height":11.017679,"page":463}],"sectionNumber":4999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":451,"endOffset":456,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787166Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9f987b158fcc4c7069fd4191ed549d0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":156}],"sectionNumber":6568,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260709Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44e961f5a31fd2d678101f004366d897","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":348}],"sectionNumber":6760,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26071Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a853d931981598abdcee887a65cdd72","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":168}],"sectionNumber":6580,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260714Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ea16c060206085b32ba93188ae212e6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":443}],"sectionNumber":6855,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260715Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51cfc3e97ee3a5edd2d8d2b82dd85375","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.44,"y":627.02},"width":25.435028,"height":10.0905,"page":448}],"sectionNumber":4880,"textBefore":"(2013a). Report No. ","textAfter":" 1555902. Syngenta","comments":null,"startOffset":114,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78716Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85cfe7f16d9b963b80211a14bd2ae461","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":406}],"sectionNumber":6818,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260717Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb3fff2bdc53319f8040f9e1b443c911","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":48}],"sectionNumber":6460,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260728Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e0be773ee508558a0d4c96fe27ac987","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":533}],"sectionNumber":6945,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260731Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9585386027334bc836cef843aa1d888","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":277}],"sectionNumber":6689,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260734Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34fbba607973d01fd868d8a55b409a8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":339}],"sectionNumber":6751,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260736Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a4c26f7f88d7f0b2b7ea3a4b32a9daa0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.37503,"y":303.57},"width":29.935028,"height":10.0905,"page":257}],"sectionNumber":2984,"textBefore":"Final ","textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260737Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c9b76a6a9c9c198544f890408e72836","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":584}],"sectionNumber":6996,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26074Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"698c53c2f184a7b05edc1a9561efcff7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.81204,"y":477.71},"width":30.772034,"height":10.018499,"page":565}],"sectionNumber":5785,"textBefore":"Final ","textAfter":": Not indicated","comments":null,"startOffset":24,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260742Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01875198531560c8be0142de8b242047","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":491}],"sectionNumber":6903,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260743Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bea72de1af340c4ea0e89857dd10559b","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Maternal toxicity:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":499.43},"width":27.970726,"height":11.017679,"page":384}],"sectionNumber":4217,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":3989,"endOffset":3994,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787118Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf838ff72f11aaee3c02b78ca95d0a7f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":243}],"sectionNumber":6655,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260749Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"214b32a594e4037302151d4046b7fe55","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":341}],"sectionNumber":6753,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260752Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e84b0e69f7f64095e0879decd6bf78a2","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.02992,"y":427.91},"width":11.918564,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1558,"endOffset":1560,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860747Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"035ff383696b233308ba29fe3a967bf2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":364}],"sectionNumber":6776,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260753Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a29ee40c9d23bc944bc915e8a4e7cbcd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":105}],"sectionNumber":6517,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26076Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11b57a103989c78e7e2514691c823987","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":559}],"sectionNumber":6971,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260759Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce6dd018fb67dd656bd74be13d6f23b6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":566}],"sectionNumber":6978,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260757Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13c8f57e51f355bf599e4450bee48c95","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":327}],"sectionNumber":6739,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260756Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"abc22ad509d8c64bfb993a257b26d379","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":556}],"sectionNumber":6968,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260762Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1971338d6ad87632d9ef0cba19678f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":585}],"sectionNumber":6997,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260763Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"789bb8222ea44f921daf0cca2264bda8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":31}],"sectionNumber":6443,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260765Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0efacb0a1d9b43b1b7bb69aca985017","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":500}],"sectionNumber":6912,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260771Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"900576ab3d8aa08f584ed3b48e1d289d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":33}],"sectionNumber":6445,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26077Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c1fbc21d91c66541a00629eb312fdd6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":439}],"sectionNumber":6851,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260785Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"daa6e8d290147446fc4cdaa1e197aa8a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":70}],"sectionNumber":6482,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260782Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed7453e80454e12fa9ae77f501586ff6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":30}],"sectionNumber":6442,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260786Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6b1348eed1e5069d657071f23840c2f","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.5208,"y":140.70001},"width":44.08914,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"Williams D., 2015; ","textAfter":", O’Hagan P.,","comments":null,"startOffset":6050,"endOffset":6059,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257824Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"846cd23f287e6a96c24c5b3650d8c5c4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":288}],"sectionNumber":6700,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260788Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d7d86af0aba37aa1b2ef51b7d2ee0a1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":381}],"sectionNumber":6793,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260792Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cee5c0bac67736191d8c586b3506a8b0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":25}],"sectionNumber":6437,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260799Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787513Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb946d94884cf632484f0a47c0f1c9e3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":190}],"sectionNumber":6602,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260795Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false}],"legalBasis":[{"name":"1.1 personal data (incl. geolocation); Article 39(e)(3)","description":"(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)","reason":"Article 39(e)(3) of Regulation (EC) No 178/2002"},{"name":"1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)","description":"personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information","reason":"Article 39(e)(2) of Regulation (EC) No 178/2002"},{"name":"2. manufacturing or production process","description":"the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety","reason":"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"},{"name":"3. links between a producer and applicant","description":"commercial links between a producer or importer and the applicant or the authorisation holder, where applicable","reason":"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"},{"name":"4. commercial information","description":"commercial information revealing sourcing, market shares or business strategy of the applicant","reason":"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"},{"name":"5. quantitative composition","description":"quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety","reason":"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"},{"name":"6. specification of impurity","description":"the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities","reason":"Article 63(2)(b) of Regulation (EC) No 1107/2009"},{"name":"7. results of production batches","description":"results of production batches of the active substance including impurities","reason":"Article 63(2)(c) of Regulation (EC) No 1107/2009"},{"name":"8. composition of a plant protection product","description":"information on the complete composition of a plant protection product","reason":"Article 63(2)(d) of Regulation (EC) No 1107/2009"}],"dictionaryVersion":36,"dossierDictionaryVersion":1,"rulesVersion":3,"legalBasisVersion":2} \ No newline at end of file From f46ee71e3420b9d60d8d62e8102bc9cd9978714b Mon Sep 17 00:00:00 2001 From: deiflaender Date: Fri, 13 May 2022 15:49:56 +0200 Subject: [PATCH 03/13] RED-4036: Wait for executor timeout --- .../ExcelTemplateReportGenerationService.java | 2 +- .../service/GeneratePlaceholderService.java | 26 ++++++++++++++----- .../service/ReportGenerationService.java | 4 +++ .../service/WordReportGenerationService.java | 10 ++++--- 4 files changed, 32 insertions(+), 10 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index 5cfc643..a54bc2b 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -319,7 +319,7 @@ public class ExcelTemplateReportGenerationService { if (dossierAttributesPlaceholders.containsKey(placeholder)) { return dossierAttributesPlaceholders.get(placeholder); } - throw new RuntimeException("unknown placeholder"); + return null; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java index 2ce0e68..ca10ae2 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java @@ -1,5 +1,24 @@ package com.iqser.red.service.redaction.report.v1.server.service; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.DOSSIER_NAME_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FILE_NAME_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ENG_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_GER_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.IUCLID_FUNCTION_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Base64; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.springframework.stereotype.Service; + import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; @@ -9,13 +28,8 @@ import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributes import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; + import lombok.RequiredArgsConstructor; -import org.springframework.stereotype.Service; - -import java.util.*; - -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.*; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.DOSSIER_NAME_PLACEHOLDER; @Service @RequiredArgsConstructor diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 9a113f3..6447a4e 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -21,6 +21,7 @@ import com.iqser.red.service.redaction.v1.model.RedactionLog; import com.iqser.red.service.redaction.v1.model.RedactionLogEntry; import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; @@ -35,6 +36,7 @@ import java.util.Iterator; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; +import java.util.concurrent.TimeUnit; @Slf4j @Service @@ -54,6 +56,7 @@ public class ReportGenerationService { @Value("${redaction-report-service.numberOfReportGenerationThreads:4}") private int numberOfReportGenerationThreads; + @SneakyThrows public List generateReport(ReportRequestMessage reportMessage) { List storedFileInformation = Collections.synchronizedList(new ArrayList<>()); @@ -131,6 +134,7 @@ public class ReportGenerationService { } executor.shutdown(); + executor.awaitTermination(1, TimeUnit.DAYS); long end = System.currentTimeMillis(); log.info("Successfully processed {}/{} fileIds for downloadId {}, took {}", i, reportMessage.getFileIds() diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java index a97b7c5..6ab5e81 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java @@ -30,6 +30,7 @@ import static com.iqser.red.service.redaction.report.v1.server.service.Placehold @Slf4j @Service @RequiredArgsConstructor +@SuppressWarnings("PMD") public class WordReportGenerationService { @@ -58,7 +59,7 @@ public class WordReportGenerationService { log.warn("Table time: {}", (t2 - t1)); t1 = System.currentTimeMillis(); - replaceTextPlaceholders(doc, placeholderModel, dossier, fileStatus, table); + replaceTextPlaceholders(doc, placeholderModel, dossier, fileStatus, table, reportEntries); if (isLastFile) { removePlaceholdersRow(table); @@ -83,6 +84,9 @@ public class WordReportGenerationService { } private void removePlaceholdersRow(XWPFTable table) { + if (table == null){ + return; + } for (int j = 0; j < table.getRows().size(); j++) { for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) { XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i); @@ -171,11 +175,11 @@ public class WordReportGenerationService { } - public void replaceTextPlaceholders(XWPFDocument doc, PlaceholderModel placeholderModel, Dossier dossier, FileModel fileModel, XWPFTable tableToSkip) { + public void replaceTextPlaceholders(XWPFDocument doc, PlaceholderModel placeholderModel, Dossier dossier, FileModel fileModel, XWPFTable tableToSkip, List reportRedactionEntries) { Map placeHolderValueMap = new HashMap<>(); for (String placeholder : placeholderModel.getPlaceholders()) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileModel, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder(), new ArrayList<>()); + String placeholderValue = getPlaceholderValue(placeholder, dossier, fileModel, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder(), reportRedactionEntries); placeHolderValueMap.put(placeholder, placeholderValue); } From f1ebfef248a9e432ff0e923a65cb910fdfa60569 Mon Sep 17 00:00:00 2001 From: deiflaender Date: Fri, 13 May 2022 16:34:18 +0200 Subject: [PATCH 04/13] RED-4036: Revert parallel processing --- .../service/ReportGenerationService.java | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 6447a4e..dbdfaba 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -41,6 +41,7 @@ import java.util.concurrent.TimeUnit; @Slf4j @Service @RequiredArgsConstructor +@SuppressWarnings("PMD") public class ReportGenerationService { private final ReportStorageService reportStorageService; @@ -111,30 +112,30 @@ public class ReportGenerationService { List reportEntries = getReportEntries(reportMessage.getDossierId(), reportMessage.getFileIds() .get(j), fileStatus.isExcluded()); - ExecutorService executor = Executors.newFixedThreadPool(numberOfReportGenerationThreads); +// ExecutorService executor = Executors.newFixedThreadPool(numberOfReportGenerationThreads); var isLastFile = j == reportMessage.getFileIds() .size() - 1; for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) - executor.submit(() -> excelTemplateReportGenerationService.generateReport(reportEntries, + excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileWorkbook.getTemplateName(), - multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile)); + multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile); for (MultiFileDocument multiFileDocument : multiFileDocuments) { - executor.submit(() -> - wordReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileDocument.getTemplateName(), multiFileDocument.getDocument(), fileStatus, dossier, isLastFile) - ); + + wordReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileDocument.getTemplateName(), multiFileDocument.getDocument(), fileStatus, dossier, isLastFile); + } for (ReportTemplate reportTemplate : singleFilesTemplates) { - executor.submit(() -> - storedFileInformation.add(createReportFromTemplate(dossier, fileStatus, placeholderModel, reportTemplate.getFileName(), reportMessage.getDownloadId(), reportEntries, reportTemplate)) - ); + + storedFileInformation.add(createReportFromTemplate(dossier, fileStatus, placeholderModel, reportTemplate.getFileName(), reportMessage.getDownloadId(), reportEntries, reportTemplate)); + } - executor.shutdown(); - executor.awaitTermination(1, TimeUnit.DAYS); +// executor.shutdown(); +// executor.awaitTermination(1, TimeUnit.DAYS); long end = System.currentTimeMillis(); log.info("Successfully processed {}/{} fileIds for downloadId {}, took {}", i, reportMessage.getFileIds() From ca2a44f2b95b911eb73cc1ce76970d966773ce79 Mon Sep 17 00:00:00 2001 From: deiflaender Date: Fri, 13 May 2022 16:56:04 +0200 Subject: [PATCH 05/13] RED-4036: Ignore non entry placeholders in excel --- .../ExcelTemplateReportGenerationService.java | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index a54bc2b..6a78abd 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -66,6 +66,7 @@ import lombok.extern.slf4j.Slf4j; @Slf4j @Service @RequiredArgsConstructor +@SuppressWarnings("PMD") public class ExcelTemplateReportGenerationService { public void generateReport(List reportEntries, @@ -79,15 +80,15 @@ public class ExcelTemplateReportGenerationService { for (Sheet sheet : workbook) { addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile); - for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ - replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); - } - for (String placeholder : placeholderModel.getPlaceholders()) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder()); - if (placeholderValue != null) { - replacePlaceholdersForTextPlaceholder(sheet, placeholder, placeholderValue); - } - } +// for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ +// replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); +// } +// for (String placeholder : placeholderModel.getPlaceholders()) { +// String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder()); +// if (placeholderValue != null) { +// replacePlaceholdersForTextPlaceholder(sheet, placeholder, placeholderValue); +// } +// } } long end = System.currentTimeMillis(); From 8879ff54323825ded6c1e3cc4c65724e413cba8d Mon Sep 17 00:00:00 2001 From: deiflaender Date: Fri, 13 May 2022 17:15:41 +0200 Subject: [PATCH 06/13] RED-4036: Optimized excel --- .../report/v1/server/model/ExcelModel.java | 17 ++++ .../ExcelTemplateReportGenerationService.java | 85 +++++++++++-------- .../service/ReportGenerationService.java | 8 +- .../RedactionReportIntegrationTest.java | 16 ++-- 4 files changed, 79 insertions(+), 47 deletions(-) create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java new file mode 100644 index 0000000..2eb8ae1 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java @@ -0,0 +1,17 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import java.util.Map; +import java.util.function.Function; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ExcelModel { + + private Map> placeholderCellPos; + private int placeholderRow; +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index 6a78abd..c79fbe8 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -32,11 +32,13 @@ import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.Function; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.imageio.ImageIO; +import com.iqser.red.service.redaction.report.v1.server.model.ExcelModel; import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.ClientAnchor; @@ -58,6 +60,7 @@ import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributes import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; +import com.iqser.red.service.redaction.report.v1.server.model.TextPlaceholderInput; import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; @@ -69,16 +72,17 @@ import lombok.extern.slf4j.Slf4j; @SuppressWarnings("PMD") public class ExcelTemplateReportGenerationService { - public void generateReport(List reportEntries, - PlaceholderModel placeholderModel, - String reportTemplateName, - XSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile) { + @SuppressWarnings("checkstyle:ParameterAssignment") + public ExcelModel generateReport(List reportEntries, + PlaceholderModel placeholderModel, + String reportTemplateName, + XSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile, ExcelModel excelModel) { long start = System.currentTimeMillis(); try { for (Sheet sheet : workbook) { - addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile); + excelModel =addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile, null); // for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ // replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); @@ -99,41 +103,47 @@ public class ExcelTemplateReportGenerationService { } catch (Exception e) { throw new RuntimeException(e); } + + return excelModel; } - private void addEntryRows(Sheet sheet, List reportEntries, String filename, - boolean isLastFile) { + @SuppressWarnings("checkstyle:ParameterAssignment") + private ExcelModel addEntryRows(Sheet sheet, List reportEntries, String filename, + boolean isLastFile, ExcelModel excelModel) { if (sheet == null) { - return; + return null; } if (sheet.getLastRowNum() == -1 && sheet.getRow(0) == null) { // This is the case when the sheet is empty! - return; + return null; } - Map placeholderCellPos = new HashMap<>(); - int placeholderRow = -1; - for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { - Row actualRow = sheet.getRow(j); - if (actualRow != null) { - for (int i = 0; i < actualRow.getLastCellNum(); i++) { - Cell cell = sheet.getRow(j).getCell(i); - if (cell != null && containsRedactionPlaceholder(cell.getStringCellValue())) { - placeholderCellPos.put(i, cell.getStringCellValue()); - placeholderRow = j; + if (excelModel == null) { + Map> placeholderCellPos = new HashMap<>(); + int placeholderRow = -1; + for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { + Row actualRow = sheet.getRow(j); + if (actualRow != null) { + for (int i = 0; i < actualRow.getLastCellNum(); i++) { + Cell cell = sheet.getRow(j).getCell(i); + if (cell != null && containsRedactionPlaceholder(cell.getStringCellValue())) { + placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getStringCellValue())); + placeholderRow = j; + } } } } + excelModel = new ExcelModel(placeholderCellPos, placeholderRow); } - AtomicInteger rowIndex = new AtomicInteger(placeholderRow); + AtomicInteger rowIndex = new AtomicInteger(excelModel.getPlaceholderRow()); if (rowIndex.get() != -1) { if (isLastFile) { @@ -148,21 +158,23 @@ public class ExcelTemplateReportGenerationService { if(reportEntries.isEmpty() && isLastFile) { sheet.createRow(rowIndex.get()); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { + for (Map.Entry> entry1 : excelModel.getPlaceholderCellPos().entrySet()) { sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(""); } } else { - + Map> placeholderCellPos = excelModel.getPlaceholderCellPos(); reportEntries.forEach(entry -> { sheet.createRow(rowIndex.get()); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(replaceTextPlaceholderWithEntries(entry, filename, entry1.getValue())); + for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { + sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); } rowIndex.getAndIncrement(); }); } } + excelModel.setPlaceholderRow(rowIndex.getAndIncrement()); + return excelModel; } @@ -172,39 +184,40 @@ public class ExcelTemplateReportGenerationService { } - private String replaceTextPlaceholderWithEntries(ReportRedactionEntry entry, String filename, String placeholder) { + private Function getFunctionForPlaceHolder(String placeholder) { if (placeholder.equals(FILE_NAME_PLACEHOLDER)) { - return filename; + return TextPlaceholderInput::getFilename; } if (placeholder.equals(PAGE_PLACEHOLDER)) { - return String.valueOf(entry.getPage()); + return (input) -> String.valueOf(input.getEntry().getPage()); } if (placeholder.equals(PARAGRAPH_PLACEHOLDER)) { - return entry.getSection(); + return (input) -> input.getEntry().getSection(); } if (placeholder.equals(JUSTIFICATION_PLACEHOLDER)) { - return entry.getJustification(); + return (input) -> input.getEntry().getJustification(); } if (placeholder.equals(JUSTIFICATION_PARAGRAPH_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_REASON_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_TEXT_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(EXCERPT_PLACEHOLDER)) { - return entry.getExcerpt(); + return (input) -> input.getEntry().getExcerpt(); } if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) { - return entry.getValue() != null ? entry.getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; + return (input) -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; } - throw new RuntimeException("invalid placeholder"); + // TODO in case placeholder is invalid -> do not replace with empty string but throw previus exception + return (input) -> ""; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index dbdfaba..90ca422 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -11,6 +11,7 @@ import com.iqser.red.service.redaction.report.v1.server.client.DossierClient; import com.iqser.red.service.redaction.report.v1.server.client.FileStatusClient; import com.iqser.red.service.redaction.report.v1.server.client.RedactionLogClient; import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateClient; +import com.iqser.red.service.redaction.report.v1.server.model.ExcelModel; import com.iqser.red.service.redaction.report.v1.server.model.MultiFileDocument; import com.iqser.red.service.redaction.report.v1.server.model.MultiFileWorkbook; import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; @@ -101,6 +102,7 @@ public class ReportGenerationService { var placeholderModel = generatePlaceholderService.buildPlaceholders(dossier); + ExcelModel excelModel = null; int i = 1; for (int j = 0; j < reportMessage.getFileIds().size(); j++) { @@ -118,9 +120,9 @@ public class ReportGenerationService { .size() - 1; for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) - excelTemplateReportGenerationService.generateReport(reportEntries, + excelModel = excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileWorkbook.getTemplateName(), - multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile); + multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile, excelModel); for (MultiFileDocument multiFileDocument : multiFileDocuments) { @@ -168,7 +170,7 @@ public class ReportGenerationService { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { XSSFWorkbook workbook = new XSSFWorkbook(is); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, workbook, fileStatus, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, workbook, fileStatus, dossier, true, null); byte[] template = excelTemplateReportGenerationService.toByteArray(workbook); String storageId = reportStorageService.storeObject(downloadId, template); return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId()); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index 7d85564..49b0795 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -232,8 +232,8 @@ public class RedactionReportIntegrationTest { var placeholders = generatePlaceholderService.buildPlaceholders(dossier); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false, null); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true, null); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/test_report_excel_template.xlsx")) { @@ -314,20 +314,20 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false,null); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,null); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template.xlsx")) { fileOutputStream.write(excelTemplateReport); } XSSFWorkbook workbook2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true,null); byte[] excelTemplateReport2 = excelTemplateReportGenerationService.toByteArray(workbook2); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template2.xlsx")) { fileOutputStream.write(excelTemplateReport2); } XSSFWorkbook workbook3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true,null); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(workbook3); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template3.xlsx")) { fileOutputStream.write(excelTemplateReport3); @@ -508,8 +508,8 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); var placeholders = generatePlaceholderService.buildPlaceholders(dossier); - excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true); + excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false,null); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,null); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_templateAAA.xlsx")) { fileOutputStream.write(excelTemplateReport); From b102237fb0fa476a0506e2805844b78e5b31217e Mon Sep 17 00:00:00 2001 From: deiflaender Date: Mon, 16 May 2022 09:10:06 +0200 Subject: [PATCH 07/13] RED-4036: Fixed bug in excel optimization --- .../v1/server/service/ExcelTemplateReportGenerationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index c79fbe8..290fd59 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -82,7 +82,7 @@ public class ExcelTemplateReportGenerationService { try { for (Sheet sheet : workbook) { - excelModel =addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile, null); + excelModel = addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile, excelModel); // for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ // replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); From c73234d29936bb4615788f91d96adca31b7bc74f Mon Sep 17 00:00:00 2001 From: deiflaender Date: Mon, 16 May 2022 09:24:54 +0200 Subject: [PATCH 08/13] RED-4036: Added more logs --- .../ExcelTemplateReportGenerationService.java | 4 +++ .../service/ReportGenerationService.java | 27 +++++++++---------- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index 290fd59..f5f1b54 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -126,6 +126,7 @@ public class ExcelTemplateReportGenerationService { if (excelModel == null) { + long start = System.currentTimeMillis(); Map> placeholderCellPos = new HashMap<>(); int placeholderRow = -1; for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { @@ -141,6 +142,7 @@ public class ExcelTemplateReportGenerationService { } } excelModel = new ExcelModel(placeholderCellPos, placeholderRow); + log.info("Calculate Placeholder Cells took: {}", System.currentTimeMillis() -start); } AtomicInteger rowIndex = new AtomicInteger(excelModel.getPlaceholderRow()); @@ -163,6 +165,7 @@ public class ExcelTemplateReportGenerationService { } } else { + long start = System.currentTimeMillis(); Map> placeholderCellPos = excelModel.getPlaceholderCellPos(); reportEntries.forEach(entry -> { sheet.createRow(rowIndex.get()); @@ -171,6 +174,7 @@ public class ExcelTemplateReportGenerationService { } rowIndex.getAndIncrement(); }); + log.info("Adding rows took: {}", System.currentTimeMillis() - start); } } excelModel.setPlaceholderRow(rowIndex.getAndIncrement()); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 90ca422..6028dca 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -21,9 +21,11 @@ import com.iqser.red.service.redaction.v1.model.ManualChange; import com.iqser.red.service.redaction.v1.model.RedactionLog; import com.iqser.red.service.redaction.v1.model.RedactionLogEntry; import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; + import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; + import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; import org.springframework.beans.factory.annotation.Value; @@ -58,6 +60,7 @@ public class ReportGenerationService { @Value("${redaction-report-service.numberOfReportGenerationThreads:4}") private int numberOfReportGenerationThreads; + @SneakyThrows public List generateReport(ReportRequestMessage reportMessage) { @@ -99,7 +102,6 @@ public class ReportGenerationService { } } - var placeholderModel = generatePlaceholderService.buildPlaceholders(dossier); ExcelModel excelModel = null; @@ -116,23 +118,21 @@ public class ReportGenerationService { // ExecutorService executor = Executors.newFixedThreadPool(numberOfReportGenerationThreads); - var isLastFile = j == reportMessage.getFileIds() - .size() - 1; + var isLastFile = j == reportMessage.getFileIds().size() - 1; - for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) - excelModel = excelTemplateReportGenerationService.generateReport(reportEntries, - placeholderModel, multiFileWorkbook.getTemplateName(), - multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile, excelModel); + for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { + excelModel = excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileWorkbook.getTemplateName(), multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile, excelModel); + } for (MultiFileDocument multiFileDocument : multiFileDocuments) { - wordReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileDocument.getTemplateName(), multiFileDocument.getDocument(), fileStatus, dossier, isLastFile); + wordReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileDocument.getTemplateName(), multiFileDocument.getDocument(), fileStatus, dossier, isLastFile); } for (ReportTemplate reportTemplate : singleFilesTemplates) { - storedFileInformation.add(createReportFromTemplate(dossier, fileStatus, placeholderModel, reportTemplate.getFileName(), reportMessage.getDownloadId(), reportEntries, reportTemplate)); + storedFileInformation.add(createReportFromTemplate(dossier, fileStatus, placeholderModel, reportTemplate.getFileName(), reportMessage.getDownloadId(), reportEntries, reportTemplate)); } @@ -162,10 +162,10 @@ public class ReportGenerationService { private StoredFileInformation createReportFromTemplate(Dossier dossier, FileModel fileStatus, - PlaceholderModel placeholderModel, - String templateName, - String downloadId, - List reportEntries, ReportTemplate reportTemplate) { + PlaceholderModel placeholderModel, String templateName, + String downloadId, List reportEntries, + ReportTemplate reportTemplate) { + if (reportTemplate.getFileName().endsWith(".xlsx")) { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { @@ -220,5 +220,4 @@ public class ReportGenerationService { return redactionLogConverterService.convertAndSort(redactionLog, legalBasisMappings); } - } From d8f39c42c1be891426c413c68ccf6d48301ec455 Mon Sep 17 00:00:00 2001 From: deiflaender Date: Mon, 16 May 2022 10:04:04 +0200 Subject: [PATCH 09/13] RED-4036: Changed excel to use SXSSFWorkbook --- .../report/v1/server/model/MultiFileWorkbook.java | 4 +++- .../ExcelTemplateReportGenerationService.java | 5 +++-- .../server/service/ReportGenerationService.java | 9 ++++++--- .../v1/server/RedactionReportIntegrationTest.java | 15 ++++++++++----- 4 files changed, 22 insertions(+), 11 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java index e874193..3775907 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java @@ -2,13 +2,15 @@ package com.iqser.red.service.redaction.report.v1.server.model; import lombok.AllArgsConstructor; import lombok.Data; + +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; @Data @AllArgsConstructor public class MultiFileWorkbook { - private XSSFWorkbook workbook; + private SXSSFWorkbook workbook; private String templateId; private String templateName; diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index f5f1b54..7e0284d 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -47,6 +47,7 @@ import org.apache.poi.ss.usermodel.Drawing; import org.apache.poi.ss.usermodel.Picture; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.springframework.stereotype.Service; @@ -76,7 +77,7 @@ public class ExcelTemplateReportGenerationService { public ExcelModel generateReport(List reportEntries, PlaceholderModel placeholderModel, String reportTemplateName, - XSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile, ExcelModel excelModel) { + SXSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile, ExcelModel excelModel) { long start = System.currentTimeMillis(); @@ -342,7 +343,7 @@ public class ExcelTemplateReportGenerationService { @SneakyThrows - public byte[] toByteArray(XSSFWorkbook workbook) { + public byte[] toByteArray(SXSSFWorkbook workbook) { try (ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream()) { workbook.write(byteArrayOutputStream); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 6028dca..b9da916 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -26,6 +26,7 @@ import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; import org.springframework.beans.factory.annotation.Value; @@ -79,7 +80,8 @@ public class ReportGenerationService { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { XSSFWorkbook workbook = new XSSFWorkbook(is); - MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(workbook, templateId, reportTemplate.getFileName()); + SXSSFWorkbook fastworkbook = new SXSSFWorkbook(workbook); + MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(fastworkbook, templateId, reportTemplate.getFileName()); multiFileWorkbooks.add(multiFileWorkbook); } catch (IOException e) { throw new RuntimeException("Could not generate multifile excel report."); @@ -170,8 +172,9 @@ public class ReportGenerationService { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { XSSFWorkbook workbook = new XSSFWorkbook(is); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, workbook, fileStatus, dossier, true, null); - byte[] template = excelTemplateReportGenerationService.toByteArray(workbook); + SXSSFWorkbook fastWorkbook = new SXSSFWorkbook(workbook); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, fastWorkbook, fileStatus, dossier, true, null); + byte[] template = excelTemplateReportGenerationService.toByteArray(fastWorkbook); String storageId = reportStorageService.storeObject(downloadId, template); return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId()); } catch (IOException e) { diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index 49b0795..243c61b 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -27,6 +27,7 @@ import com.iqser.red.service.redaction.v1.model.RedactionLog; import com.iqser.red.storage.commons.service.StorageService; import lombok.SneakyThrows; import org.apache.commons.io.IOUtils; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; import org.junit.Test; @@ -199,7 +200,7 @@ public class RedactionReportIntegrationTest { String dossierId = "dossierId"; ClassPathResource templateResource = new ClassPathResource("templates/TestReport.xlsx"); - XSSFWorkbook workbook = new XSSFWorkbook(templateResource.getInputStream()); + SXSSFWorkbook workbook = new SXSSFWorkbook(new XSSFWorkbook(templateResource.getInputStream())); ClassPathResource legalBasisMappingResource = new ClassPathResource("files/legalBasisMapping.json"); List legalBasisMapping = objectMapper.readValue(legalBasisMappingResource.getInputStream(), new TypeReference<>() { @@ -313,20 +314,23 @@ public class RedactionReportIntegrationTest { } ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); - XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); + XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); + SXSSFWorkbook workbook = new SXSSFWorkbook(wb); excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false,null); excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,null); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template.xlsx")) { fileOutputStream.write(excelTemplateReport); } - XSSFWorkbook workbook2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); + XSSFWorkbook wb2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); + SXSSFWorkbook workbook2 = new SXSSFWorkbook(wb2); excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true,null); byte[] excelTemplateReport2 = excelTemplateReportGenerationService.toByteArray(workbook2); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template2.xlsx")) { fileOutputStream.write(excelTemplateReport2); } - XSSFWorkbook workbook3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); + XSSFWorkbook wb3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); + SXSSFWorkbook workbook3 = new SXSSFWorkbook(wb3); excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true,null); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(workbook3); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template3.xlsx")) { @@ -506,7 +510,8 @@ public class RedactionReportIntegrationTest { .build()); ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); - XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); + XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); + SXSSFWorkbook workbook = new SXSSFWorkbook(wb); var placeholders = generatePlaceholderService.buildPlaceholders(dossier); excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false,null); excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,null); From 09423f4b5812aa5803a051a6d993dfd780f0fc4c Mon Sep 17 00:00:00 2001 From: deiflaender Date: Mon, 16 May 2022 11:28:04 +0200 Subject: [PATCH 10/13] RED-4036: Added readWorkbook and writeWorkbook as you cannot read from SXSSFWorkbook --- .../v1/server/model/MultiFileWorkbook.java | 3 +- .../ExcelTemplateReportGenerationService.java | 107 +++++++----------- .../service/ReportGenerationService.java | 20 ++-- .../RedactionReportIntegrationTest.java | 43 ++++--- 4 files changed, 84 insertions(+), 89 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java index 3775907..83df443 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java @@ -10,7 +10,8 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook; @AllArgsConstructor public class MultiFileWorkbook { - private SXSSFWorkbook workbook; + private XSSFWorkbook readWorkBook; + private SXSSFWorkbook writeWorkbook; private String templateId; private String templateName; diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index 7e0284d..95029d3 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -40,6 +40,7 @@ import javax.imageio.ImageIO; import com.iqser.red.service.redaction.report.v1.server.model.ExcelModel; import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; + import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.ClientAnchor; import org.apache.poi.ss.usermodel.CreationHelper; @@ -74,10 +75,9 @@ import lombok.extern.slf4j.Slf4j; public class ExcelTemplateReportGenerationService { @SuppressWarnings("checkstyle:ParameterAssignment") - public ExcelModel generateReport(List reportEntries, - PlaceholderModel placeholderModel, - String reportTemplateName, - SXSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile, ExcelModel excelModel) { + public ExcelModel generateReport(List reportEntries, PlaceholderModel placeholderModel, + String reportTemplateName, SXSSFWorkbook workbook, FileModel fileStatus, + Dossier dossier, boolean isLastFile, ExcelModel excelModel) { long start = System.currentTimeMillis(); @@ -98,8 +98,7 @@ public class ExcelTemplateReportGenerationService { long end = System.currentTimeMillis(); - log.info("Report Generation took: {} for file with id {}, pageCount: {}, redactionLogEntryCount: {}, reportName: {}, className: {}", end - start, - fileStatus.getId(), fileStatus.getNumberOfPages(), reportEntries.size(), reportTemplateName, getClass().getSimpleName()); + log.info("Report Generation took: {} for file with id {}, pageCount: {}, redactionLogEntryCount: {}, reportName: {}, className: {}", end - start, fileStatus.getId(), fileStatus.getNumberOfPages(), reportEntries.size(), reportTemplateName, getClass().getSimpleName()); } catch (Exception e) { throw new RuntimeException(e); @@ -109,75 +108,47 @@ public class ExcelTemplateReportGenerationService { } + public ExcelModel caculateExcelModel(Sheet sheet) { + long start = System.currentTimeMillis(); + Map> placeholderCellPos = new HashMap<>(); + int placeholderRow = -1; + for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { + Row actualRow = sheet.getRow(j); + if (actualRow != null) { + for (int i = 0; i < actualRow.getLastCellNum(); i++) { + Cell cell = sheet.getRow(j).getCell(i); + if (cell != null && containsRedactionPlaceholder(cell.getStringCellValue())) { + placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getStringCellValue())); + placeholderRow = j; + } + } + } + } + log.info("Calculate Placeholder Cells took: {}", System.currentTimeMillis() - start); + return new ExcelModel(placeholderCellPos, placeholderRow); + } @SuppressWarnings("checkstyle:ParameterAssignment") private ExcelModel addEntryRows(Sheet sheet, List reportEntries, String filename, - boolean isLastFile, ExcelModel excelModel) { - - if (sheet == null) { - return null; - } - - if (sheet.getLastRowNum() == -1 && sheet.getRow(0) == null) { - // This is the case when the sheet is empty! - return null; - } - - - if (excelModel == null) { - long start = System.currentTimeMillis(); - Map> placeholderCellPos = new HashMap<>(); - int placeholderRow = -1; - for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { - Row actualRow = sheet.getRow(j); - if (actualRow != null) { - for (int i = 0; i < actualRow.getLastCellNum(); i++) { - Cell cell = sheet.getRow(j).getCell(i); - if (cell != null && containsRedactionPlaceholder(cell.getStringCellValue())) { - placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getStringCellValue())); - placeholderRow = j; - } - } - } - } - excelModel = new ExcelModel(placeholderCellPos, placeholderRow); - log.info("Calculate Placeholder Cells took: {}", System.currentTimeMillis() -start); - } + boolean isLastFile, ExcelModel excelModel) { + long start = System.currentTimeMillis(); AtomicInteger rowIndex = new AtomicInteger(excelModel.getPlaceholderRow()); - if (rowIndex.get() != -1) { - if (isLastFile) { - if (reportEntries.size() > 1) { - sheet.shiftRows(rowIndex.get(), rowIndex.get() + reportEntries.size() - 1, reportEntries.size() - 1, true, true); - } - } else { - if(!reportEntries.isEmpty()) { - sheet.shiftRows(rowIndex.get(), rowIndex.get() + reportEntries.size(), reportEntries.size(), true, true); - } + Map> placeholderCellPos = excelModel.getPlaceholderCellPos(); + reportEntries.forEach(entry -> { + sheet.createRow(rowIndex.get()); + for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { + sheet.getRow(rowIndex.get()) + .createCell(entry1.getKey()) + .setCellValue(entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); } + rowIndex.getAndIncrement(); + }); + log.info("Adding rows took: {}", System.currentTimeMillis() - start); - if(reportEntries.isEmpty() && isLastFile) { - sheet.createRow(rowIndex.get()); - for (Map.Entry> entry1 : excelModel.getPlaceholderCellPos().entrySet()) { - sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(""); - } - - } else { - long start = System.currentTimeMillis(); - Map> placeholderCellPos = excelModel.getPlaceholderCellPos(); - reportEntries.forEach(entry -> { - sheet.createRow(rowIndex.get()); - for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { - sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); - } - rowIndex.getAndIncrement(); - }); - log.info("Adding rows took: {}", System.currentTimeMillis() - start); - } - } excelModel.setPlaceholderRow(rowIndex.getAndIncrement()); return excelModel; } @@ -219,7 +190,10 @@ public class ExcelTemplateReportGenerationService { return (input) -> input.getEntry().getExcerpt(); } if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) { - return (input) -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; + return (input) -> input.getEntry().getValue() != null ? input.getEntry() + .getValue() + .replaceAll("\n", " ") + .replaceAll(" ", " ") : ""; } // TODO in case placeholder is invalid -> do not replace with empty string but throw previus exception return (input) -> ""; @@ -352,5 +326,4 @@ public class ExcelTemplateReportGenerationService { } } - } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index b9da916..fef4ac4 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -26,6 +26,7 @@ import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; +import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; @@ -38,9 +39,6 @@ import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; @Slf4j @Service @@ -79,9 +77,12 @@ public class ReportGenerationService { if (reportTemplate.getFileName().endsWith(".xlsx")) { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { - XSSFWorkbook workbook = new XSSFWorkbook(is); - SXSSFWorkbook fastworkbook = new SXSSFWorkbook(workbook); - MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(fastworkbook, templateId, reportTemplate.getFileName()); + XSSFWorkbook readWorkbook = new XSSFWorkbook(is); + SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); + for(Sheet sheet: readWorkbook){ + writeWorkbook.createSheet(sheet.getSheetName()); + } + MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(readWorkbook, writeWorkbook, templateId, reportTemplate.getFileName()); multiFileWorkbooks.add(multiFileWorkbook); } catch (IOException e) { throw new RuntimeException("Could not generate multifile excel report."); @@ -123,7 +124,10 @@ public class ReportGenerationService { var isLastFile = j == reportMessage.getFileIds().size() - 1; for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { - excelModel = excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileWorkbook.getTemplateName(), multiFileWorkbook.getWorkbook(), fileStatus, dossier, isLastFile, excelModel); + if(excelModel == null){ + excelModel = excelTemplateReportGenerationService.caculateExcelModel(multiFileWorkbook.getReadWorkBook().getSheetAt(0)); + } + excelModel = excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileWorkbook.getTemplateName(), multiFileWorkbook.getWriteWorkbook(), fileStatus, dossier, isLastFile, excelModel); } for (MultiFileDocument multiFileDocument : multiFileDocuments) { @@ -148,7 +152,7 @@ public class ReportGenerationService { } for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { - byte[] template = excelTemplateReportGenerationService.toByteArray(multiFileWorkbook.getWorkbook()); + byte[] template = excelTemplateReportGenerationService.toByteArray(multiFileWorkbook.getWriteWorkbook()); String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); storedFileInformation.add(new StoredFileInformation(null, storageId, ReportType.EXCEL_TEMPLATE_MULTI_FILE, multiFileWorkbook.getTemplateId())); } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index 243c61b..1d1f4b6 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -30,6 +30,7 @@ import org.apache.commons.io.IOUtils; import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -185,6 +186,7 @@ public class RedactionReportIntegrationTest { } @Test + @Ignore public void testExcelTemplateReportGeneration() throws IOException { ClassPathResource redactionLogResource = new ClassPathResource("files/redactionLog.json"); @@ -200,7 +202,10 @@ public class RedactionReportIntegrationTest { String dossierId = "dossierId"; ClassPathResource templateResource = new ClassPathResource("templates/TestReport.xlsx"); - SXSSFWorkbook workbook = new SXSSFWorkbook(new XSSFWorkbook(templateResource.getInputStream())); + XSSFWorkbook wb = new XSSFWorkbook(templateResource.getInputStream()); + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); + SXSSFWorkbook workbook = new SXSSFWorkbook(); + workbook.createSheet("Test Row Peformance"); ClassPathResource legalBasisMappingResource = new ClassPathResource("files/legalBasisMapping.json"); List legalBasisMapping = objectMapper.readValue(legalBasisMappingResource.getInputStream(), new TypeReference<>() { @@ -233,8 +238,8 @@ public class RedactionReportIntegrationTest { var placeholders = generatePlaceholderService.buildPlaceholders(dossier); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false, null); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true, null); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false, excelModel); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true, excelModel); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/test_report_excel_template.xlsx")) { @@ -315,23 +320,33 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); - SXSSFWorkbook workbook = new SXSSFWorkbook(wb); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false,null); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,null); + + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); + SXSSFWorkbook workbook = new SXSSFWorkbook(); + workbook.createSheet("Test Row Peformance"); + + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false,excelModel); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,excelModel); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template.xlsx")) { fileOutputStream.write(excelTemplateReport); } XSSFWorkbook wb2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - SXSSFWorkbook workbook2 = new SXSSFWorkbook(wb2); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true,null); + + var excelModel2 = excelTemplateReportGenerationService.caculateExcelModel(wb2.getSheetAt(0)); + SXSSFWorkbook workbook2 = new SXSSFWorkbook(); + workbook2.createSheet("Test Row Peformance"); + + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true,excelModel2); byte[] excelTemplateReport2 = excelTemplateReportGenerationService.toByteArray(workbook2); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template2.xlsx")) { fileOutputStream.write(excelTemplateReport2); } XSSFWorkbook wb3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - SXSSFWorkbook workbook3 = new SXSSFWorkbook(wb3); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true,null); + var excelModel3 = excelTemplateReportGenerationService.caculateExcelModel(wb2.getSheetAt(0)); + SXSSFWorkbook workbook3 = new SXSSFWorkbook(); + workbook3.createSheet("Test Row Peformance"); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true,excelModel3); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(workbook3); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template3.xlsx")) { fileOutputStream.write(excelTemplateReport3); @@ -511,10 +526,12 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); - SXSSFWorkbook workbook = new SXSSFWorkbook(wb); + SXSSFWorkbook workbook = new SXSSFWorkbook(); + workbook.createSheet("Test Row Peformance"); var placeholders = generatePlaceholderService.buildPlaceholders(dossier); - excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false,null); - excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,null); + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); + excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false,excelModel); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,excelModel); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_templateAAA.xlsx")) { fileOutputStream.write(excelTemplateReport); From 70ca1910b368d721d504c9104e55199699c146b3 Mon Sep 17 00:00:00 2001 From: deiflaender Date: Mon, 16 May 2022 13:21:31 +0200 Subject: [PATCH 11/13] RED-4036: Copy colmn style and non entry cells in excel reports --- .../v1/server/model/CellIdentifier.java | 15 ++++++ .../report/v1/server/model/ExcelModel.java | 11 +++- .../ExcelTemplateReportGenerationService.java | 47 +++++++++++++++--- .../RedactionReportIntegrationTest.java | 2 +- .../resources/templates/Excel Report.xlsx | Bin 9629 -> 9494 bytes 5 files changed, 65 insertions(+), 10 deletions(-) create mode 100644 redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java new file mode 100644 index 0000000..3ea576b --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java @@ -0,0 +1,15 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class CellIdentifier { + + private int rowIndex; + private int columnIndex; + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java index 2eb8ae1..de58b9d 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java @@ -1,8 +1,11 @@ package com.iqser.red.service.redaction.report.v1.server.model; +import java.util.HashMap; import java.util.Map; import java.util.function.Function; +import org.apache.poi.ss.usermodel.Cell; + import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -12,6 +15,10 @@ import lombok.NoArgsConstructor; @AllArgsConstructor public class ExcelModel { - private Map> placeholderCellPos; - private int placeholderRow; + private Map> placeholderCellPos; + private int placeholderRow; + private Map cellWidths = new HashMap<>(); + private Map cellsToCopy = new HashMap<>(); + private boolean copyDone; + } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index 95029d3..c0853b6 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -29,8 +29,10 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Base64; import java.util.HashMap; +import java.util.HashSet; import java.util.List; import java.util.Map; +import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import java.util.function.Function; import java.util.regex.Matcher; @@ -38,10 +40,12 @@ import java.util.regex.Pattern; import javax.imageio.ImageIO; +import com.iqser.red.service.redaction.report.v1.server.model.CellIdentifier; import com.iqser.red.service.redaction.report.v1.server.model.ExcelModel; import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.ClientAnchor; import org.apache.poi.ss.usermodel.CreationHelper; import org.apache.poi.ss.usermodel.Drawing; @@ -83,6 +87,28 @@ public class ExcelTemplateReportGenerationService { try { for (Sheet sheet : workbook) { + if(!excelModel.isCopyDone()) { + for (Map.Entry colummWidthEntry : excelModel.getCellWidths().entrySet()) { + sheet.setColumnWidth(colummWidthEntry.getKey(), colummWidthEntry.getValue()); + } + + Set createdRows = new HashSet<>(); + for (Map.Entry cellsToCopyEntry : excelModel.getCellsToCopy().entrySet()) { + if (!createdRows.contains(cellsToCopyEntry.getKey().getRowIndex())) { + sheet.createRow(cellsToCopyEntry.getKey().getRowIndex()); + createdRows.add(cellsToCopyEntry.getKey().getRowIndex()); + } + + var createdCell = sheet.getRow(cellsToCopyEntry.getKey().getRowIndex()) + .createCell(cellsToCopyEntry.getKey().getColumnIndex()); + createdCell.setCellValue(cellsToCopyEntry.getValue().getStringCellValue()); + CellStyle newCellStyle = workbook.createCellStyle(); + newCellStyle.cloneStyleFrom(cellsToCopyEntry.getValue().getCellStyle()); + createdCell.setCellStyle(newCellStyle); + } + excelModel.setCopyDone(true); + } + excelModel = addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile, excelModel); // for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ @@ -112,21 +138,29 @@ public class ExcelTemplateReportGenerationService { long start = System.currentTimeMillis(); Map> placeholderCellPos = new HashMap<>(); + Map columnWidths = new HashMap<>(); + Map cellsToCopy = new HashMap<>(); int placeholderRow = -1; for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { Row actualRow = sheet.getRow(j); if (actualRow != null) { for (int i = 0; i < actualRow.getLastCellNum(); i++) { Cell cell = sheet.getRow(j).getCell(i); - if (cell != null && containsRedactionPlaceholder(cell.getStringCellValue())) { - placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getStringCellValue())); - placeholderRow = j; + if (cell != null) { + if (containsRedactionPlaceholder(cell.getStringCellValue())) { + int columnWidth = sheet.getColumnWidth(i); + columnWidths.put(i, columnWidth); + placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getStringCellValue())); + placeholderRow = j; + } else { + cellsToCopy.put(new CellIdentifier(j, i), cell); + } } } } } log.info("Calculate Placeholder Cells took: {}", System.currentTimeMillis() - start); - return new ExcelModel(placeholderCellPos, placeholderRow); + return new ExcelModel(placeholderCellPos, placeholderRow, columnWidths, cellsToCopy, false); } @@ -141,9 +175,8 @@ public class ExcelTemplateReportGenerationService { reportEntries.forEach(entry -> { sheet.createRow(rowIndex.get()); for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { - sheet.getRow(rowIndex.get()) - .createCell(entry1.getKey()) - .setCellValue(entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); + Cell cell = sheet.getRow(rowIndex.get()).createCell(entry1.getKey()); + cell.setCellValue(entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); } rowIndex.getAndIncrement(); }); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index 1d1f4b6..a2f5f8a 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -527,7 +527,7 @@ public class RedactionReportIntegrationTest { ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); SXSSFWorkbook workbook = new SXSSFWorkbook(); - workbook.createSheet("Test Row Peformance"); + workbook.createSheet("Test Row Peformance"); var placeholders = generatePlaceholderService.buildPlaceholders(dossier); var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false,excelModel); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel Report.xlsx b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel Report.xlsx index b2400ff105ac3061dde048d79b76528744839f0d..98f9e790527c28d820747989299e7b0cd16567fa 100644 GIT binary patch delta 3374 zcmZ8kX*kpk_nx6JD#T=+G-@nUmXUoO`);xgSxQJ_YwS{kUrmTa%t)4|%`*0FFqV)l zLP&OF%aRdk5!v78dH(PJdamm|AI|x5e>vB=?{l9+F;6oq-{$~KQY6^6SwNt6HV}v# z1OkQo$=&h~@^$z3_mvI5>6e3@#Al;;B3-=?!P^v~DICIC5HxH*aRu9`T?z{zp7Nm8 zc=KZSw@&MuWG&@RzHX<>cj7d0v2%;1vweKnOw$y2#N4?D5AAMP6!V1u^nl&2kFjx& z0+3$BO}p$K;NzBmTZvs(ZmI}7C>mphw-6#c#{@g^M2eZ8e_Kf^gtO)OtTAn@Nz7+9 zwgGbA_q#4|@a5~q4I85td^&8@$=+BiH(?$_HF+J^FU3PLPAO4GO5r}XPw?jxc;RV} z6li6-DYiL3hMi0d(_oD0xq)%yAH(mR+KRda-t;~o>HOuwoU{wU;DM|9JH5avLGXo3 z%eOr)?bxB;&`5XXSY!M1JBXs?xKoWpx5FMU!5plwcx=xu!YO=#|K-Pk4%JAnoUh51 zdzPFc$Rrr1Dg)O$Ag!yF-Yui$XoXcP5M;j)OHFw5(YkN6`~C7mI|k!kvUB*Dpy7RZ zm4+@L=z-7YZ67FrvW0|y|5}t;R6(sf5~HEA;okv`X=jPNS2jRWlrWF9wD@NCP_nCG zboLG1(O&42fgsN_6|!@S`1On}qvs2n0tfmp5!F`-vtjxrLe0%A*YZExM~@n*p_(%H zqjeZ0NsePj&>Gj*PB93F{lCKRwqcsl!5TCG-+$V8s!pTDt)KF^VkTqb&Ot~`I9SdO zN+sDzpra?;CGw92YANiWZ5Sc$*Se2?-R?h_3%q$)>U~pg#MXI8RB&p=!FsHKM!0^K zJb9!}cWmuGdN&Nb)e2ggoH*#ZNS0hKr#kNHj;pf|f<^z7e@tFXEV&HfT!Rj_1X%(D zkWR<8K=5PVEWV^^5mKn`(aO;EICaRkE>aLiehBZ3UrTJe+_4D_eKM#1dMyDthwPdT z3(NLT48cYD*lw{0219&t-aX?sAM=`ql|=6;3WX0Q5WOZIv#1EpCnfyQ43VVZmt~g{ z49{@q(U>5jhVV$fJp7Uf?}XH!pMs2m;kB!RB9;x>_&=?(16O-`ebGAE0EnEz3I!4` zNhWX{0fEN2K%f)0yeXt zs*EeWy|5)E&?pCcNazO#Wjtz}%CJA5LX714qH)W0=|#Phs+>i&i*kktVb~D!L9ZADgjby?I zh)OEV6VCJbN+)!9jlZ^%*-K7tFGKn>z;5;eXcimW-@9(>rz)pyKd86_M6Oo2P-Snt zpeNdeoO?SYn?BIWBpSqEs2H<5Dx)tbUL6aXQy)~{;S;5iIQ;?VD*d>fvsBl ztjeR0fNB&vnXJKMp=T=CPtfniKyB1~8s0NBFNx-D1@0U!Z^tlmi9{btS!D`6$q+p| z#-6c!Vl|H}!GRS+0CA)Wk*2PX7@bsD9+2l!TjcRBgZH}}gi4wN4^2f<@F zP-|ybYl~I3eYpW7l_c*L} z;EjCFQLCPBq~)lNf!ddw;sGP9+p>;^+O0qR z(fc|67J!R^j+(#ONJWqm#tqASKwXU4;O1lm{XCElw(4pZL-gN-EsSrZd-C*1-w#p1 z`TTysvyf3@^gLdnx*MM6$i}?U_i(m9=SyYR%nh-a&Qjq2&~Ep0ZG}p~q8%se3$z)Y|XjUn3j;T2aYCQ_T8$ z4V>87+k&qO?!7~dAWfH9+Gjt{N4qwbvKG70&?YLo3SH@b`a-nf=&?N^RSAGi(KZTT z>zjQH(9Ue{y9sO}N0@Rlu(-K37_^^(KJ#>oxg*crh;+m>nzp;kB|i0)dtRLOHS{?t zx%i;IK6Wp`+yw9?vYMeXs#!|U`!Jq$e%NH{-Jd$VC{#0fu)uM{b@F*EP^jX~lSVxySbdC>Cjt14UiOMFH{em3n({!BQ=+2+dD#ZV*+dv<{|0pk<8yQH$pJ zXrMb9s3XaeAG7k)#&`gB&i5y6ci*srKpYUVn;;yx;y;0c#;!}Qp$(eYJ0U2Y=)#qu z5|vL?-{vP&CEHt*6egkd1&5KHu}2U&TuNpUyc+Al(|j+a@taQKm#$G1Ep^9G;t<8w z)JjKzh0d+rmQ+OFue^nBMXO|7z`~8~gDH31>bqf(wyxehrww7I4;lKJ?ZebS)xfNo zXECrOdS)%NeuPCX+vGxKE;HIkRwM}CyQXy97Hjj?_*{*!FmU&>6(bvP=otxBlqqfT z#;Z(*!5`sIR*=kgzHo@g^Z$Af>LKllEGG0DxgZD$xLAkj-1uJt8CB2`RoiVb60_x( z=eB}+w#!CN&rVru`N`_6+mErH>P|qvD}pV*o&S%dZl#N%trWeR3$2h z`pTIg)?Bj)AF%b zrqBT7bU_mBRf5AiKbCLc7^FnlNj~1-xkWz4z1C6x3bw7?YvSC>UhDIFO}|3U0J{f8 zmiCMmigojKrmw|Aj9LC4`)!)3^0Ot!Oqw5~EJ~rFA3j=bY-u6+NKZK_K5gz&2ixMV z;4StLWuezDeiW7Z9{z|;UdBhMmhjYtFY&I{?o4a7l_%pN>04>8)~~bk+sDSAU7_v; z*tzdrx~CYG3H)Uehll?pKY--SMMUu!(g%B4q!-29CnU}q&~-Vi(NO&h_!*@2>esTm zV2R*$i@JKQ`*`&!Q|(0mi;!zNLo|X^#F}~X8H3IDQ~tft^bbxLysvui&E%v4){ zkdZ1KOTu<6ldU}z&0)`61BI^*PtF#|#r}9^T&Xf6tgN51aTFvVeOj%PSpN54WtJ2S=!dx96eVn(~ zLg((%H&f0&ozt~CV_j#i*IlHm0GVnDKcCj7c=Y{nMB>XpVo?VAHqtci=Te=WN>eI$zkpl1=$T)a=|#tg_RG6>(#t zm@cervW5>gImy2?7X0;{I^ugRqVd$h_Ua3%)bJBPym`N5EhM2S>}|w?tiTmHYHq1a zUDmv;%-GZEVV6BSyG6StfxqvABkYBz!)b)m+TfEXXk5GrQ#ofn$+| z_c%rJ&35*W%QfGLWW5(jkYa(u0u)QxW6y$k-vo5Kk6CelQ)(3z{uan@Z+{_KAj>B& zT48!9oiSX^o2+>!Kz!eFHEelSKeVB&a^6H}1*Owlv~~0%1Okn`sWdt-{rt!hwv2ys@(6XX3E2-J0sD9Lf^1t`K@B6#I|9d{1^Wi+-&Uw!BoE(#4Q~Ylh3?I2LOP&D$U}6RUxB&n_ zI8xz0`X0g)jYi0aqmUK0F6cQ$P)unH4S1p%Dku_Py>T-RncensbMWY~ndf8M!BOOk z2UTZO7peG$)yjD>yqDYB@j}$t>oM(Z$R|xDRBMKe7@TfD?@!yF)hqhk)O@h`m;;0z zlI1Nkr;K@|Heya@qsUCr04x{$2^SyoECNc7#TgQrJqgsP`_s>l~%;mZc& z5*R^Jwn)lLyqRghteG*p`t{=<y+hnf?Ho?y7s8qMeW8y$q8~F$EAj3 zq+h_Yer21^xyu9>r>!>bd8=|7ep)EySb0*K{;3i?mXHn}HC8F$y4>ROdb;8Yj_P_axej^(0fl0O?~thql>Zu zrNfvSkA8b1i?-h!}??uHkg_8wO;4oe8%RP^82oRO5%7pDq=vb+k)?K#$j z`Z$D_ppCpM+R_BWt5&EeOM*{`rM(%8!SdmK<}iVa<&8-M-yoWYg+3SdvpP{R zNYq^;3Wb~p59>+iX~;zP*cX_GN_j__iU8G^Eh)EnM^>Z{`(*fz}IYTDb!y%3=L7zfq91?-_3I3Z;{SGMfXH||fEq7YaE_JF&=yXMF^to}sa)QS4gRt%{ z2%(52v;Kx1+gieJYWls81xEJ~YDlhk4&KLUAn+6G7vNKaa0RnaX95ZQ@%)k(N=Ei$ zLon_Any1QMr^O_pTo*%-qf+Y*v`1sl{O2}0-7N(uEzCev?x{dMk*f19TVUqhjz!=d z_5#P6gaF=}(08ayINL;nrz~Q+6J^gkelW+MR{hct;j|@xC*Z7AooY^!*c+%!Z>a_Q zXOnH&NeztgbBSJ#kuiBSLtE41Ptrdg`-i{umO{iZx5m{WTro}aLCqrUeh~)rU#Oy3 z;~VAnB{I=8Ei)~NS@JfVWpjdCX$+w~79uVX zS!{Kj6CWsq#SFks@xQnQXRkKdt(&vvXVCDvWJOJTJV@hvGII3?2W6>Pr!R%8x(5qO zSJ2&$b63UM*5n7U^M)r<*M47~fwKz?cgr2LgMUTVuWO}bus`aC6`9*x+v4Md{J{^` zbW{r2>=4ThD_fkg2ojbo`w}X*Kijer@`n>7ZP5^u+{a#Fb5*n?DD$*F7Q6V~wH=XU zfT_6$CYU<&4B8ug*;QZWWauZ~6u>LEUt~Gi#=E+e?z+r~_QSb1y|>4=?Y^-O(W|l) zx$@W@+SSpW=xFb7$|#9$F{=vJ0*@E8$rwsDsLEHndy%*3fZ(ZFdpS|Gh3+8o8}pjWwxdlR^YcKc zpU))F8YIuT`OQyWAZs3F75LuFB4$n11~WB_yW;IRZFVD&s6$$0S`8a{xIB2dha~G} zSlr_^rt)?L2CXF62EM|d+>vuW$f*ii2reV->#*m74-W~XFna;7u!E5i27B|xZ=vu_ z-*Qb_DV%U)}Ri0uBmIkSA0MuPL=k3YRa1VP)NVcKiBt`Bby|sbPJ@5km2$W|O`sujqVi56m;@4vZp(O>ee&yu;sBZ65>ol^v2zsvp*5?i`B$eIi|Z&zDyMXjo7n?IU^UG(%A ze2I!B*e-Q`PGgj)_`{L0r2lI){EG6O1@P;nBllvJPz#5mG?oAlwmay1`@eml1sOvT zt~}29{P*_RQWq4oV;uxj7Tegm4UMW@EFj+tuT@&yE+ZwIGeAqSC;^zAy_vvjgxqfV zC4c=%iF~UOA9IU%QYY49*qZIwyWc`@+Y-p06!qtlZPQ&%^JJ%>g8A(RK31H-&AQ5r zv)9-RqvVsxD%G6EOEWRvUh?I*0dx|%j_6NqENTJGz-)f7|>S9QGjA2-cdsHFWSpSsEz(Evr+@`HzYm^PIE=f(9@Z=E{h8mN@1w2YtytvePw^H~O2Y%A z5x6L#MR;IG>QrZ%{5zL8M_};1J*Cj;`&H%ySyLza7p-UvgeY+ASCQ686X{fWB@I<|k$6m(uRr(Z_$OGdR# zc^+$ONwZwi&8AHH$`%&G#=MVT*Oe=;Mdn_McNBTUiT}E)cc0ukAKEb*QdHo2yDWpG z>jNDOSIVc6KQlD9@pIC#v25#(2+{!nDfF4+0{oad>$ettiog!>J?@O?))~S# zt_4ej@e+j}hMp~lLQJMHgIs^C&_k^Mn4d_2Uq1?XJKa8xd{mOvd`Y3HNV%ncD@zD+ z))Ckccnt?2Fl@`&MJM;$|5(*G200u$*0geXbnrZMe8MChEIt=Lp@9~;xz4PEGh8T*D3smz$CyBoLBg%AR=`&2Sh5kw5efaf);>G=6&8Q6SAXh$3$=S#0 zj4g`R8>?AzU)46^C4@;i9ZLLF-V7y0_KD1uc&sAVPVuW{t2oPt8An*W&3=*}yGds_ zHs|z~`#NBT@>)=DBWLQ~-e~TPV2Xtw`;ereg+|X5SCThIR%SrN-@f4qy|tBJ*}11B zzPOaLp!3dKv|qqY~{uRb%U_VzjJ!{zR?!vK+n_gmwUf+$8BUrfQGR{t%V%Jw?O zw3@8)8(7ZUlD{Joa@{&R;<~#uL3BVa82@_)z4HK8SD23yvYMI7@4?MUg|W-lUK&a^ zhuZY=p#z-Fb~YVZjV=p28)GiE3#lJlE$-BQgIOo2a{v!EW8%zo>GezBtL?+OItrH3 zAn=HsrpYYxuixrm!^wBg7R)=TWYY?Ci&HHPVlg529i(jc1!=hFB$BWY)al%u0;Vvq z{rf9rI*Tg{{C}hO7s>uNOfqZ4)#-*aSH-Ug{(FG|0N(!t{8Np2Go>UTg8yzi008 Date: Mon, 16 May 2022 13:51:12 +0200 Subject: [PATCH 12/13] RED-4036: Fixed singleFile excel reports --- .../v1/server/service/ReportGenerationService.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index fef4ac4..69613d9 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -175,10 +175,14 @@ public class ReportGenerationService { if (reportTemplate.getFileName().endsWith(".xlsx")) { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { - XSSFWorkbook workbook = new XSSFWorkbook(is); - SXSSFWorkbook fastWorkbook = new SXSSFWorkbook(workbook); - excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, fastWorkbook, fileStatus, dossier, true, null); - byte[] template = excelTemplateReportGenerationService.toByteArray(fastWorkbook); + XSSFWorkbook readWorkbook = new XSSFWorkbook(is); + SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); + for(Sheet sheet: readWorkbook){ + writeWorkbook.createSheet(sheet.getSheetName()); + } + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(readWorkbook.getSheetAt(0)); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, writeWorkbook, fileStatus, dossier, true, excelModel); + byte[] template = excelTemplateReportGenerationService.toByteArray(writeWorkbook); String storageId = reportStorageService.storeObject(downloadId, template); return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId()); } catch (IOException e) { From f34f113d95a22f1ac6e6b5206a4dbef36d45ea42 Mon Sep 17 00:00:00 2001 From: deiflaender Date: Mon, 16 May 2022 14:17:26 +0200 Subject: [PATCH 13/13] RED-4036: Cleanup logs --- .../service/ExcelTemplateReportGenerationService.java | 4 ++-- .../report/v1/server/service/ReportGenerationService.java | 8 -------- .../v1/server/service/WordReportGenerationService.java | 4 ++-- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index c0853b6..eb1997b 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -159,7 +159,7 @@ public class ExcelTemplateReportGenerationService { } } } - log.info("Calculate Placeholder Cells took: {}", System.currentTimeMillis() - start); + log.debug("Calculate Placeholder Cells took: {}", System.currentTimeMillis() - start); return new ExcelModel(placeholderCellPos, placeholderRow, columnWidths, cellsToCopy, false); } @@ -180,7 +180,7 @@ public class ExcelTemplateReportGenerationService { } rowIndex.getAndIncrement(); }); - log.info("Adding rows took: {}", System.currentTimeMillis() - start); + log.debug("Adding rows took: {}", System.currentTimeMillis() - start); excelModel.setPlaceholderRow(rowIndex.getAndIncrement()); return excelModel; diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 69613d9..26415d1 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -56,9 +56,6 @@ public class ReportGenerationService { private final ExcelTemplateReportGenerationService excelTemplateReportGenerationService; private final GeneratePlaceholderService generatePlaceholderService; - @Value("${redaction-report-service.numberOfReportGenerationThreads:4}") - private int numberOfReportGenerationThreads; - @SneakyThrows public List generateReport(ReportRequestMessage reportMessage) { @@ -119,8 +116,6 @@ public class ReportGenerationService { List reportEntries = getReportEntries(reportMessage.getDossierId(), reportMessage.getFileIds() .get(j), fileStatus.isExcluded()); -// ExecutorService executor = Executors.newFixedThreadPool(numberOfReportGenerationThreads); - var isLastFile = j == reportMessage.getFileIds().size() - 1; for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { @@ -142,9 +137,6 @@ public class ReportGenerationService { } -// executor.shutdown(); -// executor.awaitTermination(1, TimeUnit.DAYS); - long end = System.currentTimeMillis(); log.info("Successfully processed {}/{} fileIds for downloadId {}, took {}", i, reportMessage.getFileIds() .size(), reportMessage.getDownloadId(), end - start); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java index 6ab5e81..339a982 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java @@ -56,7 +56,7 @@ public class WordReportGenerationService { var placeholderFunctions = computePlaceholderPos(table); addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderFunctions); long t2 = System.currentTimeMillis(); - log.warn("Table time: {}", (t2 - t1)); + log.debug("Table time: {}", (t2 - t1)); t1 = System.currentTimeMillis(); replaceTextPlaceholders(doc, placeholderModel, dossier, fileStatus, table, reportEntries); @@ -66,7 +66,7 @@ public class WordReportGenerationService { } t2 = System.currentTimeMillis(); - log.warn("Text time: {}", (t2 - t1)); + log.debug("Text time: {}", (t2 - t1)); long end = System.currentTimeMillis();