diff --git a/redaction-service-v1/redaction-service-api-v1/pom.xml b/redaction-service-v1/redaction-service-api-v1/pom.xml index c82f4d40..35d87a66 100644 --- a/redaction-service-v1/redaction-service-api-v1/pom.xml +++ b/redaction-service-v1/redaction-service-api-v1/pom.xml @@ -12,7 +12,7 @@ redaction-service-api-v1 - 1.254.0 + 1.299.0 diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/classification/service/BlockificationService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/classification/service/BlockificationService.java index 3a089db4..d8c85d55 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/classification/service/BlockificationService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/classification/service/BlockificationService.java @@ -2,6 +2,13 @@ package com.iqser.red.service.redaction.v1.server.classification.service; import static java.util.stream.Collectors.toSet; +import java.util.ArrayList; +import java.util.Comparator; +import java.util.Iterator; +import java.util.List; + +import org.springframework.stereotype.Service; + import com.iqser.red.service.redaction.v1.server.classification.model.FloatFrequencyCounter; import com.iqser.red.service.redaction.v1.server.classification.model.Orientation; import com.iqser.red.service.redaction.v1.server.classification.model.Page; @@ -15,13 +22,6 @@ import com.iqser.red.service.redaction.v1.server.tableextraction.model.Rectangle import com.iqser.red.service.redaction.v1.server.tableextraction.model.Ruling; import com.iqser.red.service.redaction.v1.server.tableextraction.model.Table; -import org.springframework.stereotype.Service; - -import java.util.ArrayList; -import java.util.Comparator; -import java.util.Iterator; -import java.util.List; - @Service @SuppressWarnings("all") public class BlockificationService { @@ -48,10 +48,12 @@ public class BlockificationService { boolean startFromTop = word.getY1() > maxY + word.getHeight(); boolean splitByX = prev != null && maxX + 50 < word.getX1() && prev.getY1() == word.getY1(); boolean newLineAfterSplit = prev != null && word.getY1() != prev.getY1() && wasSplitted && splitX1 != word.getX1(); - boolean splittedByRuling = word.getRotation() == 0 && isSplittedByRuling(maxX, minY, word.getX1(), word.getY1(), verticalRulingLines) || word - .getRotation() == 0 && isSplittedByRuling(minX, minY, word.getX1(), word.getY2(), horizontalRulingLines) || word - .getRotation() == 90 && isSplittedByRuling(maxX, minY, word.getX1(), word.getY1(), horizontalRulingLines) || word - .getRotation() == 90 && isSplittedByRuling(minX, minY, word.getX1(), word.getY2(), verticalRulingLines); + boolean splittedByRuling = + isSplittedByRuling(maxX, minY, word.getX1(), word.getY1(), verticalRulingLines) || + isSplittedByRuling(minX, minY, word.getX1(), word.getY2(), horizontalRulingLines) + + || isSplittedByRuling(maxX, minY, word.getX1(), word.getY1(), horizontalRulingLines) + || isSplittedByRuling(minX, minY, word.getX1(), word.getY2(), verticalRulingLines); if (prev != null && (lineSeparation || startFromTop || splitByX || newLineAfterSplit || splittedByRuling)) { diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/controller/RedactionController.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/controller/RedactionController.java index 11497a05..54f24af5 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/controller/RedactionController.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/controller/RedactionController.java @@ -48,7 +48,7 @@ public class RedactionController implements RedactionResource { var storedObjectStream = redactionStorageService.getStoredObject(RedactionStorageService.StorageIdUtils.getStorageId(redactionRequest.getDossierId(), redactionRequest.getFileId(), FileType.ORIGIN)); try { - Document classifiedDoc = pdfSegmentationService.parseDocument(storedObjectStream, null); + Document classifiedDoc = pdfSegmentationService.parseDocument(redactionRequest.getDossierId(), redactionRequest.getFileId(), storedObjectStream, null); storedObjectStream = redactionStorageService.getStoredObject(RedactionStorageService.StorageIdUtils.getStorageId(redactionRequest.getDossierId(), redactionRequest.getFileId(), FileType.ORIGIN)); try (PDDocument pdDocument = PDDocument.load(storedObjectStream)) { @@ -74,7 +74,7 @@ public class RedactionController implements RedactionResource { var storedObjectStream = redactionStorageService.getStoredObject(RedactionStorageService.StorageIdUtils.getStorageId(redactionRequest.getDossierId(), redactionRequest.getFileId(), FileType.ORIGIN)); try { - Document classifiedDoc = pdfSegmentationService.parseDocument(storedObjectStream, null); + Document classifiedDoc = pdfSegmentationService.parseDocument(redactionRequest.getDossierId(), redactionRequest.getFileId(), storedObjectStream, null); storedObjectStream = redactionStorageService.getStoredObject(RedactionStorageService.StorageIdUtils.getStorageId(redactionRequest.getDossierId(), redactionRequest.getFileId(), FileType.ORIGIN)); try (PDDocument pdDocument = PDDocument.load(storedObjectStream)) { @@ -101,7 +101,7 @@ public class RedactionController implements RedactionResource { try { var storedObjectStream = redactionStorageService.getStoredObject(RedactionStorageService.StorageIdUtils.getStorageId(redactionRequest.getDossierId(), redactionRequest.getFileId(), FileType.ORIGIN)); - classifiedDoc = pdfSegmentationService.parseDocument(storedObjectStream, null); + classifiedDoc = pdfSegmentationService.parseDocument(redactionRequest.getDossierId(), redactionRequest.getFileId(), storedObjectStream, null); } catch (Exception e) { throw new RedactionException(e); } diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/PdfTable.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/PdfTable.java new file mode 100644 index 00000000..b55fde7f --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/PdfTable.java @@ -0,0 +1,17 @@ +package com.iqser.red.service.redaction.v1.server.redaction.model; + +import java.util.ArrayList; +import java.util.List; + +import lombok.Data; +import lombok.NonNull; +import lombok.RequiredArgsConstructor; + +@Data +@RequiredArgsConstructor +public class PdfTable { + + @NonNull + private List tableCells = new ArrayList<>(); + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/PdfTableCell.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/PdfTableCell.java new file mode 100644 index 00000000..df3ca322 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/PdfTableCell.java @@ -0,0 +1,21 @@ +package com.iqser.red.service.redaction.v1.server.redaction.model; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.RequiredArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@RequiredArgsConstructor +public class PdfTableCell { + + private float x0; + private float y0; + private float x1; + private float y1; + private float width; + private float height; + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/PageInfo.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/PageInfo.java new file mode 100644 index 00000000..f2ec8d6b --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/PageInfo.java @@ -0,0 +1,16 @@ +package com.iqser.red.service.redaction.v1.server.redaction.model.table; + +import com.dslplatform.json.CompiledJson; + +import lombok.Data; + +@Data +@CompiledJson +public class PageInfo { + + private int number; + private int rotation; + private float width; + private float height; + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableCells.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableCells.java new file mode 100644 index 00000000..00f0a138 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableCells.java @@ -0,0 +1,18 @@ +package com.iqser.red.service.redaction.v1.server.redaction.model.table; + +import com.dslplatform.json.CompiledJson; + +import lombok.Data; + +@Data +@CompiledJson +public class TableCells { + + private float x0; + private float y0; + private float x1; + private float y1; + private float width; + private float height; + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableData.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableData.java new file mode 100644 index 00000000..ac5c01a9 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableData.java @@ -0,0 +1,17 @@ +package com.iqser.red.service.redaction.v1.server.redaction.model.table; + +import java.util.ArrayList; +import java.util.List; + +import com.dslplatform.json.CompiledJson; + +import lombok.Data; + +@Data +@CompiledJson +public class TableData { + + private PageInfo pageInfo; + private List tableCells = new ArrayList<>(); + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableServiceResponse.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableServiceResponse.java new file mode 100644 index 00000000..435938c0 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/table/TableServiceResponse.java @@ -0,0 +1,21 @@ +package com.iqser.red.service.redaction.v1.server.redaction.model.table; + +import java.util.ArrayList; +import java.util.List; + +import com.dslplatform.json.CompiledJson; + +import lombok.Data; + +@Data +@CompiledJson +public class TableServiceResponse { + private String dossierId; + private String fileId; + private String operation; + private String targetFileExtension; + private String responseFileExtension; + + private List data = new ArrayList<>(); + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/service/AnalyzeService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/service/AnalyzeService.java index 76cc1b33..9f5fa3e2 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/service/AnalyzeService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/service/AnalyzeService.java @@ -96,7 +96,8 @@ public class AnalyzeService { if (redactionServiceSettings.isEnableImageClassification()) { pdfImages = imageService.convertImages(analyzeRequest.getDossierId(), analyzeRequest.getFileId()); } - classifiedDoc = pdfSegmentationService.parseDocument(storedObjectStream, pdfImages); + + classifiedDoc = pdfSegmentationService.parseDocument(analyzeRequest.getDossierId(), analyzeRequest.getFileId(), storedObjectStream, pdfImages); pageCount = classifiedDoc.getPages().size(); } catch (Exception e) { throw new RedactionException(e); diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationService.java index efbf1b5e..bcfd302e 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationService.java @@ -9,6 +9,7 @@ import java.nio.file.attribute.FileAttribute; import java.nio.file.attribute.PosixFilePermission; import java.nio.file.attribute.PosixFilePermissions; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; @@ -29,6 +30,8 @@ import com.iqser.red.service.redaction.v1.server.classification.service.Classifi import com.iqser.red.service.redaction.v1.server.parsing.PDFLinesTextStripper; import com.iqser.red.service.redaction.v1.server.parsing.model.TextPositionSequence; import com.iqser.red.service.redaction.v1.server.redaction.model.PdfImage; +import com.iqser.red.service.redaction.v1.server.redaction.model.PdfTableCell; +import com.iqser.red.service.redaction.v1.server.settings.RedactionServiceSettings; import com.iqser.red.service.redaction.v1.server.tableextraction.model.AbstractTextContainer; import com.iqser.red.service.redaction.v1.server.tableextraction.model.CleanRulings; import com.iqser.red.service.redaction.v1.server.tableextraction.service.RulingCleaningService; @@ -42,15 +45,17 @@ import lombok.extern.slf4j.Slf4j; @RequiredArgsConstructor public class PdfSegmentationService { + private final RedactionServiceSettings redactionServiceSettings; private final RulingCleaningService rulingCleaningService; private final TableExtractionService tableExtractionService; private final BlockificationService blockificationService; private final ClassificationService classificationService; private final SectionsBuilderService sectionsBuilderService; private final ImageService imageService; + private final TableService tableService; - public Document parseDocument(InputStream documentInputStream, Map> pdfImages) throws IOException { + public Document parseDocument(String dossierId, String fileId, InputStream documentInputStream, Map> pdfImages) throws IOException { PDDocument pdDocument = null; try { @@ -67,6 +72,11 @@ public class PdfSegmentationService { tempFile.setExecutable(true, true); } + Map> pdfTableCells = new HashMap<>(); + if (redactionServiceSettings.isCvServiceEnabled()) { + pdfTableCells = tableService.convertTables(dossierId, fileId); + } + try (var fos = new FileOutputStream(tempFile)) { IOUtils.copy(documentInputStream, fos); @@ -94,12 +104,8 @@ public class PdfSegmentationService { int rotation = pdPage.getRotation(); boolean isRotated = rotation != 0 && rotation != 360; - CleanRulings cleanRulings = rulingCleaningService.getCleanRulings(stripper.getRulings(), stripper.getMinCharWidth(), stripper - .getMaxCharHeight()); - - Page page = blockificationService.blockify(stripper.getTextPositionSequences(), cleanRulings.getHorizontal(), cleanRulings - .getVertical()); - + CleanRulings cleanRulings = rulingCleaningService.getCleanRulings(pdfTableCells.get(pageNumber), stripper.getRulings(), stripper.getMinCharWidth(), stripper.getMaxCharHeight()); + Page page = blockificationService.blockify(stripper.getTextPositionSequences(), cleanRulings.getHorizontal(), cleanRulings.getVertical()); PDRectangle cropbox = pdPage.getCropBox(); float cropboxArea = cropbox.getHeight() * cropbox.getWidth(); @@ -109,7 +115,6 @@ public class PdfSegmentationService { page.setLandscape(isLandscape || isRotated); page.setPageNumber(pageNumber); - tableExtractionService.extractTables(cleanRulings, page); buildPageStatistics(page); increaseDocumentStatistics(page, document); @@ -128,7 +133,6 @@ public class PdfSegmentationService { sectionsBuilderService.buildSections(document); sectionsBuilderService.addImagesToSections(document); - IOUtils.close(pdDocument); if (!tempFile.delete()) { diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/TableService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/TableService.java new file mode 100644 index 00000000..658cc6b0 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/segmentation/TableService.java @@ -0,0 +1,54 @@ +package com.iqser.red.service.redaction.v1.server.segmentation; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.springframework.stereotype.Service; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; +import com.iqser.red.service.redaction.v1.server.redaction.model.PdfTableCell; +import com.iqser.red.service.redaction.v1.server.redaction.model.table.TableCells; +import com.iqser.red.service.redaction.v1.server.redaction.model.table.TableServiceResponse; +import com.iqser.red.service.redaction.v1.server.storage.RedactionStorageService; + +import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Service +@RequiredArgsConstructor +public class TableService { + + private final ObjectMapper objectMapper; + private final RedactionStorageService redactionStorageService; + + + @SneakyThrows + public Map> convertTables(String dossierId, String fileId) { + + var tableClassificationStream = redactionStorageService.getStoredObject(RedactionStorageService.StorageIdUtils.getStorageId(dossierId, fileId, FileType.TABLES)); + + TableServiceResponse tableServiceResponse = objectMapper.readValue(tableClassificationStream, TableServiceResponse.class); + + Map> tableCells = new HashMap<>(); + tableServiceResponse.getData().forEach(tableData -> tableCells.computeIfAbsent(tableData.getPageInfo().getNumber(), tableCell -> new ArrayList<>()).addAll(convertTableCells(tableData.getTableCells()))); + + return tableCells; + } + + + private Collection convertTableCells(List tableCells) { + + List pdfTableCells = new ArrayList<>(); + + tableCells.forEach(t -> pdfTableCells.add(PdfTableCell.builder().y0(t.getY0()).x1(t.getX1()).y1(t.getY1()).x0(t.getX0()).width(t.getWidth()).height(t.getHeight()).build())); + + return pdfTableCells; + } + +} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/settings/RedactionServiceSettings.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/settings/RedactionServiceSettings.java index 07e59d54..210c5768 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/settings/RedactionServiceSettings.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/settings/RedactionServiceSettings.java @@ -14,6 +14,8 @@ public class RedactionServiceSettings { private boolean enableImageClassification = true; + private boolean cvServiceEnabled = true; + private float maxImageCropboxRatio = 0.9f; private int analysisVersion = 1; diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/model/Table.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/model/Table.java index 6abc086e..89d0cee4 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/model/Table.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/model/Table.java @@ -1,13 +1,22 @@ package com.iqser.red.service.redaction.v1.server.tableextraction.model; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.TreeMap; + +import org.apache.commons.collections4.CollectionUtils; + import com.iqser.red.service.redaction.v1.server.classification.model.TextBlock; import com.iqser.red.service.redaction.v1.server.tableextraction.utils.Utils; + import lombok.Getter; import lombok.Setter; import lombok.extern.slf4j.Slf4j; -import org.apache.commons.collections4.CollectionUtils; - -import java.util.*; @Slf4j public class Table extends AbstractTextContainer { @@ -160,7 +169,7 @@ public class Table extends AbstractTextContainer { for (int i = unrotatedColCount - 1; i >= 0; i--) { // rows List lastRow = new ArrayList<>(); for (int j = 0; j < unrotatedRowCount; j++) { // cols - Cell cell = cells.get(new CellPosition(i, j)); + Cell cell = cells.get(new CellPosition(j, i)); if (cell != null) { lastRow.add(cell); } diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/service/RulingCleaningService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/service/RulingCleaningService.java index 6f6ea80a..fc801a35 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/service/RulingCleaningService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/tableextraction/service/RulingCleaningService.java @@ -1,18 +1,34 @@ package com.iqser.red.service.redaction.v1.server.tableextraction.service; -import com.iqser.red.service.redaction.v1.server.tableextraction.model.CleanRulings; -import com.iqser.red.service.redaction.v1.server.tableextraction.model.Ruling; -import com.iqser.red.service.redaction.v1.server.tableextraction.utils.Utils; -import org.springframework.stereotype.Service; - import java.awt.geom.Line2D; import java.awt.geom.Point2D; -import java.util.*; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.Comparator; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import org.springframework.stereotype.Service; + +import com.iqser.red.service.redaction.v1.server.redaction.model.PdfTableCell; +import com.iqser.red.service.redaction.v1.server.settings.RedactionServiceSettings; +import com.iqser.red.service.redaction.v1.server.tableextraction.model.CleanRulings; +import com.iqser.red.service.redaction.v1.server.tableextraction.model.Ruling; +import com.iqser.red.service.redaction.v1.server.tableextraction.utils.Utils; + +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +@Slf4j @Service +@RequiredArgsConstructor public class RulingCleaningService { - public CleanRulings getCleanRulings(List rulings, float minCharWidth, float maxCharHeight) { + private final RedactionServiceSettings redactionServiceSettings; + + public CleanRulings getCleanRulings(List pdfTableCells, List rulings, float minCharWidth, float maxCharHeight) { if (!rulings.isEmpty()) { snapPoints(rulings, minCharWidth, maxCharHeight); @@ -24,6 +40,9 @@ public class RulingCleaningService { vrs.add(vr); } } + if (vrs.isEmpty() && redactionServiceSettings.isCvServiceEnabled()) { + vrs.addAll(extractVerticalRulings(pdfTableCells)); + } List verticalRulingLines = collapseOrientedRulings(vrs); List hrs = new ArrayList<>(); @@ -32,6 +51,9 @@ public class RulingCleaningService { hrs.add(hr); } } + if (hrs.isEmpty() && redactionServiceSettings.isCvServiceEnabled()) { + hrs.addAll(extractHorizontalRulings(pdfTableCells)); + } List horizontalRulingLines = collapseOrientedRulings(hrs); return CleanRulings.builder().vertical(verticalRulingLines).horizontal(horizontalRulingLines).build(); @@ -113,6 +135,60 @@ public class RulingCleaningService { } + private Collection extractVerticalRulings(List pdfTableCells) { + + List vrs = new ArrayList<>(); + + if (pdfTableCells != null) { + for (PdfTableCell pdfTableCell : pdfTableCells) { + Ruling leftLine = createRuling(pdfTableCell.getX0(), pdfTableCell.getX0(), pdfTableCell.getY0(), pdfTableCell.getY1()); + Ruling rightLine = createRuling(pdfTableCell.getX1(), pdfTableCell.getX1(), pdfTableCell.getY0(), pdfTableCell.getY1()); + vrs.add(leftLine); + vrs.add(rightLine); + } + } + return vrs; + } + + + private Collection extractHorizontalRulings(List pdfTableCells) { + + List hrs = new ArrayList<>(); + + if (pdfTableCells != null) { + for (PdfTableCell pdfTableCell : pdfTableCells) { + Ruling topLine = createRuling(pdfTableCell.getX0(), pdfTableCell.getX1(), pdfTableCell.getY1(), pdfTableCell.getY1()); + Ruling baseLine = createRuling(pdfTableCell.getX0(), pdfTableCell.getX1(), pdfTableCell.getY0(), pdfTableCell.getY0()); + hrs.add(topLine); + hrs.add(baseLine); + } + } + + return hrs; + } + + + private Ruling createRuling(float tableCellX0, float tableCellX1, float tableCellY0, float tableCellY1) { + + float x0 = tableCellX0; + float x1 = tableCellX1; + float y0 = tableCellY0; + float y1 = tableCellY1; + + if (x1 < x0) { + x0 = tableCellX1; + x1 = tableCellX0; + } + + if (y1 < y0) { + y0 = tableCellY1; + y1 = tableCellY0; + } + + return new Ruling(new Point2D.Float(x0, y0), new Point2D.Float(x1, y1)); + } + + private List collapseOrientedRulings(List lines) { int COLINEAR_OR_PARALLEL_PIXEL_EXPAND_AMOUNT = 1; diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RedactionIntegrationTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RedactionIntegrationTest.java index fe31be8b..635bbebd 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RedactionIntegrationTest.java +++ b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RedactionIntegrationTest.java @@ -1,36 +1,29 @@ package com.iqser.red.service.redaction.v1.server; -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.annotations.AnnotationStatus; -import com.iqser.red.service.persistence.service.v1.api.model.annotations.Comment; -import com.iqser.red.service.persistence.service.v1.api.model.annotations.ManualRedactions; -import com.iqser.red.service.persistence.service.v1.api.model.annotations.Rectangle; -import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.*; -import com.iqser.red.service.persistence.service.v1.api.model.common.JSONPrimitive; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.configuration.Colors; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.type.DictionaryEntry; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.type.Type; -import com.iqser.red.service.redaction.v1.model.*; -import com.iqser.red.service.redaction.v1.server.annotate.AnnotateRequest; -import com.iqser.red.service.redaction.v1.server.annotate.AnnotateResponse; -import com.iqser.red.service.redaction.v1.server.annotate.AnnotationService; -import com.iqser.red.service.redaction.v1.server.classification.model.SectionText; -import com.iqser.red.service.redaction.v1.server.client.DictionaryClient; -import com.iqser.red.service.redaction.v1.server.client.LegalBasisClient; -import com.iqser.red.service.redaction.v1.server.client.RulesClient; -import com.iqser.red.service.redaction.v1.server.controller.RedactionController; -import com.iqser.red.service.redaction.v1.server.redaction.service.AnalyzeService; -import com.iqser.red.service.redaction.v1.server.redaction.service.ManualRedactionSurroundingTextService; -import com.iqser.red.service.redaction.v1.server.redaction.utils.OsUtils; -import com.iqser.red.service.redaction.v1.server.redaction.utils.ResourceLoader; -import com.iqser.red.service.redaction.v1.server.redaction.utils.TextNormalizationUtilities; -import com.iqser.red.service.redaction.v1.server.storage.RedactionStorageService; -import com.iqser.red.storage.commons.StorageAutoConfiguration; -import com.iqser.red.storage.commons.service.StorageService; -import lombok.SneakyThrows; +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Mockito.when; + +import java.io.BufferedReader; +import java.io.ByteArrayInputStream; +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.time.OffsetDateTime; +import java.time.ZoneOffset; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.UUID; +import java.util.stream.Collectors; + import org.junit.After; import org.junit.Before; import org.junit.Ignore; @@ -55,16 +48,49 @@ import org.springframework.context.annotation.Primary; import org.springframework.core.io.ClassPathResource; import org.springframework.test.context.junit4.SpringRunner; -import java.io.*; -import java.net.URL; -import java.nio.charset.StandardCharsets; -import java.time.OffsetDateTime; -import java.time.ZoneOffset; -import java.util.*; -import java.util.stream.Collectors; +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.annotations.AnnotationStatus; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.Comment; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.ManualRedactions; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.Rectangle; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.IdRemoval; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.ManualForceRedaction; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.ManualImageRecategorization; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.ManualLegalBasisChange; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.ManualRedactionEntry; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.entitymapped.ManualResizeRedaction; +import com.iqser.red.service.persistence.service.v1.api.model.common.JSONPrimitive; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.configuration.Colors; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.type.DictionaryEntry; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.type.Type; +import com.iqser.red.service.redaction.v1.model.AnalyzeRequest; +import com.iqser.red.service.redaction.v1.model.AnalyzeResult; +import com.iqser.red.service.redaction.v1.model.FileAttribute; +import com.iqser.red.service.redaction.v1.model.RedactionLogEntry; +import com.iqser.red.service.redaction.v1.model.RedactionRequest; +import com.iqser.red.service.redaction.v1.model.RedactionResult; +import com.iqser.red.service.redaction.v1.model.StructureAnalyzeRequest; +import com.iqser.red.service.redaction.v1.server.annotate.AnnotateRequest; +import com.iqser.red.service.redaction.v1.server.annotate.AnnotateResponse; +import com.iqser.red.service.redaction.v1.server.annotate.AnnotationService; +import com.iqser.red.service.redaction.v1.server.classification.model.SectionText; +import com.iqser.red.service.redaction.v1.server.client.DictionaryClient; +import com.iqser.red.service.redaction.v1.server.client.LegalBasisClient; +import com.iqser.red.service.redaction.v1.server.client.RulesClient; +import com.iqser.red.service.redaction.v1.server.controller.RedactionController; +import com.iqser.red.service.redaction.v1.server.redaction.service.AnalyzeService; +import com.iqser.red.service.redaction.v1.server.redaction.service.ManualRedactionSurroundingTextService; +import com.iqser.red.service.redaction.v1.server.redaction.utils.OsUtils; +import com.iqser.red.service.redaction.v1.server.redaction.utils.ResourceLoader; +import com.iqser.red.service.redaction.v1.server.redaction.utils.TextNormalizationUtilities; +import com.iqser.red.service.redaction.v1.server.storage.RedactionStorageService; +import com.iqser.red.storage.commons.StorageAutoConfiguration; +import com.iqser.red.storage.commons.service.StorageService; -import static org.assertj.core.api.Assertions.assertThat; -import static org.mockito.Mockito.when; +import lombok.SneakyThrows; @RunWith(SpringRunner.class) @SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) @@ -268,9 +294,8 @@ public class RedactionIntegrationTest { public void testMergedImages() throws IOException { long start = System.currentTimeMillis(); - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/merge_images.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Minimal Examples/merge_images.pdf"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -313,8 +338,7 @@ public class RedactionIntegrationTest { // F. Lastname, J. Doe, M. Mustermann // Lastname M., Doe J., Mustermann M. - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/ExpansionTest.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Minimal Examples/ExpansionTest.pdf"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -334,8 +358,7 @@ public class RedactionIntegrationTest { @Test public void titleExtraction() throws IOException { - ClassPathResource pdfFileResource = new ClassPathResource("files/RSS/32 - Emamectin Benzoate Technical - Acute Oral Toxicity - Mouse.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/RSS/32 - Emamectin Benzoate Technical - Acute Oral Toxicity - Mouse.pdf"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -367,8 +390,7 @@ public class RedactionIntegrationTest { System.out.println("testIgnoreHint"); - ClassPathResource pdfFileResource = new ClassPathResource("files/new/test-ignore-hint.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/new/test-ignore-hint.pdf"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); analyzeService.analyze(request); @@ -426,7 +448,7 @@ public class RedactionIntegrationTest { } for (File path : input) { - AnalyzeRequest request = prepareStorage(new FileInputStream((path))); + AnalyzeRequest request = prepareStorage(path.getPath()); System.out.println("Redacting file : " + path.getName()); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); @@ -471,8 +493,7 @@ public class RedactionIntegrationTest { String outputFileName = OsUtils.getTemporaryDirectory() + "/AnnotatedRedactionTestSeparatedRedaction.pdf"; long start = System.currentTimeMillis(); - ClassPathResource pdfFileResource = new ClassPathResource(fileName); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(fileName); request.setExcludedPages(Set.of(1)); request.setFileAttributes(List.of(FileAttribute.builder() @@ -582,8 +603,7 @@ public class RedactionIntegrationTest { String fileName = "files/new/test1S1T1.pdf"; String outputFileName = OsUtils.getTemporaryDirectory() + "/Annotated.pdf"; - ClassPathResource pdfFileResource = new ClassPathResource(fileName); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(fileName); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); analyzeService.analyze(request); @@ -637,8 +657,7 @@ public class RedactionIntegrationTest { storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.NER_ENTITIES), responseJson.getInputStream()); long start = System.currentTimeMillis(); - ClassPathResource pdfFileResource = new ClassPathResource(fileName); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(fileName); request.setExcludedPages(Set.of(1)); request.setFileAttributes(List.of(FileAttribute.builder() @@ -836,6 +855,60 @@ public class RedactionIntegrationTest { } + @Test + public void testTableRedactionWithCvTableService() throws IOException { + + long start = System.currentTimeMillis(); + + String fileName = "files/new/VV-511309.pdf"; + String tableServiceResponseFile = "files/cv_table_response_VV-511309.json"; + + AnalyzeRequest request = prepareStorage(fileName, tableServiceResponseFile); + analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); + AnalyzeResult result = analyzeService.analyze(request); + + AnnotateResponse annotateResponse = annotationService.annotate(AnnotateRequest.builder() + .dossierId(TEST_DOSSIER_ID) + .fileId(TEST_FILE_ID) + .build()); + + try (FileOutputStream fileOutputStream = new FileOutputStream(OsUtils.getTemporaryDirectory() + "/Annotated.pdf")) { + fileOutputStream.write(annotateResponse.getDocument()); + } + long end = System.currentTimeMillis(); + + System.out.println("duration: " + (end - start)); + System.out.println("numberOfPages: " + result.getNumberOfPages()); + } + + + @Test + public void testTableRedactionWithOcrAndCvTableService() throws IOException { + + long start = System.currentTimeMillis(); + + String fileName = "files/new/VV-511309_OCR.pdf"; + String tableServiceResponseFile = "files/cv_table_response_VV-511309.json"; + + AnalyzeRequest request = prepareStorage(fileName, tableServiceResponseFile); + analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); + AnalyzeResult result = analyzeService.analyze(request); + + AnnotateResponse annotateResponse = annotationService.annotate(AnnotateRequest.builder() + .dossierId(TEST_DOSSIER_ID) + .fileId(TEST_FILE_ID) + .build()); + + try (FileOutputStream fileOutputStream = new FileOutputStream(OsUtils.getTemporaryDirectory() + "/Annotated.pdf")) { + fileOutputStream.write(annotateResponse.getDocument()); + } + long end = System.currentTimeMillis(); + + System.out.println("duration: " + (end - start)); + System.out.println("numberOfPages: " + result.getNumberOfPages()); + } + + @Test public void testUnicodeProblem() throws IOException { @@ -1005,7 +1078,7 @@ public class RedactionIntegrationTest { System.out.println("testManualRedaction"); long start = System.currentTimeMillis(); - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Single Table.pdf"); + String pdfFile = "files/Minimal Examples/Single Table.pdf"; ManualRedactions manualRedactions = new ManualRedactions(); @@ -1053,7 +1126,7 @@ public class RedactionIntegrationTest { .page(1) .build())); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(pdfFile); request.setManualRedactions(manualRedactions); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -1094,9 +1167,8 @@ public class RedactionIntegrationTest { public void classificationTest() throws IOException { System.out.println("classificationTest"); - ClassPathResource pdfFileResource = new ClassPathResource("files/RSS/01 - CGA100251 - Acute Oral Toxicity (Up and Down Procedure) - Rat (1).pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Metolachlor/S-Metolachlor_RAR_01_Volume_1_2018-09-06.pdf"); RedactionRequest redactionRequest = RedactionRequest.builder() .dossierId(request.getDossierId()) @@ -1111,14 +1183,34 @@ public class RedactionIntegrationTest { } } + @Test + public void classificationTestWithCvTableService() throws IOException { + + System.out.println("classificationTest"); + + String tableServiceResponseFile = "files/cv_table_response_VV-511309.json"; + AnalyzeRequest request = prepareStorage("files/new/VV-511309_OCR.pdf", tableServiceResponseFile); + + RedactionRequest redactionRequest = RedactionRequest.builder() + .dossierId(request.getDossierId()) + .fileId(request.getFileId()) + .dossierTemplateId(request.getDossierTemplateId()) + .build(); + + RedactionResult result = redactionController.classify(redactionRequest); + + try (FileOutputStream fileOutputStream = new FileOutputStream(OsUtils.getTemporaryDirectory() + "/Classified.pdf")) { + fileOutputStream.write(result.getDocument()); + } + } + @Test public void sectionsTest() throws IOException { System.out.println("sectionsTest"); - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Single Table.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Minimal Examples/Single Table.pdf"); RedactionRequest redactionRequest = RedactionRequest.builder() .dossierId(request.getDossierId()) @@ -1138,9 +1230,7 @@ public class RedactionIntegrationTest { public void htmlTablesTest() throws IOException { System.out.println("htmlTablesTest"); - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Single Table.pdf"); - - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Minimal Examples/Single Table.pdf"); RedactionRequest redactionRequest = RedactionRequest.builder() .dossierId(request.getDossierId()) @@ -1160,9 +1250,8 @@ public class RedactionIntegrationTest { public void htmlTableRotationTest() throws IOException { System.out.println("htmlTableRotationTest"); - ClassPathResource pdfFileResource = new ClassPathResource("files/Metolachlor/S-Metolachlor_RAR_02_Volume_2_2018-09-06.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Metolachlor/S-Metolachlor_RAR_02_Volume_2_2018-09-06.pdf"); RedactionRequest redactionRequest = RedactionRequest.builder() .dossierId(request.getDossierId()) @@ -1181,9 +1270,7 @@ public class RedactionIntegrationTest { @Test public void phantomCellsDocumentTest() throws IOException { - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Phantom Cells.pdf"); - - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Minimal Examples/Phantom Cells.pdf"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -1202,9 +1289,8 @@ public class RedactionIntegrationTest { public void sponsorCompanyTest() throws IOException { long start = System.currentTimeMillis(); - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/sponsor_companies.pdf"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/Minimal Examples/sponsor_companies.pdf"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -1228,7 +1314,7 @@ public class RedactionIntegrationTest { @Ignore public void resizeRedactionTest() throws IOException { - ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Single Table.pdf"); + String pdfFile = "files/Minimal Examples/Single Table.pdf"; ManualRedactions manualRedactions = new ManualRedactions(); @@ -1284,7 +1370,7 @@ public class RedactionIntegrationTest { // manualRedactions.getEntriesToAdd().add(manualRedactionEntry); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(pdfFile); request.setManualRedactions(manualRedactions); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -1384,7 +1470,7 @@ public class RedactionIntegrationTest { @Ignore public void testManualSurroundingText() throws IOException { - ClassPathResource pdfFileResource = new ClassPathResource("files/new/S4.pdf"); + String pdfFile = "files/new/S4.pdf"; ManualRedactions manualRedactions = new ManualRedactions(); @@ -1437,7 +1523,7 @@ public class RedactionIntegrationTest { manualRedactions.getEntriesToAdd().add(manualRedactionEntry2); manualRedactions.getEntriesToAdd().add(manualRedactionEntry3); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(pdfFile); request.setManualRedactions(manualRedactions); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); AnalyzeResult result = analyzeService.analyze(request); @@ -1791,10 +1877,9 @@ public class RedactionIntegrationTest { public void testImportedRedactions() throws IOException { String outputFileName = OsUtils.getTemporaryDirectory() + "/Annotated.pdf"; - ClassPathResource pdfFileResource = new ClassPathResource("files/ImportedRedactions/RotateTestFile_without_highlights.pdf"); ClassPathResource importedRedactions = new ClassPathResource("files/ImportedRedactions/RotateTestFile_without_highlights.IMPORTED_REDACTIONS.json"); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage("files/ImportedRedactions/RotateTestFile_without_highlights.pdf"); storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.IMPORTED_REDACTIONS), importedRedactions.getInputStream()); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); @@ -1838,8 +1923,7 @@ public class RedactionIntegrationTest { String fileName = "files/mr-mrs.pdf"; String outputFileName = OsUtils.getTemporaryDirectory() + "/Annotated.pdf"; - ClassPathResource pdfFileResource = new ClassPathResource(fileName); - AnalyzeRequest request = prepareStorage(pdfFileResource.getInputStream()); + AnalyzeRequest request = prepareStorage(fileName); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); analyzeService.analyze(request); @@ -1866,7 +1950,7 @@ public class RedactionIntegrationTest { @SneakyThrows - private AnalyzeRequest prepareStorage(InputStream stream) { + private AnalyzeRequest prepareStorage(InputStream fileStream, InputStream cvServiceResponseFileStream) { AnalyzeRequest request = AnalyzeRequest.builder() .dossierTemplateId(TEST_DOSSIER_TEMPLATE_ID) @@ -1875,7 +1959,8 @@ public class RedactionIntegrationTest { .lastProcessed(OffsetDateTime.now()) .build(); - storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.ORIGIN), stream); + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.TABLES), cvServiceResponseFileStream); + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.ORIGIN), fileStream); return request; @@ -1885,9 +1970,16 @@ public class RedactionIntegrationTest { @SneakyThrows private AnalyzeRequest prepareStorage(String file) { - ClassPathResource pdfFileResource = new ClassPathResource(file); + return prepareStorage(file, "files/cv_service_empty_response.json"); + } - return prepareStorage(pdfFileResource.getInputStream()); + @SneakyThrows + private AnalyzeRequest prepareStorage(String file, String cvServiceResponseFile) { + + ClassPathResource pdfFileResource = new ClassPathResource(file); + ClassPathResource cvServiceResponseFileResource = new ClassPathResource(cvServiceResponseFile); + + return prepareStorage(pdfFileResource.getInputStream(), cvServiceResponseFileResource.getInputStream()); } } diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RulesTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RulesTest.java index c33dbbbf..43915527 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RulesTest.java +++ b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/RulesTest.java @@ -555,6 +555,7 @@ public class RulesTest { .lastProcessed(OffsetDateTime.now()) .build(); + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.TABLES), new ClassPathResource("files/cv_service_empty_response.json").getInputStream()); storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.ORIGIN), stream); return request; diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationServiceTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationServiceTest.java index 18307012..86ee900f 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationServiceTest.java +++ b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/segmentation/PdfSegmentationServiceTest.java @@ -20,14 +20,18 @@ import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; +import org.springframework.context.annotation.Primary; import org.springframework.core.io.ClassPathResource; import org.springframework.test.context.junit4.SpringRunner; import com.amazonaws.services.s3.AmazonS3; import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; import com.iqser.red.service.redaction.v1.server.Application; +import com.iqser.red.service.redaction.v1.server.FileSystemBackedStorageService; import com.iqser.red.service.redaction.v1.server.classification.model.Document; import com.iqser.red.service.redaction.v1.server.classification.service.BlockificationService; import com.iqser.red.service.redaction.v1.server.client.LegalBasisClient; @@ -35,10 +39,13 @@ import com.iqser.red.service.redaction.v1.server.redaction.model.ImageType; import com.iqser.red.service.redaction.v1.server.redaction.model.PdfImage; import com.iqser.red.service.redaction.v1.server.redaction.model.RedRectangle2D; import com.iqser.red.service.redaction.v1.server.redaction.model.image.ImageServiceResponse; +import com.iqser.red.service.redaction.v1.server.storage.RedactionStorageService; import com.iqser.red.service.redaction.v1.server.tableextraction.model.Cell; import com.iqser.red.service.redaction.v1.server.tableextraction.model.Table; import com.iqser.red.service.redaction.v1.server.tableextraction.service.RulingCleaningService; import com.iqser.red.service.redaction.v1.server.tableextraction.service.TableExtractionService; +import com.iqser.red.storage.commons.StorageAutoConfiguration; +import com.iqser.red.storage.commons.service.StorageService; import lombok.SneakyThrows; @@ -71,13 +78,24 @@ public class PdfSegmentationServiceTest { @MockBean private LegalBasisClient legalBasisClient; + @Autowired + private StorageService storageService; + @Autowired private ObjectMapper objectMapper; - @Configuration - @EnableAutoConfiguration(exclude = { RabbitAutoConfiguration.class}) - public static class TestConfiguration { + private final static String TEST_DOSSIER_ID = "123"; + private final static String TEST_FILE_ID = "123"; + @Configuration + @EnableAutoConfiguration(exclude = { RabbitAutoConfiguration.class, StorageAutoConfiguration.class}) + public static class TestConfiguration { + @Bean + @Primary + public StorageService inmemoryStorage() { + + return new FileSystemBackedStorageService(); + } } @@ -85,6 +103,7 @@ public class PdfSegmentationServiceTest { @SneakyThrows public void testMapping() { + prepareStorage(); ClassPathResource responseJson = new ClassPathResource("files/image_response.json"); ImageServiceResponse imageServiceResponse = objectMapper.readValue(responseJson.getInputStream(), ImageServiceResponse.class); @@ -103,9 +122,10 @@ public class PdfSegmentationServiceTest { @Test public void testPDFSegmentationWithComplexTable() throws IOException { + prepareStorage(); ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Spanning Cells.pdf"); - Document document = pdfSegmentationService.parseDocument(pdfFileResource.getInputStream(), null); + Document document = pdfSegmentationService.parseDocument(TEST_DOSSIER_ID, TEST_FILE_ID, pdfFileResource.getInputStream(), null); assertThat(document.getParagraphs() .stream() .flatMap(paragraph -> paragraph.getTables().stream()) @@ -124,9 +144,10 @@ public class PdfSegmentationServiceTest { @Test public void testTableExtraction() throws IOException { + prepareStorage(); ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Merge Table.pdf"); - Document document = pdfSegmentationService.parseDocument(pdfFileResource.getInputStream(), null); + Document document = pdfSegmentationService.parseDocument(TEST_DOSSIER_ID, TEST_FILE_ID, pdfFileResource.getInputStream(), null); assertThat(document.getParagraphs() .stream() .flatMap(paragraph -> paragraph.getTables().stream()) @@ -162,9 +183,10 @@ public class PdfSegmentationServiceTest { @Test public void testMultiPageMetadataPropagation() throws IOException { + prepareStorage(); ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Merge Multi Page Table.pdf"); - Document document = pdfSegmentationService.parseDocument(pdfFileResource.getInputStream(), null); + Document document = pdfSegmentationService.parseDocument(TEST_DOSSIER_ID, TEST_FILE_ID, pdfFileResource.getInputStream(), null); assertThat(document.getParagraphs() .stream() .flatMap(paragraph -> paragraph.getTables().stream()) @@ -200,9 +222,10 @@ public class PdfSegmentationServiceTest { @Test public void testHeaderCellsForRotatedTable() throws IOException { + prepareStorage(); ClassPathResource pdfFileResource = new ClassPathResource("files/Minimal Examples/Rotated Table Headers.pdf"); - Document document = pdfSegmentationService.parseDocument(pdfFileResource.getInputStream(), null); + Document document = pdfSegmentationService.parseDocument(TEST_DOSSIER_ID, TEST_FILE_ID, pdfFileResource.getInputStream(), null); assertThat(document.getParagraphs() .stream() .flatMap(paragraph -> paragraph.getTables().stream()) @@ -235,4 +258,10 @@ public class PdfSegmentationServiceTest { } + @SneakyThrows + private void prepareStorage() { + + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.TABLES), new ClassPathResource("files/cv_service_empty_response.json").getInputStream()); + } + } diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/RedactionLog/files/RulesTest/RuleTestDocument.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/RedactionLog/files/RulesTest/RuleTestDocument.json new file mode 100644 index 00000000..8ebf55d7 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/RedactionLog/files/RulesTest/RuleTestDocument.json @@ -0,0 +1 @@ +{"analysisVersion":1,"analysisNumber":0,"redactionLogEntry":[{"id":"3f892d90df0a3cb3cbcab48935c44e67","type":"PII","value":"Özgür U. Reyhan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":378.52798},"width":56.143997,"height":-10.428009,"page":1}],"sectionNumber":5,"textBefore":"923-1101, Japan, JP ","textAfter":" Sude Halide","comments":[],"startOffset":78,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"e96fbdf528fb751cf759cd40e954728d","type":"CBI_author","value":"Doe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":230.2,"y":472.42798},"width":13.336014,"height":-10.428009,"page":1}],"sectionNumber":3,"textBefore":"Slash David Ksenia ","textAfter":" M. Mustermann","comments":[],"startOffset":216,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"9dc60f2f06c10b33740a46a51440768e","type":"PII","value":"Xinyi Y. Tao","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":360.128},"width":40.368027,"height":-10.428009,"page":1}],"sectionNumber":5,"textBefore":null,"textAfter":null,"comments":[],"startOffset":115,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"3facdde738ebe7181c9489359d936c8e","type":"PII","value":"B. Rahim","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":406.128},"width":30.59999,"height":-10.428009,"page":1}],"sectionNumber":5,"textBefore":null,"textAfter":" C. J.","comments":[],"startOffset":4,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"abc9a04339ce3ba71b4ddca2988b76fb","type":"CBI_address","value":"Netherlands","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Text in table","color":[0.8,0.8,0.8],"positions":[{"topLeft":{"x":337.13605,"y":542.328},"width":38.67206,"height":-10.428009,"page":1}],"sectionNumber":2,"textBefore":"7232 CX Warnsveld, ","textAfter":", N","comments":[],"startOffset":296,"endOffset":307,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"67012f64a35979a07d94cfb9529cc10b","type":"PII","value":"David","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":481.628},"width":19.584015,"height":-10.428009,"page":1}],"sectionNumber":3,"textBefore":"1234 with Slash ","textAfter":" Ksenia Doe","comments":[],"startOffset":203,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"3fc4319faa6bd6da221f0ed254b9726e","type":"PII","value":"C. J. Alfred","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":396.92798},"width":36.86403,"height":-10.428009,"page":1}],"sectionNumber":5,"textBefore":"B. Rahim ","textAfter":" Naka-27 Aomachi,","comments":[],"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"3e0d4491a6f29fee7f2ff4600a475260","type":"CBI_author","value":"M. Mustermann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":230.2,"y":463.22797},"width":51.56804,"height":-10.428009,"page":1}],"sectionNumber":3,"textBefore":"David Ksenia Doe ","textAfter":" Ranya Eikenboom","comments":[],"startOffset":220,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"00ac3ed9b409f2ed8e9c735d98735011","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":1}],"sectionNumber":46,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"42ad2094f9c5f17fcbe73e8cc268daf5","type":"PII","value":"Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":387.72797},"width":179.60017,"height":-10.428009,"page":1}],"sectionNumber":5,"textBefore":"C. J. Alfred ","textAfter":" Özgür U.","comments":[],"startOffset":26,"endOffset":77,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2799b1ba467b5d3b6d9a3e424cbd314c","type":"PII","value":"Sude Halide Nurullah","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Text in table","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":230.2,"y":369.32797},"width":69.75212,"height":-10.428009,"page":1}],"sectionNumber":5,"textBefore":"Özgür U. Reyhan ","textAfter":" Xinyi Y.","comments":[],"startOffset":94,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2d9e1b1baaca3fac422c05c0d9721937","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":1}],"sectionNumber":55,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f2e0cd2b8329d310362302aecc40c76c","type":"PII","value":"annotation","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":241.67998,"y":198.63495},"width":42.169907,"height":-11.534973,"page":1}],"sectionNumber":9,"textBefore":"effect or their ","textAfter":" types change","comments":[],"startOffset":675,"endOffset":685,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"0cce1d703a23b8a9f3470ee95948295b","type":"CBI_author","value":"Doe J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Last Update: 28-01-2022","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":126.076,"y":670.742},"width":30.58799,"height":-12.641998,"page":2}],"sectionNumber":10,"textBefore":"Mustermann Lastname M., ","textAfter":", Mustermann M.","comments":[],"startOffset":123,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d8b821220916bf878bf818e445f9978a","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":2}],"sectionNumber":56,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"6c70f9625a77d4e2f3556533a5dad338","type":"CBI_author","value":"Doe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Last Update: 28-01-2022","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":131.776,"y":684.54205},"width":20.003998,"height":-12.641998,"page":2}],"sectionNumber":10,"textBefore":"F. Lastname, J. ","textAfter":", M. Mustermann","comments":[],"startOffset":91,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"4e7367d93d50d59a78fab69f2d9d6287","type":"CBI_author","value":"Mustermann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 1/2: Redact CBI Authors based on Dict","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":81.796005,"y":549.442},"width":60.576004,"height":-12.641998,"page":2}],"sectionNumber":11,"textBefore":"David Ksenia Max ","textAfter":" Ranya Eikenboom","comments":[],"startOffset":131,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"a2ece335e53d61e7ec4c2a15e39133ff","type":"PII","value":"David","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 1/2: Redact CBI Authors based on Dict","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":56.8,"y":563.242},"width":29.291996,"height":-12.641998,"page":2}],"sectionNumber":11,"textBefore":"Study is No ","textAfter":" Ksenia Max","comments":[],"startOffset":114,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"db5d1b211384d25764a0ddc2e6008850","type":"CBI_address","value":"Netherlands","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 3/4: Redact (not) CBI Address based on Dict","color":[0.8,0.8,0.8],"positions":[{"topLeft":{"x":217.252,"y":414.34204},"width":57.86403,"height":-12.641998,"page":2}],"sectionNumber":12,"textBefore":"7232 CX Warnsveld, ","textAfter":", NL Institut","comments":[],"startOffset":173,"endOffset":184,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"4d7e41d8f0903ccf13b56b7ddf92447f","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":2}],"sectionNumber":47,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"db853dfd6454a849724b45e764e6bd8c","type":"CBI_author","value":"F. Lastname","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Last Update: 28-01-2022","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":56.8,"y":684.54205},"width":58.295994,"height":-12.641998,"page":2}],"sectionNumber":10,"textBefore":"with firstname initials ","textAfter":", J. Doe,","comments":[],"startOffset":75,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"27773fcfa41849cff34a58a64118a486","type":"CBI_author","value":"Mustermann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Last Update: 28-01-2022","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":162.66399,"y":670.742},"width":60.588013,"height":-12.641998,"page":2}],"sectionNumber":10,"textBefore":"M., Doe J., ","textAfter":" M.","comments":[],"startOffset":131,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"dbf9e94b6480fc3f75774d9ed82858cd","type":"CBI_author","value":"M. Mustermann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Last Update: 28-01-2022","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":157.768,"y":684.54205},"width":77.268005,"height":-12.641998,"page":2}],"sectionNumber":10,"textBefore":"Lastname, J. Doe, ","textAfter":" Lastname M.,","comments":[],"startOffset":96,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"24dc761e44c38b5879b6d52f4aaa5cd5","type":"CBI_author","value":"Lastname","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Last Update: 28-01-2022","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":56.8,"y":670.742},"width":46.595997,"height":-12.641998,"page":2}],"sectionNumber":10,"textBefore":"Doe, M. Mustermann ","textAfter":" M., Doe","comments":[],"startOffset":110,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"8887c35a097727ec08fdd93f51b51151","type":"CBI_author","value":"Desiree","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 14/15: Redact and add recommendation for et al.","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":324.28015,"y":295.84204},"width":36.57602,"height":-12.642029,"page":3}],"sectionNumber":21,"textBefore":"consectetur adipiscing elit ","textAfter":" et al","comments":[],"startOffset":212,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"6297da8bcb4ad9fda3729af2bfd0aa61","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":3}],"sectionNumber":48,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"b6bcc107fac241a5c2a063e88a65d268","type":"CBI_author","value":"Desiree","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 14/15: Redact and add recommendation for et al.","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":115.27,"y":308.13498},"width":30.700005,"height":-11.535004,"page":3}],"sectionNumber":21,"textBefore":"Redact Term “","textAfter":"”, “Melanie” and","comments":[],"startOffset":66,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"833634063294adb5597f010384350e9a","type":"vertebrate","value":"mouse","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 16/17: Add recommendation for Addresses in Test Organism/Animals\nsections","color":[1.0,0.52156866,0.96862745],"positions":[{"topLeft":{"x":318.60403,"y":169.94202},"width":32.603973,"height":-12.642029,"page":3}],"sectionNumber":22,"textBefore":null,"textAfter":null,"comments":[],"startOffset":325,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"8e794918f00108e6f4b91f547d961b1e","type":"CBI_author","value":"Melanie","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 14/15: Redact and add recommendation for et al.","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":162.12,"y":308.13498},"width":32.710007,"height":-11.535004,"page":3}],"sectionNumber":21,"textBefore":"Term “Desiree”, “","textAfter":"” and add","comments":[],"startOffset":77,"endOffset":84,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"17617db6d127ba54c35b047312b8a242","type":"CBI_author","value":"Melanie","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 14/15: Redact and add recommendation for et al.","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":214.66,"y":282.04205},"width":39.300003,"height":-12.642029,"page":3}],"sectionNumber":21,"textBefore":"dolore magna aliqua ","textAfter":" et al.","comments":[],"startOffset":292,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"fe6934fd66e2c5b3440667157d050d19","type":"CBI_author","value":"Funnarie B.","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: Rule 6-11 (Authors Table)","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":140.0,"y":611.81177},"width":49.48651,"height":-11.811752,"page":3}],"sectionNumber":16,"textBefore":null,"textAfter":null,"comments":[],"startOffset":7,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f334f16549061c2be9f8c872deb762fa","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":3}],"sectionNumber":57,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"16be7d4927f9b1af67379c7219c340b2","type":"vertebrate","value":"mouse","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 16/17: Add recommendation for Addresses in Test Organism/Animals\nsections","color":[1.0,0.52156866,0.96862745],"positions":[{"topLeft":{"x":318.60403,"y":156.14203},"width":32.603973,"height":-12.642029,"page":3}],"sectionNumber":22,"textBefore":null,"textAfter":null,"comments":[],"startOffset":411,"endOffset":416,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"8ec05310090119c656f07ffd7d94ac6a","type":"CBI_author","value":"Feuer A.","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: Rule 6-11 (Authors Table)","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":146.8,"y":582.11176},"width":36.193512,"height":-11.811752,"page":3}],"sectionNumber":17,"textBefore":null,"textAfter":null,"comments":[],"startOffset":6,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"4f1933f160f41958dda3e9c0ad610a22","type":"CBI_author","value":"Michael N.","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: Rule 6-11 (Authors Table)","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":141.2,"y":641.61176},"width":47.197525,"height":-11.811752,"page":3}],"sectionNumber":15,"textBefore":null,"textAfter":null,"comments":[],"startOffset":7,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"70002b1808719351098cb56c0cffa2d2","type":"PII","value":"B. Rahim","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 19/20: Redacted PII Personal Identification Information based on Dict","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":56.8,"y":275.44202},"width":45.91199,"height":-12.642029,"page":4}],"sectionNumber":26,"textBefore":"Özgür U. Reyhan ","textAfter":" C. J.","comments":[],"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"91d7be488f4750c1919315b948976949","type":"vertebrate","value":"mouse","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 16/17: (2/2 additional negative test)","color":[1.0,0.52156866,0.96862745],"positions":[{"topLeft":{"x":323.92007,"y":563.242},"width":32.603973,"height":-12.641998,"page":4}],"sectionNumber":24,"textBefore":null,"textAfter":null,"comments":[],"startOffset":195,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"fac8e1e43f45f3400bf159a1209fb9be","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":"Rule 18: Do not redact Names and Addresses if Published Information\nfound","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":449.4521,"y":410.54202},"width":16.596039,"height":-12.641998,"page":4}],"sectionNumber":25,"textBefore":"Zhou Mah, Ning ","textAfter":", Lei W.","comments":[],"startOffset":507,"endOffset":510,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"e833fe4d029f8a7313f9e327bae3041f","type":"PII","value":"Sude Halide Nurullah","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 19/20: Redacted PII Personal Identification Information based on Dict","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":56.8,"y":303.04202},"width":104.556015,"height":-12.641998,"page":4}],"sectionNumber":26,"textBefore":"923-1101, Japan, JP ","textAfter":" Özgür U.","comments":[],"startOffset":198,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"54455adb2e93a9579e4a4e0f57b51e23","type":"PII","value":"dinther@comcast.net","reason":"Personal information found","matchedRule":21,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 21/22: Redact Emails by RegEx","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":333.89212,"y":140.34204},"width":101.98816,"height":-12.642029,"page":4}],"sectionNumber":27,"textBefore":"pariatur. Excepteur sint ","textAfter":" occaecat cupidatat","comments":[],"startOffset":262,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"6ae6aa77c3d579e0a6352f561782328e","type":"CBI_author","value":"Wong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 18: Do not redact Names and Addresses if Published Information\nfound","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":269.51196,"y":410.54202},"width":28.29602,"height":-12.641998,"page":4}],"sectionNumber":25,"textBefore":"Jun K., Tu ","textAfter":", Qiang Suen,","comments":[],"startOffset":474,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"66ae3415158458d6441c158233115b29","type":"PII","value":"Xinyi Y. Tao","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 19/20: Redacted PII Personal Identification Information based on Dict","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":56.8,"y":247.84204},"width":60.599987,"height":-12.642029,"page":4}],"sectionNumber":26,"textBefore":"C. J. Alfred ","textAfter":" Clara Siegfried","comments":[],"startOffset":257,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"eaaa9c788fae545476d2362709b5229f","type":"PII","value":"gordonjcp@msn.com","reason":"Personal information found","matchedRule":21,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 21/22: Redact Emails by RegEx","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":404.96823,"y":154.14203},"width":103.308075,"height":-12.642029,"page":4}],"sectionNumber":27,"textBefore":"reprehenderit in voluptate ","textAfter":" velit esse","comments":[],"startOffset":178,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"642de2d42c17f479ab0100ba9e0d7211","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":"Rule 18: Do not redact Names and Addresses if Published Information\nfound","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":507.04016,"y":410.54202},"width":31.991943,"height":-12.641998,"page":4}],"sectionNumber":25,"textBefore":"Liu, Lei W. ","textAfter":", Ru X.","comments":[],"startOffset":519,"endOffset":524,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2403ebe01706722932fd5338e2a19adc","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":"Rule 18: Do not redact Names and Addresses if Published Information\nfound","color":[1.0,0.88235295,0.5294118],"positions":[{"topLeft":{"x":88.192,"y":396.74203},"width":16.800003,"height":-12.641998,"page":4}],"sectionNumber":25,"textBefore":"Huang, Ru X. ","textAfter":null,"comments":[],"startOffset":532,"endOffset":534,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5ec0f82007c5cf97728aa5bf53d65d88","type":"PII","value":"Özgür U. Reyhan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 19/20: Redacted PII Personal Identification Information based on Dict","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":56.8,"y":289.242},"width":84.192,"height":-12.642029,"page":4}],"sectionNumber":26,"textBefore":"Sude Halide Nurullah ","textAfter":" B. Rahim","comments":[],"startOffset":219,"endOffset":234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"a333cf8c030fcb589dbb42139b4776d2","type":"PII","value":"library@outlook.com","reason":"Personal information found","matchedRule":21,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 21/22: Redact Emails by RegEx","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":171.748,"y":154.14203},"width":103.296036,"height":-12.642029,"page":4}],"sectionNumber":27,"textBefore":"irure dolor in ","textAfter":" reprehenderit in","comments":[],"startOffset":131,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"1ff7d70f6b9ca415b3ac2ac7b090ad19","type":"vertebrate","value":"mouse","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 16/17: (2/2 additional negative test)","color":[1.0,0.52156866,0.96862745],"positions":[{"topLeft":{"x":336.9161,"y":577.04205},"width":32.603973,"height":-12.641998,"page":4}],"sectionNumber":24,"textBefore":null,"textAfter":null,"comments":[],"startOffset":111,"endOffset":116,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"609b466f0960f9ea5aa6d19e0d9de5bc","type":"PII","value":"Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 19/20: Redacted PII Personal Identification Information based on Dict","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":56.8,"y":316.84204},"width":269.37607,"height":-12.641998,"page":4}],"sectionNumber":26,"textBefore":"Study is No ","textAfter":" Sude Halide","comments":[],"startOffset":146,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"0e72674bb524dff6c1d9e63f164a070b","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":4}],"sectionNumber":58,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"19cbb3c4ef9f60dde6a10bfd21519822","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":4}],"sectionNumber":49,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"81d1f223b94cad1e276db7fb89dfbbb7","type":"PII","value":"kawasaki@me.com","reason":"Personal information found","matchedRule":21,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 21/22: Redact Emails by RegEx","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":138.06398,"y":126.54205},"width":93.99602,"height":-12.642029,"page":4}],"sectionNumber":27,"textBefore":"proident, sunt in ","textAfter":" culpa qui","comments":[],"startOffset":323,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"ff168dd37faf15c0d25a08b3b07618ad","type":"PII","value":"+274 1432 8990","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":356.75204,"y":325.2815},"width":58.995026,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"8991 Fax number: ","textAfter":" Telephone: +274","comments":[],"startOffset":590,"endOffset":604,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"246c8e170ed5e557bc824538a6c404c8","type":"PII","value":"Seriknowmobil@co.uk","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":337.94205,"y":397.7815},"width":83.52905,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"6653 44563 E-mail: ","textAfter":" Email: maximiliamschmitt@arcor.de","comments":[],"startOffset":365,"endOffset":384,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"dc60967f50c70165eccc81dffc4883ed","type":"PII","value":"493 1223 4592","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":341.44302,"y":294.2815},"width":53.991028,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"1432 8933 Contact: ","textAfter":" European contact:","comments":[],"startOffset":664,"endOffset":677,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d28193181151c022a93e21df3c15450d","type":"PII","value":"+27414328992","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":380.51205,"y":345.9815},"width":54.593994,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"Schmitt Telephone number: ","textAfter":" Telephone No:","comments":[],"startOffset":536,"endOffset":548,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"a78592923d5bfd382021b2c72f46b6db","type":"PII","value":"maximiliamschmitt@arcor.de","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":334.94504,"y":387.3815},"width":106.83017,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"E-mail: Seriknowmobil@co.uk Email: ","textAfter":" e-mail: maximiliamschmitt@t-online.de","comments":[],"startOffset":392,"endOffset":418,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"cc508b48ace514fb1d89ee30ae579515","type":"PII","value":"+49 2113 2311 560","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: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":326.98,"y":428.7815},"width":69.68704,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"2311 563 Fax: ","textAfter":" Tel.: +81","comments":[],"startOffset":299,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"815ad6c1369cbc76c97f4dd571db1aaa","type":"PII","value":"\")","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":490.14966,"y":705.9678},"width":11.378723,"height":-13.867798,"page":5}],"sectionNumber":31,"textBefore":"(contains \"Contact point:","textAfter":" Redact when","comments":[],"startOffset":64,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"4e14fac8a5c5ab0815a865b56911e21a","type":"PII","value":"Central Research Industry","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":362.22406,"y":449.4815},"width":93.77109,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"Contact point: ","textAfter":" Phone: +49","comments":[],"startOffset":243,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d0ed11f040c2f826f5749b5e7202dd6e","type":"PII","value":"Emilia Lockhart","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":382.0601,"y":273.58148},"width":58.69806,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"Institute Alternative contact: ","textAfter":" Alternative contact:","comments":[],"startOffset":744,"endOffset":759,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2184ead9005dd1eae2ff8fd837c4af34","type":"PII","value":"Tiffany Umbrella","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":636.142},"width":83.592026,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"Organisation Contact point: ","textAfter":" Address: Goldstreet","comments":[],"startOffset":229,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f9917442aab38edae9ff7e7cba1f9fff","type":"PII","value":"+55 1221 3431 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":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":525.742},"width":87.696,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"be redacted Tel.: ","textAfter":" No: This","comments":[],"startOffset":463,"endOffset":479,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d380934c73ae7308cc323de5047f4290","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":5}],"sectionNumber":50,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"0380dfce74e985ef7b1d2925d929b876","type":"PII","value":"+55 1221 3431 12","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":594.742},"width":87.696,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"TX, USA Phone: ","textAfter":" Fax: +55","comments":[],"startOffset":291,"endOffset":307,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"7d8ac49d19e251ddb66e4fc4db0d77ab","type":"PII","value":"European Central Institute","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":376.09305,"y":283.88153},"width":94.86011,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"4592 European contact: ","textAfter":" Alternative contact:","comments":[],"startOffset":696,"endOffset":722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"9f495fa016bc9c35dffcc5e82c3ca8e7","type":"PII","value":"This is a special case, everything between this and the next keyword should be redacted","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":511.94202},"width":282.74426,"height":-12.641998,"page":5},{"topLeft":{"x":164.8,"y":498.14203},"width":134.86809,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"3431 13 No: ","textAfter":" Fax +55","comments":[],"startOffset":484,"endOffset":571,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d13068e99bcc2ff34f56ac3e34009468","type":"PII","value":"+274 1432 8991","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":364.03302,"y":335.68152},"width":59.085022,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"+27414328992 Telephone No: ","textAfter":" Fax number:","comments":[],"startOffset":563,"endOffset":577,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"4c608a4d397ba804d5c2dcbe57095a76","type":"PII","value":"+81 6653 44563","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: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":324.86502,"y":408.0815},"width":59.085022,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"+81 764770164 Tel: ","textAfter":" E-mail: Seriknowmobil@co.uk","comments":[],"startOffset":342,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"3153ab17735fb1480023616a2d4b1f32","type":"PII","value":"+49 2113 2311 563","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: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":335.98,"y":439.18152},"width":69.68704,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"Research Industry Phone: ","textAfter":" Fax: +49","comments":[],"startOffset":276,"endOffset":293,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5b53b5ca19ed17ba8cd472046b7e458b","type":"PII","value":"+81 764770164","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: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":327.06104,"y":418.4815},"width":56.889008,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"2311 560 Tel.: ","textAfter":" Tel: +81","comments":[],"startOffset":323,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"e042c6782e2377a8550e970240199d3c","type":"PII","value":"+55 1221 3431 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":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":580.942},"width":87.696,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"3431 12 Fax: ","textAfter":" E-mail: shinrorg@saopu.com.br","comments":[],"startOffset":313,"endOffset":329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"ef878a3130faf98786f7f1c094cc6291","type":"PII","value":"Maximiliam Schmitt","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":341.44302,"y":356.3815},"width":74.59213,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"address: example@mail.com Contact: ","textAfter":" Telephone number:","comments":[],"startOffset":499,"endOffset":517,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"7b688df64aeaa8e0c5397ccce900ad8e","type":"PII","value":"example@mail.com","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":367.21008,"y":366.68152},"width":72.387085,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"maximiliamschmitt@t-online.de E-mail address: ","textAfter":" Contact: Maximiliam","comments":[],"startOffset":473,"endOffset":489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5fbf0854b5eb5323b00c62e3225a72d2","type":"PII","value":"+274 34223331","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: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":350.83902,"y":314.9815},"width":56.79901,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"1432 8990 Telephone: ","textAfter":" Phone No.","comments":[],"startOffset":616,"endOffset":629,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2f429d40393e13a0a09e239d0edeb077","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":5}],"sectionNumber":59,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f3453d204608b10d7da846f4b37e63bb","type":"PII","value":"This is a special case, everything between this and the next keyword should be redacted","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":553.34204},"width":282.74426,"height":-12.641998,"page":5},{"topLeft":{"x":164.8,"y":539.54205},"width":134.86809,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"E-mail: shinrorg@saopu.com.br Contact: ","textAfter":" Tel.: +55","comments":[],"startOffset":369,"endOffset":456,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"e86311e6c9d1b67b77a60cb634ede133","type":"PII","value":"maximiliamschmitt@t-online.de","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":336.43906,"y":377.0815},"width":116.82919,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"Email: maximiliamschmitt@arcor.de e-mail: ","textAfter":" E-mail address:","comments":[],"startOffset":427,"endOffset":456,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"07a7c30427db240349e35e7d404a9023","type":"PII","value":"shinrorg@saopu.com.br","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":567.142},"width":115.38002,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"3431 10 E-mail: ","textAfter":" Contact: This","comments":[],"startOffset":338,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"cd44d6a63f6d16f3f0bbe645e91e303c","type":"PII","value":"+55 1221 3431 14","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":484.34204},"width":87.696,"height":-12.641998,"page":5}],"sectionNumber":31,"textBefore":"be redacted Fax ","textAfter":null,"comments":[],"startOffset":576,"endOffset":592,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"bb5f81c67caad62f328729fddf91ed01","type":"PII","value":"+274 1432 8933","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 23/24: Redact contact information (contains \"Contact point:\")","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":348.976,"y":304.5815},"width":59.085022,"height":-10.981506,"page":5}],"sectionNumber":29,"textBefore":"34223331 Phone No. ","textAfter":" Contact: 493","comments":[],"startOffset":640,"endOffset":654,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5d5882a7a361fe926aad1c6571f8ab32","type":"PII","value":"+27414328992","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":380.51205,"y":288.38153},"width":54.593994,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"Schmitt Telephone number: ","textAfter":" Telephone No:","comments":[],"startOffset":536,"endOffset":548,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"c9edcd1ee08ba4857bce5122fdb9ede0","type":"PII","value":"+82 122 341881","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":468.14203},"width":78.696,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"be redacted Tel.: ","textAfter":" No: This","comments":[],"startOffset":487,"endOffset":501,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"8d127621a973c216cc2f682ced59348c","type":"PII","value":"This is a special case, everything between this and the next keyword should be redacted","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":495.74203},"width":282.74426,"height":-12.641998,"page":6},{"topLeft":{"x":164.8,"y":481.94202},"width":134.86809,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"E-mail: food-industry@korea.com Contact: ","textAfter":" Tel.: +82","comments":[],"startOffset":393,"endOffset":480,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"205b6a821d3a98f860be1f1b5b3966b1","type":"PII","value":"maximiliamschmitt@arcor.de","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":334.94504,"y":329.7815},"width":106.83017,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"E-mail: Seriknowmobil@co.uk Email: ","textAfter":" e-mail: maximiliamschmitt@t-online.de","comments":[],"startOffset":392,"endOffset":418,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"21c5ef2b79a90118b01d766d0177a570","type":"PII","value":"Seriknowmobil@co.uk","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":337.94205,"y":340.18152},"width":83.52905,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"6653 44563 E-mail: ","textAfter":" Email: maximiliamschmitt@arcor.de","comments":[],"startOffset":365,"endOffset":384,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"a1c4bee8f2c7ddc33d1269c31f199f34","type":"PII","value":"food-industry@korea.com","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":509.54202},"width":126.60005,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"122 34180 E-mail: ","textAfter":" Contact: This","comments":[],"startOffset":360,"endOffset":383,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2206b5d18ef3649095d6a8285e8ae510","type":"PII","value":"Riddley Scott","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":592.34204},"width":65.59201,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"Name: Contact point: ","textAfter":" Address: 1921","comments":[],"startOffset":236,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"baac21659a54cf4b88fecfe9488afe23","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":6}],"sectionNumber":60,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"1b4eef48b210325f06cf01d94713dfd7","type":"PII","value":"+274 1432 8991","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":364.03302,"y":278.08148},"width":59.085022,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"+27414328992 Telephone No: ","textAfter":" Fax number:","comments":[],"startOffset":563,"endOffset":577,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"fd1d606f56794e69fbff6cafdd9154cf","type":"PII","value":"+49 2113 2311 560","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: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":326.98,"y":371.18152},"width":69.68704,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"2311 563 Fax: ","textAfter":" Tel.: +81","comments":[],"startOffset":299,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"ae1e4fbff581a186835d36314ee9f0ed","type":"PII","value":"493 1223 4592","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":341.44302,"y":236.68152},"width":53.991028,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"1432 8933 Contact: ","textAfter":" European contact:","comments":[],"startOffset":664,"endOffset":677,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"ae077687502a3c885da266009553a68e","type":"PII","value":"+81 6653 44563","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: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":324.86502,"y":350.4815},"width":59.085022,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"+81 764770164 Tel: ","textAfter":" E-mail: Seriknowmobil@co.uk","comments":[],"startOffset":342,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"742e2158a0b7b60c902cc7f806449d77","type":"PII","value":"+49 2113 2311 563","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: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":335.98,"y":381.5815},"width":69.68704,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"Research Industry Phone: ","textAfter":" Fax: +49","comments":[],"startOffset":276,"endOffset":293,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"4be04321c91b114817b4657c97eddac5","type":"PII","value":"+81 764770164","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: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":327.06104,"y":360.8815},"width":56.889008,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"2311 560 Tel.: ","textAfter":" Tel: +81","comments":[],"startOffset":323,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5a4aabf909f10663376805a573efe6f9","type":"PII","value":"+274 1432 8990","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":356.75204,"y":267.68152},"width":58.995026,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"8991 Fax number: ","textAfter":" Telephone: +274","comments":[],"startOffset":590,"endOffset":604,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2d8809c60064fc8e389a92409380159d","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":6}],"sectionNumber":51,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d3a8dd3a566cf73b2de375f6476d9270","type":"PII","value":"+82 122 341882","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":426.74203},"width":78.696,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"be redacted Fax ","textAfter":" Soylent Corporation","comments":[],"startOffset":598,"endOffset":612,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5bdc1208d628297939d354f6f12ec1e4","type":"PII","value":"Emilia Lockhart","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":382.0601,"y":215.9815},"width":58.69806,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"Institute Alternative contact: ","textAfter":" Alternative contact:","comments":[],"startOffset":744,"endOffset":759,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"1981e616749716478839f1591021d8d6","type":"PII","value":"+274 34223331","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: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":350.83902,"y":257.38153},"width":56.79901,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"1432 8990 Telephone: ","textAfter":" Phone No.","comments":[],"startOffset":616,"endOffset":629,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"625a9b1a139f8e5f9061f25dd6062e25","type":"PII","value":"+274 1432 8933","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":348.976,"y":246.9815},"width":59.085022,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"34223331 Phone No. ","textAfter":" Contact: 493","comments":[],"startOffset":640,"endOffset":654,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"c658bcdcbcd8cf678b79cc715c024c70","type":"PII","value":"+82 122 34180","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":523.34204},"width":72.696,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"122 34188 Fax: ","textAfter":" E-mail: food-industry@korea.com","comments":[],"startOffset":338,"endOffset":351,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"e6b4801cb6086d04ed35dea9308461bd","type":"PII","value":"European Central Institute","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":376.09305,"y":226.2815},"width":94.86011,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"4592 European contact: ","textAfter":" Alternative contact:","comments":[],"startOffset":696,"endOffset":722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"aef1c65f60f29b4bd9cf459baae4c0fc","type":"PII","value":"Central Research Industry","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":362.22406,"y":391.8815},"width":93.77109,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"Contact point: ","textAfter":" Phone: +49","comments":[],"startOffset":243,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"302fb6b2a4f2381a6916668abc5ea208","type":"PII","value":"Maximiliam Schmitt","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":341.44302,"y":298.7815},"width":74.59213,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"address: example@mail.com Contact: ","textAfter":" Telephone number:","comments":[],"startOffset":499,"endOffset":517,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"c2d6b072d1f09939693e31c9a7870934","type":"PII","value":"example@mail.com","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":367.21008,"y":309.0815},"width":72.387085,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"maximiliamschmitt@t-online.de E-mail address: ","textAfter":" Contact: Maximiliam","comments":[],"startOffset":473,"endOffset":489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"32e8c40a25a6cdcf9ddd9fb41c3dc8c8","type":"PII","value":"+82 122 34188","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":537.142},"width":72.696,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"United States Phone: ","textAfter":" Fax: +82","comments":[],"startOffset":319,"endOffset":332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"9fe9630ad55ae2cf0a480523bacb9291","type":"PII","value":"maximiliamschmitt@t-online.de","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":336.43906,"y":319.4815},"width":116.82919,"height":-10.981506,"page":6}],"sectionNumber":33,"textBefore":"Email: maximiliamschmitt@arcor.de e-mail: ","textAfter":" E-mail address:","comments":[],"startOffset":427,"endOffset":456,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f871e23bc3e9842c0fc966cd28506588","type":"PII","value":"This is a special case, everything between this and the next keyword should be redacted","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 25/26: Redact contact information (contains \"Applicant\" as Headline\nor Text)","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":454.34204},"width":282.74426,"height":-12.641998,"page":6},{"topLeft":{"x":164.8,"y":440.54202},"width":134.86809,"height":-12.641998,"page":6}],"sectionNumber":35,"textBefore":"122 341881 No: ","textAfter":" Fax +82","comments":[],"startOffset":506,"endOffset":593,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f163afe507f0eca1cde5fa049a6c870e","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":7}],"sectionNumber":52,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"3100403a071d59b1232a6af2a629eb36","type":"PII","value":"Dr. Alan Grant","reason":"Author found","matchedRule":27,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 29/30: If \"Authors:\" and \"completion dates\", then redact everything between","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":200.8,"y":351.44202},"width":70.89604,"height":-12.641998,"page":7}],"sectionNumber":38,"textBefore":"Study Report___ AUTHOR(S): ","textAfter":" COMPLETION DATE:","comments":[],"startOffset":179,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"093ce96a4bcb6727b53604b8babe447b","type":"PII","value":"+82 122 3418800","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Producer of the plant production","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":541.742},"width":84.696,"height":-12.641998,"page":7}],"sectionNumber":37,"textBefore":"United States Phone: ","textAfter":" Fax: +82","comments":[],"startOffset":137,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"2c4dd52bc76fd344ace84ae6847b3a2e","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":7}],"sectionNumber":61,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d38ae3ea2c27b913f64b2bfba2dd9a5e","type":"PII","value":"Dr. Alan Grant","reason":"AUTHOR(S) was found","matchedRule":29,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rule 31/32: If “Authors:” and “Study Completion Dates”, then redact everything between","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":236.8,"y":202.54205},"width":70.89604,"height":-12.642029,"page":7}],"sectionNumber":39,"textBefore":"Study Report___ AUTHOR(S): ","textAfter":" STUDY COMPLETION","comments":[],"startOffset":185,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"311811bb65faed5efcea63e383e3a2c0","type":"PII","value":"Riddley Scott","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Producer of the plant production","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":596.942},"width":65.59201,"height":-12.641998,"page":7}],"sectionNumber":37,"textBefore":"Name: Contact point: ","textAfter":" Address: 1921","comments":[],"startOffset":54,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"cb37681bb320742607952d991de68112","type":"PII","value":"This is a special case, everything between this and the next keyword should be redacted","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Producer of the plant production","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":500.34204},"width":282.74426,"height":-12.641998,"page":7},{"topLeft":{"x":164.8,"y":486.54202},"width":134.86809,"height":-12.641998,"page":7}],"sectionNumber":37,"textBefore":"E-mail: pharma-industry@korea.com No: ","textAfter":" Fax +82","comments":[],"startOffset":212,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"ed6bb0ba9e6af7a7c099290445284253","type":"PII","value":"+82 122 34188202","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Producer of the plant production","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":472.74203},"width":90.696,"height":-12.641998,"page":7}],"sectionNumber":37,"textBefore":"be redacted Fax ","textAfter":" Soylent Corporation","comments":[],"startOffset":304,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"bc2149a4d01684aa641113b503791d7f","type":"PII","value":"pharma-industry@korea.com","reason":"Personal information found","matchedRule":23,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Producer of the plant production","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":514.142},"width":140.59209,"height":-12.641998,"page":7}],"sectionNumber":37,"textBefore":"122 3418001 E-mail: ","textAfter":" No: This","comments":[],"startOffset":182,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"ef4b197ffcb3a9c1b997fd1b8bae05af","type":"PII","value":"+82 122 3418001","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Producer of the plant production","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":164.8,"y":527.942},"width":84.696,"height":-12.641998,"page":7}],"sectionNumber":37,"textBefore":"122 3418800 Fax: ","textAfter":" E-mail: pharma-industry@korea.com","comments":[],"startOffset":158,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"3b9c4170922e41e676ec48897cce5b37","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":313.14203},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":145,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"fc2f594f0210f378c9d650259390154c","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":216.54205},"width":28.595997,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":911,"endOffset":917,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"e167e11306c648b1a070a9413aee440d","type":"CBI_address","value":"Umbrella Corporation","reason":"Performing laboratory found for non vertebrate study","matchedRule":31,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 33/34: If \"Performing Lab\" and \"Lab Project ID\", then Redact everything between","color":[0.8,0.8,0.8],"positions":[{"topLeft":{"x":236.8,"y":633.84204},"width":106.16414,"height":-12.641998,"page":8}],"sectionNumber":40,"textBefore":"Report___ PERFORMING LABORATORY: ","textAfter":" LABORATORY PROJECT","comments":[],"startOffset":197,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"17c8ff8d8b187247265974a95e546417","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":423.54202},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":81,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5c7d37dc68c2e430fd385c843685de09","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":354.54202},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":121,"endOffset":128,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"5f615a441c06436e5969a721c7e91fce","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":115.6,"y":484.0678},"width":39.91709,"height":-13.867798,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":9,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"02702fc1eb5e537743040bc393a57d15","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":340.74203},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":129,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d1d28b8aa21c2fa5feed61fef21711ce","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":271.742},"width":32.603992,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":169,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"9805999225048a7f792d0c10b2ea5e9a","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":382.14203},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":105,"endOffset":112,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"67508a836a298ca3b7813e8add65f5e0","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":257.94202},"width":32.603992,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":177,"endOffset":184,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"70c6afb363ae2bc5a7dffb5f41fca5d0","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":368.34204},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":113,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f138fbca1ce8390d825310909a0f33f8","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":216.54205},"width":31.919994,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":939,"endOffset":946,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d94bf1b70cfcb05ecb00994cc5abc890","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":8}],"sectionNumber":62,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"f784db38199421e8e4efaa3760158a48","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":299.34204},"width":32.603992,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":153,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"52f7f3d787b3bfd33da99c5b88a8f7f1","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":409.74203},"width":29.279995,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":967,"endOffset":973,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"93526b30f5b480d63053e906a5cd41c7","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":409.74203},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":89,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"af1ea16a7b8490984fb2b214af361a37","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":285.54205},"width":32.603992,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":161,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"161c4e3da3f995172904dc30843a60ac","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":8}],"sectionNumber":53,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"67afe24c7ea99e2632ac20f9bf52d3e0","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":395.94202},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":97,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"d5efc15fc3f6f837256f9a8d57abfd34","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":326.94202},"width":32.603992,"height":-12.641998,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":137,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"6fd49ce3f10affe57d24f67f206a4f10","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":75.4,"y":463.43497},"width":24.909988,"height":-11.535004,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"204ef9a3c762a1283d5ef83c6c0b3410","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Rule 39: Purity Hint","color":[0.67058825,0.7529412,0.76862746],"positions":[{"topLeft":{"x":56.8,"y":230.34204},"width":31.919994,"height":-12.642029,"page":8}],"sectionNumber":42,"textBefore":null,"textAfter":null,"comments":[],"startOffset":877,"endOffset":884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":true,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"688b8e499afb958699834482b6c38323","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":734.742},"width":23.304,"height":-12.641998,"page":9}],"sectionNumber":54,"textBefore":"This is a ","textAfter":"-Header","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false},{"id":"8fafcbefac14ac6b258d4ee07c7a0954","type":"PII","value":"Page","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Footer","color":[0.4,0.8,1.0],"positions":[{"topLeft":{"x":100.383995,"y":69.94202},"width":23.304,"height":-12.642029,"page":9}],"sectionNumber":63,"textBefore":"This is a ","textAfter":"-Footer","comments":[],"startOffset":10,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":0,"type":"ADDED","dateTime":"2022-10-05T15:31:55.0815868+02:00"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"localManualRedaction":false,"recommendation":false,"hint":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false,"manuallyRemoved":false}],"legalBasis":[],"dictionaryVersion":0,"dossierDictionaryVersion":0,"rulesVersion":0,"legalBasisVersion":0} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/RulesTest/RuleTestDocument.pdf b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/RulesTest/RuleTestDocument.pdf new file mode 100644 index 00000000..a5712b56 Binary files /dev/null and b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/RulesTest/RuleTestDocument.pdf differ diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/cv_service_empty_response.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/cv_service_empty_response.json new file mode 100644 index 00000000..d7f02e81 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/cv_service_empty_response.json @@ -0,0 +1,8 @@ +{ + "dossierId": "123", + "fileId": "123", + "operation": "table", + "targetFileExtension": "ORIGIN.pdf.gz", + "responseFileExtension": "TABLES.json.gz", + "data": [] +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/cv_table_response_VV-511309.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/cv_table_response_VV-511309.json new file mode 100644 index 00000000..3bfe4510 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/cv_table_response_VV-511309.json @@ -0,0 +1,71808 @@ +{ + "dossierId": "6c88e92c-075e-4aa9-8385-cb46644e2493", + "fileId": "7aabbd8567caa9fac1c575a7e58f232b", + "operation": "table", + "targetFileExtension": "ORIGIN.pdf.gz", + "responseFileExtension": "TABLES.json.gz", + "data": [{ + "pageInfo": { + "number": 4, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 86.04000091552734, + "y0": 617.760009765625, + "x1": 162.0, + "y1": 651.9600219726562, + "width": 75.95999908447266, + "height": 34.20001220703125 + }, { + "x0": 162.72000122070312, + "y0": 617.760009765625, + "x1": 283.67999267578125, + "y1": 651.9600219726562, + "width": 120.95999145507812, + "height": 34.20001220703125 + }, { + "x0": 284.3999938964844, + "y0": 617.760009765625, + "x1": 373.67999267578125, + "y1": 651.9600219726562, + "width": 89.27999877929688, + "height": 34.20001220703125 + }, { + "x0": 374.3999938964844, + "y0": 617.760009765625, + "x1": 456.4800109863281, + "y1": 651.9600219726562, + "width": 82.08001708984375, + "height": 34.20001220703125 + }, { + "x0": 457.20001220703125, + "y0": 617.760009765625, + "x1": 544.6799926757812, + "y1": 651.9600219726562, + "width": 87.47998046875, + "height": 34.20001220703125 + }, { + "x0": 86.04000091552734, + "y0": 602.6400146484375, + "x1": 162.0, + "y1": 615.9600219726562, + "width": 75.95999908447266, + "height": 13.32000732421875 + }, { + "x0": 162.72000122070312, + "y0": 602.6400146484375, + "x1": 283.67999267578125, + "y1": 615.9600219726562, + "width": 120.95999145507812, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 602.6400146484375, + "x1": 373.67999267578125, + "y1": 615.9600219726562, + "width": 89.27999877929688, + "height": 13.32000732421875 + }, { + "x0": 374.3999938964844, + "y0": 602.6400146484375, + "x1": 456.4800109863281, + "y1": 615.9600219726562, + "width": 82.08001708984375, + "height": 13.32000732421875 + }, { + "x0": 457.20001220703125, + "y0": 602.6400146484375, + "x1": 544.6799926757812, + "y1": 615.9600219726562, + "width": 87.47998046875, + "height": 13.32000732421875 + }, { + "x0": 86.04000091552734, + "y0": 588.239990234375, + "x1": 162.0, + "y1": 601.9199829101562, + "width": 75.95999908447266, + "height": 13.67999267578125 + }, { + "x0": 162.72000122070312, + "y0": 588.239990234375, + "x1": 283.67999267578125, + "y1": 601.9199829101562, + "width": 120.95999145507812, + "height": 13.67999267578125 + }, { + "x0": 284.3999938964844, + "y0": 588.239990234375, + "x1": 373.67999267578125, + "y1": 601.9199829101562, + "width": 89.27999877929688, + "height": 13.67999267578125 + }, { + "x0": 374.3999938964844, + "y0": 588.239990234375, + "x1": 456.4800109863281, + "y1": 601.9199829101562, + "width": 82.08001708984375, + "height": 13.67999267578125 + }, { + "x0": 457.20001220703125, + "y0": 588.239990234375, + "x1": 544.6799926757812, + "y1": 601.9199829101562, + "width": 87.47998046875, + "height": 13.67999267578125 + }, { + "x0": 86.04000091552734, + "y0": 574.2000122070312, + "x1": 162.0, + "y1": 587.52001953125, + "width": 75.95999908447266, + "height": 13.32000732421875 + }, { + "x0": 162.72000122070312, + "y0": 574.2000122070312, + "x1": 283.67999267578125, + "y1": 587.52001953125, + "width": 120.95999145507812, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 574.2000122070312, + "x1": 373.67999267578125, + "y1": 587.52001953125, + "width": 89.27999877929688, + "height": 13.32000732421875 + }, { + "x0": 374.3999938964844, + "y0": 574.2000122070312, + "x1": 456.4800109863281, + "y1": 587.52001953125, + "width": 82.08001708984375, + "height": 13.32000732421875 + }, { + "x0": 457.20001220703125, + "y0": 574.2000122070312, + "x1": 544.6799926757812, + "y1": 587.52001953125, + "width": 87.47998046875, + "height": 13.32000732421875 + }, { + "x0": 86.04000091552734, + "y0": 559.7999877929688, + "x1": 162.0, + "y1": 573.47998046875, + "width": 75.95999908447266, + "height": 13.67999267578125 + }, { + "x0": 162.72000122070312, + "y0": 559.7999877929688, + "x1": 283.67999267578125, + "y1": 573.47998046875, + "width": 120.95999145507812, + "height": 13.67999267578125 + }, { + "x0": 284.3999938964844, + "y0": 559.7999877929688, + "x1": 373.67999267578125, + "y1": 573.47998046875, + "width": 89.27999877929688, + "height": 13.67999267578125 + }, { + "x0": 374.3999938964844, + "y0": 559.7999877929688, + "x1": 456.4800109863281, + "y1": 573.47998046875, + "width": 82.08001708984375, + "height": 13.67999267578125 + }, { + "x0": 457.20001220703125, + "y0": 559.7999877929688, + "x1": 544.6799926757812, + "y1": 573.47998046875, + "width": 87.47998046875, + "height": 13.67999267578125 + }, { + "x0": 86.04000091552734, + "y0": 476.2799987792969, + "x1": 238.67999267578125, + "y1": 511.20001220703125, + "width": 152.6399917602539, + "height": 34.920013427734375 + }, { + "x0": 239.39999389648438, + "y0": 476.2799987792969, + "x1": 373.67999267578125, + "y1": 511.20001220703125, + "width": 134.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 374.3999938964844, + "y0": 476.2799987792969, + "x1": 459.0, + "y1": 511.20001220703125, + "width": 84.60000610351562, + "height": 34.920013427734375 + }, { + "x0": 459.7200012207031, + "y0": 476.2799987792969, + "x1": 544.6799926757812, + "y1": 511.20001220703125, + "width": 84.95999145507812, + "height": 34.920013427734375 + }, { + "x0": 86.04000091552734, + "y0": 462.6000061035156, + "x1": 238.67999267578125, + "y1": 474.8399963378906, + "width": 152.6399917602539, + "height": 12.239990234375 + }, { + "x0": 239.39999389648438, + "y0": 462.6000061035156, + "x1": 373.67999267578125, + "y1": 474.8399963378906, + "width": 134.27999877929688, + "height": 12.239990234375 + }, { + "x0": 374.3999938964844, + "y0": 462.6000061035156, + "x1": 459.0, + "y1": 474.8399963378906, + "width": 84.60000610351562, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 462.6000061035156, + "x1": 544.6799926757812, + "y1": 474.8399963378906, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 86.04000091552734, + "y0": 449.6400146484375, + "x1": 238.67999267578125, + "y1": 461.8800048828125, + "width": 152.6399917602539, + "height": 12.239990234375 + }, { + "x0": 239.39999389648438, + "y0": 449.6400146484375, + "x1": 373.67999267578125, + "y1": 461.8800048828125, + "width": 134.27999877929688, + "height": 12.239990234375 + }, { + "x0": 374.3999938964844, + "y0": 449.6400146484375, + "x1": 459.0, + "y1": 461.8800048828125, + "width": 84.60000610351562, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 449.6400146484375, + "x1": 544.6799926757812, + "y1": 461.8800048828125, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 86.04000091552734, + "y0": 436.67999267578125, + "x1": 238.67999267578125, + "y1": 448.9200134277344, + "width": 152.6399917602539, + "height": 12.240020751953125 + }, { + "x0": 239.39999389648438, + "y0": 436.67999267578125, + "x1": 373.67999267578125, + "y1": 448.9200134277344, + "width": 134.27999877929688, + "height": 12.240020751953125 + }, { + "x0": 374.3999938964844, + "y0": 436.67999267578125, + "x1": 459.0, + "y1": 448.9200134277344, + "width": 84.60000610351562, + "height": 12.240020751953125 + }, { + "x0": 459.7200012207031, + "y0": 436.67999267578125, + "x1": 544.6799926757812, + "y1": 448.9200134277344, + "width": 84.95999145507812, + "height": 12.240020751953125 + }, { + "x0": 86.04000091552734, + "y0": 424.0799865722656, + "x1": 238.67999267578125, + "y1": 435.9599914550781, + "width": 152.6399917602539, + "height": 11.8800048828125 + }, { + "x0": 239.39999389648438, + "y0": 424.0799865722656, + "x1": 373.67999267578125, + "y1": 435.9599914550781, + "width": 134.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 374.3999938964844, + "y0": 424.0799865722656, + "x1": 459.0, + "y1": 435.9599914550781, + "width": 84.60000610351562, + "height": 11.8800048828125 + }, { + "x0": 459.7200012207031, + "y0": 424.0799865722656, + "x1": 544.6799926757812, + "y1": 435.9599914550781, + "width": 84.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 86.04000091552734, + "y0": 411.1199951171875, + "x1": 238.67999267578125, + "y1": 423.3599853515625, + "width": 152.6399917602539, + "height": 12.239990234375 + }, { + "x0": 239.39999389648438, + "y0": 411.1199951171875, + "x1": 373.67999267578125, + "y1": 423.3599853515625, + "width": 134.27999877929688, + "height": 12.239990234375 + }, { + "x0": 374.3999938964844, + "y0": 411.1199951171875, + "x1": 459.0, + "y1": 423.3599853515625, + "width": 84.60000610351562, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 411.1199951171875, + "x1": 544.6799926757812, + "y1": 423.3599853515625, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 86.04000091552734, + "y0": 327.6000061035156, + "x1": 162.0, + "y1": 362.5199890136719, + "width": 75.95999908447266, + "height": 34.91998291015625 + }, { + "x0": 162.72000122070312, + "y0": 327.6000061035156, + "x1": 283.67999267578125, + "y1": 362.5199890136719, + "width": 120.95999145507812, + "height": 34.91998291015625 + }, { + "x0": 284.3999938964844, + "y0": 327.6000061035156, + "x1": 371.8800048828125, + "y1": 362.5199890136719, + "width": 87.48001098632812, + "height": 34.91998291015625 + }, { + "x0": 372.6000061035156, + "y0": 327.6000061035156, + "x1": 459.0, + "y1": 362.5199890136719, + "width": 86.39999389648438, + "height": 34.91998291015625 + }, { + "x0": 459.7200012207031, + "y0": 327.6000061035156, + "x1": 544.6799926757812, + "y1": 362.5199890136719, + "width": 84.95999145507812, + "height": 34.91998291015625 + }, { + "x0": 86.04000091552734, + "y0": 299.8800048828125, + "x1": 162.0, + "y1": 326.1600036621094, + "width": 75.95999908447266, + "height": 26.279998779296875 + }, { + "x0": 162.72000122070312, + "y0": 313.9200134277344, + "x1": 283.67999267578125, + "y1": 326.1600036621094, + "width": 120.95999145507812, + "height": 12.239990234375 + }, { + "x0": 284.3999938964844, + "y0": 313.9200134277344, + "x1": 371.8800048828125, + "y1": 326.1600036621094, + "width": 87.48001098632812, + "height": 12.239990234375 + }, { + "x0": 372.6000061035156, + "y0": 313.9200134277344, + "x1": 459.0, + "y1": 326.1600036621094, + "width": 86.39999389648438, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 313.9200134277344, + "x1": 544.6799926757812, + "y1": 326.1600036621094, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 162.72000122070312, + "y0": 299.8800048828125, + "x1": 283.67999267578125, + "y1": 313.20001220703125, + "width": 120.95999145507812, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 299.8800048828125, + "x1": 371.8800048828125, + "y1": 313.20001220703125, + "width": 87.48001098632812, + "height": 13.32000732421875 + }, { + "x0": 372.6000061035156, + "y0": 299.8800048828125, + "x1": 459.0, + "y1": 313.20001220703125, + "width": 86.39999389648438, + "height": 13.32000732421875 + }, { + "x0": 459.7200012207031, + "y0": 299.8800048828125, + "x1": 544.6799926757812, + "y1": 313.20001220703125, + "width": 84.95999145507812, + "height": 13.32000732421875 + }, { + "x0": 86.04000091552734, + "y0": 274.32000732421875, + "x1": 162.0, + "y1": 299.1600036621094, + "width": 75.95999908447266, + "height": 24.839996337890625 + }, { + "x0": 162.72000122070312, + "y0": 287.2799987792969, + "x1": 283.67999267578125, + "y1": 299.1600036621094, + "width": 120.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 284.3999938964844, + "y0": 287.2799987792969, + "x1": 371.8800048828125, + "y1": 299.1600036621094, + "width": 87.48001098632812, + "height": 11.8800048828125 + }, { + "x0": 372.6000061035156, + "y0": 287.2799987792969, + "x1": 459.0, + "y1": 299.1600036621094, + "width": 86.39999389648438, + "height": 11.8800048828125 + }, { + "x0": 459.7200012207031, + "y0": 287.2799987792969, + "x1": 544.6799926757812, + "y1": 299.1600036621094, + "width": 84.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 162.72000122070312, + "y0": 274.32000732421875, + "x1": 283.67999267578125, + "y1": 286.55999755859375, + "width": 120.95999145507812, + "height": 12.239990234375 + }, { + "x0": 284.3999938964844, + "y0": 274.32000732421875, + "x1": 371.8800048828125, + "y1": 286.55999755859375, + "width": 87.48001098632812, + "height": 12.239990234375 + }, { + "x0": 372.6000061035156, + "y0": 274.32000732421875, + "x1": 459.0, + "y1": 286.55999755859375, + "width": 86.39999389648438, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 274.32000732421875, + "x1": 544.6799926757812, + "y1": 286.55999755859375, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 86.04000091552734, + "y0": 248.760009765625, + "x1": 162.0, + "y1": 273.5999755859375, + "width": 75.95999908447266, + "height": 24.8399658203125 + }, { + "x0": 162.72000122070312, + "y0": 261.3599853515625, + "x1": 283.67999267578125, + "y1": 273.5999755859375, + "width": 120.95999145507812, + "height": 12.239990234375 + }, { + "x0": 284.3999938964844, + "y0": 261.3599853515625, + "x1": 371.8800048828125, + "y1": 273.5999755859375, + "width": 87.48001098632812, + "height": 12.239990234375 + }, { + "x0": 372.6000061035156, + "y0": 261.3599853515625, + "x1": 459.0, + "y1": 273.5999755859375, + "width": 86.39999389648438, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 261.3599853515625, + "x1": 544.6799926757812, + "y1": 273.5999755859375, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 162.72000122070312, + "y0": 248.760009765625, + "x1": 283.67999267578125, + "y1": 260.6400146484375, + "width": 120.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 284.3999938964844, + "y0": 248.760009765625, + "x1": 371.8800048828125, + "y1": 260.6400146484375, + "width": 87.48001098632812, + "height": 11.8800048828125 + }, { + "x0": 372.6000061035156, + "y0": 248.760009765625, + "x1": 459.0, + "y1": 260.6400146484375, + "width": 86.39999389648438, + "height": 11.8800048828125 + }, { + "x0": 459.7200012207031, + "y0": 248.760009765625, + "x1": 544.6799926757812, + "y1": 260.6400146484375, + "width": 84.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 86.04000091552734, + "y0": 222.84002685546875, + "x1": 162.0, + "y1": 248.03997802734375, + "width": 75.95999908447266, + "height": 25.199951171875 + }, { + "x0": 162.72000122070312, + "y0": 235.79998779296875, + "x1": 283.67999267578125, + "y1": 248.03997802734375, + "width": 120.95999145507812, + "height": 12.239990234375 + }, { + "x0": 284.3999938964844, + "y0": 235.79998779296875, + "x1": 371.8800048828125, + "y1": 248.03997802734375, + "width": 87.48001098632812, + "height": 12.239990234375 + }, { + "x0": 372.6000061035156, + "y0": 235.79998779296875, + "x1": 459.0, + "y1": 248.03997802734375, + "width": 86.39999389648438, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 235.79998779296875, + "x1": 544.6799926757812, + "y1": 248.03997802734375, + "width": 84.95999145507812, + "height": 12.239990234375 + }, { + "x0": 162.72000122070312, + "y0": 222.84002685546875, + "x1": 283.67999267578125, + "y1": 235.08001708984375, + "width": 120.95999145507812, + "height": 12.239990234375 + }, { + "x0": 284.3999938964844, + "y0": 222.84002685546875, + "x1": 371.8800048828125, + "y1": 235.08001708984375, + "width": 87.48001098632812, + "height": 12.239990234375 + }, { + "x0": 372.6000061035156, + "y0": 222.84002685546875, + "x1": 459.0, + "y1": 235.08001708984375, + "width": 86.39999389648438, + "height": 12.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 222.84002685546875, + "x1": 544.6799926757812, + "y1": 235.08001708984375, + "width": 84.95999145507812, + "height": 12.239990234375 + } + ] + }, { + "pageInfo": { + "number": 5, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.0, + "y0": 653.760009765625, + "x1": 165.24000549316406, + "y1": 686.52001953125, + "width": 75.24000549316406, + "height": 32.760009765625 + }, { + "x0": 166.32000732421875, + "y0": 653.760009765625, + "x1": 286.20001220703125, + "y1": 686.52001953125, + "width": 119.8800048828125, + "height": 32.760009765625 + }, { + "x0": 286.9200134277344, + "y0": 653.760009765625, + "x1": 374.0400085449219, + "y1": 686.52001953125, + "width": 87.1199951171875, + "height": 32.760009765625 + }, { + "x0": 374.760009765625, + "y0": 653.760009765625, + "x1": 460.44000244140625, + "y1": 686.52001953125, + "width": 85.67999267578125, + "height": 32.760009765625 + }, { + "x0": 461.5199890136719, + "y0": 653.4000244140625, + "x1": 545.760009765625, + "y1": 686.52001953125, + "width": 84.24002075195312, + "height": 33.1199951171875 + }, { + "x0": 89.63999938964844, + "y0": 627.1199951171875, + "x1": 165.24000549316406, + "y1": 651.9600219726562, + "width": 75.60000610351562, + "height": 24.84002685546875 + }, { + "x0": 166.32000732421875, + "y0": 640.0800170898438, + "x1": 285.8399963378906, + "y1": 651.9600219726562, + "width": 119.51998901367188, + "height": 11.8800048828125 + }, { + "x0": 286.9200134277344, + "y0": 640.0800170898438, + "x1": 374.0400085449219, + "y1": 651.9600219726562, + "width": 87.1199951171875, + "height": 11.8800048828125 + }, { + "x0": 374.760009765625, + "y0": 639.719970703125, + "x1": 460.44000244140625, + "y1": 651.9600219726562, + "width": 85.67999267578125, + "height": 12.24005126953125 + }, { + "x0": 461.5199890136719, + "y0": 639.719970703125, + "x1": 545.760009765625, + "y1": 651.9600219726562, + "width": 84.24002075195312, + "height": 12.24005126953125 + }, { + "x0": 166.32000732421875, + "y0": 627.1199951171875, + "x1": 285.8399963378906, + "y1": 639.0, + "width": 119.51998901367188, + "height": 11.8800048828125 + }, { + "x0": 286.9200134277344, + "y0": 627.1199951171875, + "x1": 374.0400085449219, + "y1": 639.0, + "width": 87.1199951171875, + "height": 11.8800048828125 + }, { + "x0": 374.760009765625, + "y0": 627.1199951171875, + "x1": 460.44000244140625, + "y1": 639.0, + "width": 85.67999267578125, + "height": 11.8800048828125 + }, { + "x0": 461.1600036621094, + "y0": 627.1199951171875, + "x1": 545.4000244140625, + "y1": 639.0, + "width": 84.24002075195312, + "height": 11.8800048828125 + }, { + "x0": 89.63999938964844, + "y0": 600.47998046875, + "x1": 165.24000549316406, + "y1": 626.4000244140625, + "width": 75.60000610351562, + "height": 25.9200439453125 + }, { + "x0": 165.9600067138672, + "y0": 614.1600341796875, + "x1": 285.8399963378906, + "y1": 626.4000244140625, + "width": 119.87998962402344, + "height": 12.239990234375 + }, { + "x0": 286.55999755859375, + "y0": 614.1600341796875, + "x1": 373.67999267578125, + "y1": 626.4000244140625, + "width": 87.1199951171875, + "height": 12.239990234375 + }, { + "x0": 374.760009765625, + "y0": 614.1600341796875, + "x1": 460.44000244140625, + "y1": 626.4000244140625, + "width": 85.67999267578125, + "height": 12.239990234375 + }, { + "x0": 461.1600036621094, + "y0": 614.1600341796875, + "x1": 545.4000244140625, + "y1": 626.4000244140625, + "width": 84.24002075195312, + "height": 12.239990234375 + }, { + "x0": 165.9600067138672, + "y0": 600.47998046875, + "x1": 285.8399963378906, + "y1": 613.4400024414062, + "width": 119.87998962402344, + "height": 12.96002197265625 + }, { + "x0": 286.55999755859375, + "y0": 600.47998046875, + "x1": 373.67999267578125, + "y1": 613.4400024414062, + "width": 87.1199951171875, + "height": 12.96002197265625 + }, { + "x0": 374.3999938964844, + "y0": 600.47998046875, + "x1": 460.44000244140625, + "y1": 613.4400024414062, + "width": 86.04000854492188, + "height": 12.96002197265625 + }, { + "x0": 461.1600036621094, + "y0": 600.1199951171875, + "x1": 545.4000244140625, + "y1": 613.4400024414062, + "width": 84.24002075195312, + "height": 13.32000732421875 + } + ] + }, { + "pageInfo": { + "number": 6, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 631.7999877929688, + "x1": 545.4000244140625, + "y1": 645.8399658203125, + "width": 460.0800247192383, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 586.0800170898438, + "x1": 220.67999267578125, + "y1": 630.0, + "width": 135.35999298095703, + "height": 43.91998291015625 + }, { + "x0": 221.39999389648438, + "y0": 615.9600219726562, + "x1": 351.0, + "y1": 630.0, + "width": 129.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 351.7200012207031, + "y0": 615.9600219726562, + "x1": 545.4000244140625, + "y1": 630.0, + "width": 193.68002319335938, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 600.8399658203125, + "x1": 351.0, + "y1": 615.239990234375, + "width": 129.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 351.7200012207031, + "y0": 600.8399658203125, + "x1": 545.4000244140625, + "y1": 615.239990234375, + "width": 193.68002319335938, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 586.0800170898438, + "x1": 351.0, + "y1": 600.1199951171875, + "width": 129.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 351.7200012207031, + "y0": 586.0800170898438, + "x1": 545.4000244140625, + "y1": 600.1199951171875, + "width": 193.68002319335938, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 535.6799926757812, + "x1": 220.67999267578125, + "y1": 585.3599853515625, + "width": 135.35999298095703, + "height": 49.67999267578125 + }, { + "x0": 221.39999389648438, + "y0": 560.8800048828125, + "x1": 351.0, + "y1": 585.3599853515625, + "width": 129.60000610351562, + "height": 24.47998046875 + }, { + "x0": 351.7200012207031, + "y0": 560.8800048828125, + "x1": 545.4000244140625, + "y1": 585.3599853515625, + "width": 193.68002319335938, + "height": 24.47998046875 + }, { + "x0": 221.39999389648438, + "y0": 535.6799926757812, + "x1": 351.0, + "y1": 560.1600341796875, + "width": 129.60000610351562, + "height": 24.48004150390625 + }, { + "x0": 351.7200012207031, + "y0": 535.6799926757812, + "x1": 545.4000244140625, + "y1": 560.1600341796875, + "width": 193.68002319335938, + "height": 24.48004150390625 + }, { + "x0": 85.31999969482422, + "y0": 510.4800109863281, + "x1": 220.67999267578125, + "y1": 534.9599609375, + "width": 135.35999298095703, + "height": 24.479949951171875 + }, { + "x0": 221.39999389648438, + "y0": 510.4800109863281, + "x1": 351.0, + "y1": 534.9599609375, + "width": 129.60000610351562, + "height": 24.479949951171875 + }, { + "x0": 351.7200012207031, + "y0": 510.4800109863281, + "x1": 545.4000244140625, + "y1": 534.9599609375, + "width": 193.68002319335938, + "height": 24.479949951171875 + }, { + "x0": 85.31999969482422, + "y0": 426.6000061035156, + "x1": 220.67999267578125, + "y1": 509.760009765625, + "width": 135.35999298095703, + "height": 83.16000366210938 + }, { + "x0": 221.39999389648438, + "y0": 483.4800109863281, + "x1": 351.0, + "y1": 509.760009765625, + "width": 129.60000610351562, + "height": 26.279998779296875 + }, { + "x0": 351.7200012207031, + "y0": 483.4800109863281, + "x1": 545.4000244140625, + "y1": 509.760009765625, + "width": 193.68002319335938, + "height": 26.279998779296875 + }, { + "x0": 221.39999389648438, + "y0": 456.1199951171875, + "x1": 351.0, + "y1": 482.760009765625, + "width": 129.60000610351562, + "height": 26.6400146484375 + }, { + "x0": 351.7200012207031, + "y0": 456.1199951171875, + "x1": 545.4000244140625, + "y1": 482.760009765625, + "width": 193.68002319335938, + "height": 26.6400146484375 + }, { + "x0": 221.39999389648438, + "y0": 441.3599853515625, + "x1": 351.0, + "y1": 455.3999938964844, + "width": 129.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 351.7200012207031, + "y0": 441.3599853515625, + "x1": 545.4000244140625, + "y1": 455.3999938964844, + "width": 193.68002319335938, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 426.6000061035156, + "x1": 545.4000244140625, + "y1": 440.6400146484375, + "width": 324.0000305175781, + "height": 14.040008544921875 + } + ] + }, { + "pageInfo": { + "number": 7, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 86.04000091552734, + "y0": 556.9199829101562, + "x1": 180.36000061035156, + "y1": 590.760009765625, + "width": 94.31999969482422, + "height": 33.84002685546875 + }, { + "x0": 181.0800018310547, + "y0": 572.0399780273438, + "x1": 544.3200073242188, + "y1": 590.760009765625, + "width": 363.24000549316406, + "height": 18.72003173828125 + }, { + "x0": 181.0800018310547, + "y0": 556.9199829101562, + "x1": 544.3200073242188, + "y1": 571.3200073242188, + "width": 363.24000549316406, + "height": 14.4000244140625 + }, { + "x0": 86.04000091552734, + "y0": 532.7999877929688, + "x1": 180.36000061035156, + "y1": 555.1199951171875, + "width": 94.31999969482422, + "height": 22.32000732421875 + }, { + "x0": 181.0800018310547, + "y0": 532.7999877929688, + "x1": 270.0, + "y1": 555.1199951171875, + "width": 88.91999816894531, + "height": 22.32000732421875 + }, { + "x0": 270.7200012207031, + "y0": 532.7999877929688, + "x1": 423.0, + "y1": 555.1199951171875, + "width": 152.27999877929688, + "height": 22.32000732421875 + }, { + "x0": 423.7200012207031, + "y0": 532.7999877929688, + "x1": 544.3200073242188, + "y1": 555.1199951171875, + "width": 120.60000610351562, + "height": 22.32000732421875 + }, { + "x0": 86.04000091552734, + "y0": 508.32000732421875, + "x1": 180.36000061035156, + "y1": 532.0799560546875, + "width": 94.31999969482422, + "height": 23.75994873046875 + }, { + "x0": 181.0800018310547, + "y0": 508.32000732421875, + "x1": 270.0, + "y1": 532.0799560546875, + "width": 88.91999816894531, + "height": 23.75994873046875 + }, { + "x0": 270.7200012207031, + "y0": 508.32000732421875, + "x1": 423.0, + "y1": 532.0799560546875, + "width": 152.27999877929688, + "height": 23.75994873046875 + }, { + "x0": 423.7200012207031, + "y0": 508.32000732421875, + "x1": 544.3200073242188, + "y1": 532.0799560546875, + "width": 120.60000610351562, + "height": 23.75994873046875 + }, { + "x0": 86.04000091552734, + "y0": 484.20001220703125, + "x1": 180.36000061035156, + "y1": 507.6000061035156, + "width": 94.31999969482422, + "height": 23.399993896484375 + }, { + "x0": 181.0800018310547, + "y0": 484.20001220703125, + "x1": 270.0, + "y1": 507.6000061035156, + "width": 88.91999816894531, + "height": 23.399993896484375 + }, { + "x0": 270.7200012207031, + "y0": 484.20001220703125, + "x1": 423.0, + "y1": 507.6000061035156, + "width": 152.27999877929688, + "height": 23.399993896484375 + }, { + "x0": 423.7200012207031, + "y0": 484.20001220703125, + "x1": 544.3200073242188, + "y1": 507.6000061035156, + "width": 120.60000610351562, + "height": 23.399993896484375 + }, { + "x0": 86.04000091552734, + "y0": 461.1600036621094, + "x1": 180.36000061035156, + "y1": 483.4800109863281, + "width": 94.31999969482422, + "height": 22.32000732421875 + }, { + "x0": 181.0800018310547, + "y0": 461.1600036621094, + "x1": 270.0, + "y1": 483.4800109863281, + "width": 88.91999816894531, + "height": 22.32000732421875 + }, { + "x0": 270.7200012207031, + "y0": 461.1600036621094, + "x1": 423.0, + "y1": 483.4800109863281, + "width": 152.27999877929688, + "height": 22.32000732421875 + }, { + "x0": 423.7200012207031, + "y0": 461.1600036621094, + "x1": 544.3200073242188, + "y1": 483.4800109863281, + "width": 120.60000610351562, + "height": 22.32000732421875 + }, { + "x0": 86.04000091552734, + "y0": 437.760009765625, + "x1": 180.36000061035156, + "y1": 460.44000244140625, + "width": 94.31999969482422, + "height": 22.67999267578125 + }, { + "x0": 181.0800018310547, + "y0": 437.760009765625, + "x1": 270.0, + "y1": 460.44000244140625, + "width": 88.91999816894531, + "height": 22.67999267578125 + }, { + "x0": 270.7200012207031, + "y0": 437.760009765625, + "x1": 423.0, + "y1": 460.44000244140625, + "width": 152.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 423.7200012207031, + "y0": 437.760009765625, + "x1": 544.3200073242188, + "y1": 460.44000244140625, + "width": 120.60000610351562, + "height": 22.67999267578125 + }, { + "x0": 86.04000091552734, + "y0": 413.6400146484375, + "x1": 180.36000061035156, + "y1": 437.0400085449219, + "width": 94.31999969482422, + "height": 23.399993896484375 + }, { + "x0": 181.0800018310547, + "y0": 413.6400146484375, + "x1": 270.0, + "y1": 437.0400085449219, + "width": 88.91999816894531, + "height": 23.399993896484375 + }, { + "x0": 270.7200012207031, + "y0": 413.6400146484375, + "x1": 423.0, + "y1": 437.0400085449219, + "width": 152.27999877929688, + "height": 23.399993896484375 + }, { + "x0": 423.7200012207031, + "y0": 413.6400146484375, + "x1": 544.3200073242188, + "y1": 437.0400085449219, + "width": 120.60000610351562, + "height": 23.399993896484375 + }, { + "x0": 86.04000091552734, + "y0": 331.55999755859375, + "x1": 544.6799926757812, + "y1": 345.6000061035156, + "width": 458.6399917602539, + "height": 14.040008544921875 + }, { + "x0": 86.04000091552734, + "y0": 317.5199890136719, + "x1": 270.0, + "y1": 329.760009765625, + "width": 183.95999908447266, + "height": 12.240020751953125 + }, { + "x0": 270.7200012207031, + "y0": 317.5199890136719, + "x1": 544.6799926757812, + "y1": 329.760009765625, + "width": 273.9599914550781, + "height": 12.240020751953125 + }, { + "x0": 86.04000091552734, + "y0": 302.760009765625, + "x1": 270.0, + "y1": 316.79998779296875, + "width": 183.95999908447266, + "height": 14.03997802734375 + }, { + "x0": 270.7200012207031, + "y0": 302.760009765625, + "x1": 544.6799926757812, + "y1": 316.79998779296875, + "width": 273.9599914550781, + "height": 14.03997802734375 + }, { + "x0": 86.04000091552734, + "y0": 248.03997802734375, + "x1": 545.4000244140625, + "y1": 262.08001708984375, + "width": 459.36002349853516, + "height": 14.0400390625 + }, { + "x0": 86.04000091552734, + "y0": 232.20001220703125, + "x1": 545.4000244140625, + "y1": 246.239990234375, + "width": 459.36002349853516, + "height": 14.03997802734375 + } + ] + }, { + "pageInfo": { + "number": 11, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 304.9200134277344, + "x1": 540.0, + "y1": 318.9599914550781, + "width": 454.6800003051758, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 256.32000732421875, + "x1": 148.67999267578125, + "y1": 304.20001220703125, + "width": 63.35999298095703, + "height": 47.8800048828125 + }, { + "x0": 149.39999389648438, + "y0": 291.9599914550781, + "x1": 477.0, + "y1": 304.20001220703125, + "width": 327.6000061035156, + "height": 12.240020751953125 + }, { + "x0": 477.7200012207031, + "y0": 256.32000732421875, + "x1": 540.0, + "y1": 304.20001220703125, + "width": 62.279998779296875, + "height": 47.8800048828125 + }, { + "x0": 149.39999389648438, + "y0": 256.32000732421875, + "x1": 203.39999389648438, + "y1": 291.239990234375, + "width": 54.0, + "height": 34.91998291015625 + }, { + "x0": 204.1199951171875, + "y0": 256.32000732421875, + "x1": 258.1199951171875, + "y1": 291.239990234375, + "width": 54.0, + "height": 34.91998291015625 + }, { + "x0": 258.8399963378906, + "y0": 256.32000732421875, + "x1": 312.8399963378906, + "y1": 291.239990234375, + "width": 54.0, + "height": 34.91998291015625 + }, { + "x0": 313.55999755859375, + "y0": 256.32000732421875, + "x1": 367.55999755859375, + "y1": 291.239990234375, + "width": 54.0, + "height": 34.91998291015625 + }, { + "x0": 368.2799987792969, + "y0": 256.32000732421875, + "x1": 422.2799987792969, + "y1": 291.239990234375, + "width": 54.0, + "height": 34.91998291015625 + }, { + "x0": 423.0, + "y0": 256.32000732421875, + "x1": 477.0, + "y1": 291.239990234375, + "width": 54.0, + "height": 34.91998291015625 + }, { + "x0": 85.31999969482422, + "y0": 242.6400146484375, + "x1": 148.67999267578125, + "y1": 254.52001953125, + "width": 63.35999298095703, + "height": 11.8800048828125 + }, { + "x0": 149.39999389648438, + "y0": 242.6400146484375, + "x1": 203.39999389648438, + "y1": 254.52001953125, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 204.1199951171875, + "y0": 242.6400146484375, + "x1": 258.1199951171875, + "y1": 254.52001953125, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 258.8399963378906, + "y0": 242.6400146484375, + "x1": 312.8399963378906, + "y1": 254.52001953125, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 313.55999755859375, + "y0": 242.6400146484375, + "x1": 367.55999755859375, + "y1": 254.52001953125, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 368.2799987792969, + "y0": 242.6400146484375, + "x1": 422.2799987792969, + "y1": 254.52001953125, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 423.0, + "y0": 242.6400146484375, + "x1": 477.0, + "y1": 254.52001953125, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 477.7200012207031, + "y0": 242.6400146484375, + "x1": 540.0, + "y1": 254.52001953125, + "width": 62.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 229.67999267578125, + "x1": 148.67999267578125, + "y1": 241.91998291015625, + "width": 63.35999298095703, + "height": 12.239990234375 + }, { + "x0": 149.39999389648438, + "y0": 229.67999267578125, + "x1": 203.39999389648438, + "y1": 241.91998291015625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 204.1199951171875, + "y0": 229.67999267578125, + "x1": 258.1199951171875, + "y1": 241.91998291015625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 258.8399963378906, + "y0": 229.67999267578125, + "x1": 312.8399963378906, + "y1": 241.91998291015625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 313.55999755859375, + "y0": 229.67999267578125, + "x1": 367.55999755859375, + "y1": 241.91998291015625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 368.2799987792969, + "y0": 229.67999267578125, + "x1": 422.2799987792969, + "y1": 241.91998291015625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 423.0, + "y0": 229.67999267578125, + "x1": 477.0, + "y1": 241.91998291015625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 477.7200012207031, + "y0": 229.67999267578125, + "x1": 540.0, + "y1": 241.91998291015625, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 216.719970703125, + "x1": 148.67999267578125, + "y1": 228.96002197265625, + "width": 63.35999298095703, + "height": 12.24005126953125 + }, { + "x0": 149.39999389648438, + "y0": 216.719970703125, + "x1": 203.39999389648438, + "y1": 228.96002197265625, + "width": 54.0, + "height": 12.24005126953125 + }, { + "x0": 204.1199951171875, + "y0": 216.719970703125, + "x1": 258.1199951171875, + "y1": 228.96002197265625, + "width": 54.0, + "height": 12.24005126953125 + }, { + "x0": 258.8399963378906, + "y0": 216.719970703125, + "x1": 312.8399963378906, + "y1": 228.96002197265625, + "width": 54.0, + "height": 12.24005126953125 + }, { + "x0": 313.55999755859375, + "y0": 216.719970703125, + "x1": 367.55999755859375, + "y1": 228.96002197265625, + "width": 54.0, + "height": 12.24005126953125 + }, { + "x0": 368.2799987792969, + "y0": 216.719970703125, + "x1": 422.2799987792969, + "y1": 228.96002197265625, + "width": 54.0, + "height": 12.24005126953125 + }, { + "x0": 423.0, + "y0": 216.719970703125, + "x1": 477.0, + "y1": 228.96002197265625, + "width": 54.0, + "height": 12.24005126953125 + }, { + "x0": 477.7200012207031, + "y0": 216.719970703125, + "x1": 540.0, + "y1": 228.96002197265625, + "width": 62.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 85.31999969482422, + "y0": 204.1199951171875, + "x1": 148.67999267578125, + "y1": 216.0, + "width": 63.35999298095703, + "height": 11.8800048828125 + }, { + "x0": 149.39999389648438, + "y0": 204.1199951171875, + "x1": 203.39999389648438, + "y1": 216.0, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 204.1199951171875, + "y0": 204.1199951171875, + "x1": 258.1199951171875, + "y1": 216.0, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 258.8399963378906, + "y0": 204.1199951171875, + "x1": 312.8399963378906, + "y1": 216.0, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 313.55999755859375, + "y0": 204.1199951171875, + "x1": 367.55999755859375, + "y1": 216.0, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 368.2799987792969, + "y0": 204.1199951171875, + "x1": 422.2799987792969, + "y1": 216.0, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 423.0, + "y0": 204.1199951171875, + "x1": 477.0, + "y1": 216.0, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 477.7200012207031, + "y0": 204.1199951171875, + "x1": 540.0, + "y1": 216.0, + "width": 62.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 190.08001708984375, + "x1": 148.67999267578125, + "y1": 202.32000732421875, + "width": 63.35999298095703, + "height": 12.239990234375 + }, { + "x0": 149.39999389648438, + "y0": 190.08001708984375, + "x1": 203.39999389648438, + "y1": 202.32000732421875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 204.1199951171875, + "y0": 190.08001708984375, + "x1": 258.1199951171875, + "y1": 202.32000732421875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 258.8399963378906, + "y0": 190.08001708984375, + "x1": 312.8399963378906, + "y1": 202.32000732421875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 313.55999755859375, + "y0": 190.08001708984375, + "x1": 367.55999755859375, + "y1": 202.32000732421875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 368.2799987792969, + "y0": 190.08001708984375, + "x1": 422.2799987792969, + "y1": 202.32000732421875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 423.0, + "y0": 190.08001708984375, + "x1": 477.0, + "y1": 202.32000732421875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 477.7200012207031, + "y0": 190.08001708984375, + "x1": 540.0, + "y1": 202.32000732421875, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 177.1199951171875, + "x1": 148.67999267578125, + "y1": 189.3599853515625, + "width": 63.35999298095703, + "height": 12.239990234375 + }, { + "x0": 149.39999389648438, + "y0": 177.1199951171875, + "x1": 203.39999389648438, + "y1": 189.3599853515625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 204.1199951171875, + "y0": 177.1199951171875, + "x1": 258.1199951171875, + "y1": 189.3599853515625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 258.8399963378906, + "y0": 177.1199951171875, + "x1": 312.8399963378906, + "y1": 189.3599853515625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 313.55999755859375, + "y0": 177.1199951171875, + "x1": 367.55999755859375, + "y1": 189.3599853515625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 368.2799987792969, + "y0": 177.1199951171875, + "x1": 422.2799987792969, + "y1": 189.3599853515625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 423.0, + "y0": 177.1199951171875, + "x1": 477.0, + "y1": 189.3599853515625, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 477.7200012207031, + "y0": 177.1199951171875, + "x1": 540.0, + "y1": 189.3599853515625, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 164.52001953125, + "x1": 148.67999267578125, + "y1": 176.4000244140625, + "width": 63.35999298095703, + "height": 11.8800048828125 + }, { + "x0": 149.39999389648438, + "y0": 164.52001953125, + "x1": 203.39999389648438, + "y1": 176.4000244140625, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 204.1199951171875, + "y0": 164.52001953125, + "x1": 258.1199951171875, + "y1": 176.4000244140625, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 258.8399963378906, + "y0": 164.52001953125, + "x1": 312.8399963378906, + "y1": 176.4000244140625, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 313.55999755859375, + "y0": 164.52001953125, + "x1": 367.55999755859375, + "y1": 176.4000244140625, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 368.2799987792969, + "y0": 164.52001953125, + "x1": 422.2799987792969, + "y1": 176.4000244140625, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 423.0, + "y0": 164.52001953125, + "x1": 477.0, + "y1": 176.4000244140625, + "width": 54.0, + "height": 11.8800048828125 + }, { + "x0": 477.7200012207031, + "y0": 164.52001953125, + "x1": 540.0, + "y1": 176.4000244140625, + "width": 62.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 151.55999755859375, + "x1": 148.67999267578125, + "y1": 163.79998779296875, + "width": 63.35999298095703, + "height": 12.239990234375 + }, { + "x0": 149.39999389648438, + "y0": 151.55999755859375, + "x1": 203.39999389648438, + "y1": 163.79998779296875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 204.1199951171875, + "y0": 151.55999755859375, + "x1": 258.1199951171875, + "y1": 163.79998779296875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 258.8399963378906, + "y0": 151.55999755859375, + "x1": 312.8399963378906, + "y1": 163.79998779296875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 313.55999755859375, + "y0": 151.55999755859375, + "x1": 367.55999755859375, + "y1": 163.79998779296875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 368.2799987792969, + "y0": 151.55999755859375, + "x1": 422.2799987792969, + "y1": 163.79998779296875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 423.0, + "y0": 151.55999755859375, + "x1": 477.0, + "y1": 163.79998779296875, + "width": 54.0, + "height": 12.239990234375 + }, { + "x0": 477.7200012207031, + "y0": 151.55999755859375, + "x1": 540.0, + "y1": 163.79998779296875, + "width": 62.279998779296875, + "height": 12.239990234375 + } + ] + }, { + "pageInfo": { + "number": 12, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 512.6400146484375, + "x1": 545.4000244140625, + "y1": 525.9599609375, + "width": 460.0800247192383, + "height": 13.3199462890625 + }, { + "x0": 85.31999969482422, + "y0": 464.0400085449219, + "x1": 157.67999267578125, + "y1": 511.9200134277344, + "width": 72.35999298095703, + "height": 47.8800048828125 + }, { + "x0": 158.39999389648438, + "y0": 479.1600036621094, + "x1": 225.0, + "y1": 511.9200134277344, + "width": 66.60000610351562, + "height": 32.760009765625 + }, { + "x0": 225.72000122070312, + "y0": 479.1600036621094, + "x1": 306.0, + "y1": 511.9200134277344, + "width": 80.27999877929688, + "height": 32.760009765625 + }, { + "x0": 306.7200012207031, + "y0": 464.0400085449219, + "x1": 373.67999267578125, + "y1": 511.9200134277344, + "width": 66.95999145507812, + "height": 47.8800048828125 + }, { + "x0": 374.3999938964844, + "y0": 464.0400085449219, + "x1": 427.67999267578125, + "y1": 511.9200134277344, + "width": 53.279998779296875, + "height": 47.8800048828125 + }, { + "x0": 428.3999938964844, + "y0": 464.0400085449219, + "x1": 545.4000244140625, + "y1": 511.9200134277344, + "width": 117.00003051757812, + "height": 47.8800048828125 + }, { + "x0": 158.39999389648438, + "y0": 464.0400085449219, + "x1": 191.16000366210938, + "y1": 478.44000244140625, + "width": 32.760009765625, + "height": 14.399993896484375 + }, { + "x0": 191.8800048828125, + "y0": 464.0400085449219, + "x1": 225.0, + "y1": 478.44000244140625, + "width": 33.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 225.72000122070312, + "y0": 464.0400085449219, + "x1": 265.67999267578125, + "y1": 478.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 266.3999938964844, + "y0": 464.0400085449219, + "x1": 306.0, + "y1": 478.44000244140625, + "width": 39.600006103515625, + "height": 14.399993896484375 + }, { + "x0": 85.31999969482422, + "y0": 450.3599853515625, + "x1": 157.67999267578125, + "y1": 462.6000061035156, + "width": 72.35999298095703, + "height": 12.240020751953125 + }, { + "x0": 158.39999389648438, + "y0": 450.3599853515625, + "x1": 191.16000366210938, + "y1": 462.6000061035156, + "width": 32.760009765625, + "height": 12.240020751953125 + }, { + "x0": 191.8800048828125, + "y0": 450.3599853515625, + "x1": 225.0, + "y1": 462.6000061035156, + "width": 33.1199951171875, + "height": 12.240020751953125 + }, { + "x0": 225.72000122070312, + "y0": 450.3599853515625, + "x1": 265.67999267578125, + "y1": 462.6000061035156, + "width": 39.959991455078125, + "height": 12.240020751953125 + }, { + "x0": 266.3999938964844, + "y0": 450.3599853515625, + "x1": 306.0, + "y1": 462.6000061035156, + "width": 39.600006103515625, + "height": 12.240020751953125 + }, { + "x0": 306.7200012207031, + "y0": 450.3599853515625, + "x1": 373.67999267578125, + "y1": 462.6000061035156, + "width": 66.95999145507812, + "height": 12.240020751953125 + }, { + "x0": 374.3999938964844, + "y0": 450.3599853515625, + "x1": 427.67999267578125, + "y1": 462.6000061035156, + "width": 53.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 428.3999938964844, + "y0": 424.79998779296875, + "x1": 545.4000244140625, + "y1": 462.6000061035156, + "width": 117.00003051757812, + "height": 37.800018310546875 + }, { + "x0": 85.31999969482422, + "y0": 437.3999938964844, + "x1": 157.67999267578125, + "y1": 449.6400146484375, + "width": 72.35999298095703, + "height": 12.240020751953125 + }, { + "x0": 158.39999389648438, + "y0": 437.3999938964844, + "x1": 191.16000366210938, + "y1": 449.6400146484375, + "width": 32.760009765625, + "height": 12.240020751953125 + }, { + "x0": 191.8800048828125, + "y0": 437.3999938964844, + "x1": 225.0, + "y1": 449.6400146484375, + "width": 33.1199951171875, + "height": 12.240020751953125 + }, { + "x0": 225.72000122070312, + "y0": 437.3999938964844, + "x1": 265.67999267578125, + "y1": 449.6400146484375, + "width": 39.959991455078125, + "height": 12.240020751953125 + }, { + "x0": 266.3999938964844, + "y0": 437.3999938964844, + "x1": 306.0, + "y1": 449.6400146484375, + "width": 39.600006103515625, + "height": 12.240020751953125 + }, { + "x0": 306.7200012207031, + "y0": 437.3999938964844, + "x1": 373.67999267578125, + "y1": 449.6400146484375, + "width": 66.95999145507812, + "height": 12.240020751953125 + }, { + "x0": 374.3999938964844, + "y0": 437.3999938964844, + "x1": 427.67999267578125, + "y1": 449.6400146484375, + "width": 53.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 85.31999969482422, + "y0": 424.79998779296875, + "x1": 157.67999267578125, + "y1": 436.67999267578125, + "width": 72.35999298095703, + "height": 11.8800048828125 + }, { + "x0": 158.39999389648438, + "y0": 424.79998779296875, + "x1": 191.16000366210938, + "y1": 436.67999267578125, + "width": 32.760009765625, + "height": 11.8800048828125 + }, { + "x0": 191.8800048828125, + "y0": 424.79998779296875, + "x1": 225.0, + "y1": 436.67999267578125, + "width": 33.1199951171875, + "height": 11.8800048828125 + }, { + "x0": 225.72000122070312, + "y0": 424.79998779296875, + "x1": 265.67999267578125, + "y1": 436.67999267578125, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 266.3999938964844, + "y0": 424.79998779296875, + "x1": 306.0, + "y1": 436.67999267578125, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 306.7200012207031, + "y0": 424.79998779296875, + "x1": 373.67999267578125, + "y1": 436.67999267578125, + "width": 66.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 374.3999938964844, + "y0": 424.79998779296875, + "x1": 427.67999267578125, + "y1": 436.67999267578125, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 410.760009765625, + "x1": 157.67999267578125, + "y1": 423.0, + "width": 72.35999298095703, + "height": 12.239990234375 + }, { + "x0": 158.39999389648438, + "y0": 410.760009765625, + "x1": 191.16000366210938, + "y1": 423.0, + "width": 32.760009765625, + "height": 12.239990234375 + }, { + "x0": 191.8800048828125, + "y0": 410.760009765625, + "x1": 225.0, + "y1": 423.0, + "width": 33.1199951171875, + "height": 12.239990234375 + }, { + "x0": 225.72000122070312, + "y0": 410.760009765625, + "x1": 265.67999267578125, + "y1": 423.0, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 266.3999938964844, + "y0": 410.760009765625, + "x1": 306.0, + "y1": 423.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 306.7200012207031, + "y0": 410.760009765625, + "x1": 373.67999267578125, + "y1": 423.0, + "width": 66.95999145507812, + "height": 12.239990234375 + }, { + "x0": 374.3999938964844, + "y0": 410.760009765625, + "x1": 427.67999267578125, + "y1": 423.0, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 428.3999938964844, + "y0": 358.55999755859375, + "x1": 545.4000244140625, + "y1": 423.0, + "width": 117.00003051757812, + "height": 64.44000244140625 + }, { + "x0": 85.31999969482422, + "y0": 397.0799865722656, + "x1": 157.67999267578125, + "y1": 410.0400085449219, + "width": 72.35999298095703, + "height": 12.96002197265625 + }, { + "x0": 158.39999389648438, + "y0": 397.0799865722656, + "x1": 191.16000366210938, + "y1": 410.0400085449219, + "width": 32.760009765625, + "height": 12.96002197265625 + }, { + "x0": 191.8800048828125, + "y0": 397.0799865722656, + "x1": 225.0, + "y1": 410.0400085449219, + "width": 33.1199951171875, + "height": 12.96002197265625 + }, { + "x0": 225.72000122070312, + "y0": 397.0799865722656, + "x1": 265.67999267578125, + "y1": 410.0400085449219, + "width": 39.959991455078125, + "height": 12.96002197265625 + }, { + "x0": 266.3999938964844, + "y0": 397.0799865722656, + "x1": 306.0, + "y1": 410.0400085449219, + "width": 39.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 306.7200012207031, + "y0": 397.0799865722656, + "x1": 373.67999267578125, + "y1": 410.0400085449219, + "width": 66.95999145507812, + "height": 12.96002197265625 + }, { + "x0": 374.3999938964844, + "y0": 397.0799865722656, + "x1": 427.67999267578125, + "y1": 410.0400085449219, + "width": 53.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 85.31999969482422, + "y0": 384.1199951171875, + "x1": 157.67999267578125, + "y1": 396.3599853515625, + "width": 72.35999298095703, + "height": 12.239990234375 + }, { + "x0": 158.39999389648438, + "y0": 384.1199951171875, + "x1": 191.16000366210938, + "y1": 396.3599853515625, + "width": 32.760009765625, + "height": 12.239990234375 + }, { + "x0": 191.8800048828125, + "y0": 384.1199951171875, + "x1": 225.0, + "y1": 396.3599853515625, + "width": 33.1199951171875, + "height": 12.239990234375 + }, { + "x0": 225.72000122070312, + "y0": 384.1199951171875, + "x1": 265.67999267578125, + "y1": 396.3599853515625, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 266.3999938964844, + "y0": 384.1199951171875, + "x1": 306.0, + "y1": 396.3599853515625, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 306.7200012207031, + "y0": 384.1199951171875, + "x1": 373.67999267578125, + "y1": 396.3599853515625, + "width": 66.95999145507812, + "height": 12.239990234375 + }, { + "x0": 374.3999938964844, + "y0": 384.1199951171875, + "x1": 427.67999267578125, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 371.1600036621094, + "x1": 157.67999267578125, + "y1": 383.3999938964844, + "width": 72.35999298095703, + "height": 12.239990234375 + }, { + "x0": 158.39999389648438, + "y0": 371.1600036621094, + "x1": 191.16000366210938, + "y1": 383.3999938964844, + "width": 32.760009765625, + "height": 12.239990234375 + }, { + "x0": 191.8800048828125, + "y0": 371.1600036621094, + "x1": 225.0, + "y1": 383.3999938964844, + "width": 33.1199951171875, + "height": 12.239990234375 + }, { + "x0": 225.72000122070312, + "y0": 371.1600036621094, + "x1": 265.67999267578125, + "y1": 383.3999938964844, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 266.3999938964844, + "y0": 371.1600036621094, + "x1": 306.0, + "y1": 383.3999938964844, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 306.7200012207031, + "y0": 371.1600036621094, + "x1": 373.67999267578125, + "y1": 383.3999938964844, + "width": 66.95999145507812, + "height": 12.239990234375 + }, { + "x0": 374.3999938964844, + "y0": 371.1600036621094, + "x1": 427.67999267578125, + "y1": 383.3999938964844, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 358.55999755859375, + "x1": 157.67999267578125, + "y1": 370.44000244140625, + "width": 72.35999298095703, + "height": 11.8800048828125 + }, { + "x0": 158.39999389648438, + "y0": 358.55999755859375, + "x1": 191.16000366210938, + "y1": 370.44000244140625, + "width": 32.760009765625, + "height": 11.8800048828125 + }, { + "x0": 191.8800048828125, + "y0": 358.55999755859375, + "x1": 225.0, + "y1": 370.44000244140625, + "width": 33.1199951171875, + "height": 11.8800048828125 + }, { + "x0": 225.72000122070312, + "y0": 358.55999755859375, + "x1": 265.67999267578125, + "y1": 370.44000244140625, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 266.3999938964844, + "y0": 358.55999755859375, + "x1": 306.0, + "y1": 370.44000244140625, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 306.7200012207031, + "y0": 358.55999755859375, + "x1": 373.67999267578125, + "y1": 370.44000244140625, + "width": 66.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 374.3999938964844, + "y0": 358.55999755859375, + "x1": 427.67999267578125, + "y1": 370.44000244140625, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 323.6400146484375, + "x1": 157.67999267578125, + "y1": 356.760009765625, + "width": 72.35999298095703, + "height": 33.1199951171875 + }, { + "x0": 158.39999389648438, + "y0": 323.6400146484375, + "x1": 191.16000366210938, + "y1": 356.760009765625, + "width": 32.760009765625, + "height": 33.1199951171875 + }, { + "x0": 191.8800048828125, + "y0": 323.6400146484375, + "x1": 225.0, + "y1": 356.760009765625, + "width": 33.1199951171875, + "height": 33.1199951171875 + }, { + "x0": 225.72000122070312, + "y0": 323.6400146484375, + "x1": 265.67999267578125, + "y1": 356.760009765625, + "width": 39.959991455078125, + "height": 33.1199951171875 + }, { + "x0": 266.3999938964844, + "y0": 323.6400146484375, + "x1": 306.0, + "y1": 356.760009765625, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 306.7200012207031, + "y0": 323.6400146484375, + "x1": 373.67999267578125, + "y1": 356.760009765625, + "width": 66.95999145507812, + "height": 33.1199951171875 + }, { + "x0": 374.3999938964844, + "y0": 323.6400146484375, + "x1": 427.67999267578125, + "y1": 356.760009765625, + "width": 53.279998779296875, + "height": 33.1199951171875 + }, { + "x0": 428.3999938964844, + "y0": 323.6400146484375, + "x1": 545.4000244140625, + "y1": 356.760009765625, + "width": 117.00003051757812, + "height": 33.1199951171875 + } + ] + }, { + "pageInfo": { + "number": 13, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 337.32000732421875, + "x1": 175.67999267578125, + "y1": 360.0, + "width": 90.35999298095703, + "height": 22.67999267578125 + }, { + "x0": 176.39999389648438, + "y0": 337.32000732421875, + "x1": 274.67999267578125, + "y1": 360.0, + "width": 98.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 275.3999938964844, + "y0": 337.32000732421875, + "x1": 364.67999267578125, + "y1": 360.0, + "width": 89.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 365.3999938964844, + "y0": 337.32000732421875, + "x1": 454.67999267578125, + "y1": 360.0, + "width": 89.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 455.3999938964844, + "y0": 337.32000732421875, + "x1": 540.0, + "y1": 360.0, + "width": 84.60000610351562, + "height": 22.67999267578125 + }, { + "x0": 85.31999969482422, + "y0": 321.8399963378906, + "x1": 175.67999267578125, + "y1": 335.8800048828125, + "width": 90.35999298095703, + "height": 14.040008544921875 + }, { + "x0": 176.39999389648438, + "y0": 321.8399963378906, + "x1": 274.67999267578125, + "y1": 335.8800048828125, + "width": 98.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 275.3999938964844, + "y0": 321.8399963378906, + "x1": 364.67999267578125, + "y1": 335.8800048828125, + "width": 89.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 365.3999938964844, + "y0": 321.8399963378906, + "x1": 454.67999267578125, + "y1": 335.8800048828125, + "width": 89.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 455.3999938964844, + "y0": 321.8399963378906, + "x1": 540.0, + "y1": 335.8800048828125, + "width": 84.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 85.31999969482422, + "y0": 309.239990234375, + "x1": 175.67999267578125, + "y1": 321.1199951171875, + "width": 90.35999298095703, + "height": 11.8800048828125 + }, { + "x0": 176.39999389648438, + "y0": 309.239990234375, + "x1": 274.67999267578125, + "y1": 321.1199951171875, + "width": 98.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 275.3999938964844, + "y0": 309.239990234375, + "x1": 364.67999267578125, + "y1": 321.1199951171875, + "width": 89.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 365.3999938964844, + "y0": 309.239990234375, + "x1": 454.67999267578125, + "y1": 321.1199951171875, + "width": 89.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 455.3999938964844, + "y0": 309.239990234375, + "x1": 540.0, + "y1": 321.1199951171875, + "width": 84.60000610351562, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 270.719970703125, + "x1": 175.67999267578125, + "y1": 308.5199890136719, + "width": 90.35999298095703, + "height": 37.800018310546875 + }, { + "x0": 176.39999389648438, + "y0": 270.719970703125, + "x1": 274.67999267578125, + "y1": 308.5199890136719, + "width": 98.27999877929688, + "height": 37.800018310546875 + }, { + "x0": 275.3999938964844, + "y0": 296.2799987792969, + "x1": 364.67999267578125, + "y1": 308.5199890136719, + "width": 89.27999877929688, + "height": 12.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 296.2799987792969, + "x1": 454.67999267578125, + "y1": 308.5199890136719, + "width": 89.27999877929688, + "height": 12.239990234375 + }, { + "x0": 455.3999938964844, + "y0": 296.2799987792969, + "x1": 540.0, + "y1": 308.5199890136719, + "width": 84.60000610351562, + "height": 12.239990234375 + }, { + "x0": 275.3999938964844, + "y0": 283.32000732421875, + "x1": 364.67999267578125, + "y1": 295.55999755859375, + "width": 89.27999877929688, + "height": 12.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 283.32000732421875, + "x1": 454.67999267578125, + "y1": 295.55999755859375, + "width": 89.27999877929688, + "height": 12.239990234375 + }, { + "x0": 455.3999938964844, + "y0": 283.32000732421875, + "x1": 540.0, + "y1": 295.55999755859375, + "width": 84.60000610351562, + "height": 12.239990234375 + }, { + "x0": 275.3999938964844, + "y0": 270.719970703125, + "x1": 364.67999267578125, + "y1": 282.6000061035156, + "width": 89.27999877929688, + "height": 11.880035400390625 + }, { + "x0": 365.3999938964844, + "y0": 270.719970703125, + "x1": 454.67999267578125, + "y1": 282.6000061035156, + "width": 89.27999877929688, + "height": 11.880035400390625 + }, { + "x0": 455.3999938964844, + "y0": 270.719970703125, + "x1": 540.0, + "y1": 282.6000061035156, + "width": 84.60000610351562, + "height": 11.880035400390625 + }, { + "x0": 85.31999969482422, + "y0": 257.760009765625, + "x1": 175.67999267578125, + "y1": 270.0, + "width": 90.35999298095703, + "height": 12.239990234375 + }, { + "x0": 176.39999389648438, + "y0": 257.760009765625, + "x1": 274.67999267578125, + "y1": 270.0, + "width": 98.27999877929688, + "height": 12.239990234375 + }, { + "x0": 275.3999938964844, + "y0": 257.760009765625, + "x1": 364.67999267578125, + "y1": 270.0, + "width": 89.27999877929688, + "height": 12.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 257.760009765625, + "x1": 454.67999267578125, + "y1": 270.0, + "width": 89.27999877929688, + "height": 12.239990234375 + }, { + "x0": 455.3999938964844, + "y0": 257.760009765625, + "x1": 540.0, + "y1": 270.0, + "width": 84.60000610351562, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 243.719970703125, + "x1": 540.0, + "y1": 255.96002197265625, + "width": 454.6800003051758, + "height": 12.24005126953125 + } + ] + }, { + "pageInfo": { + "number": 14, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 86.04000091552734, + "y0": 580.6799926757812, + "x1": 186.83999633789062, + "y1": 639.719970703125, + "width": 100.79999542236328, + "height": 59.03997802734375 + }, { + "x0": 187.55999755859375, + "y0": 625.6799926757812, + "x1": 389.5199890136719, + "y1": 639.719970703125, + "width": 201.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 390.239990234375, + "y0": 625.6799926757812, + "x1": 545.4000244140625, + "y1": 639.719970703125, + "width": 155.1600341796875, + "height": 14.03997802734375 + }, { + "x0": 187.55999755859375, + "y0": 580.6799926757812, + "x1": 262.0799865722656, + "y1": 624.9600219726562, + "width": 74.51998901367188, + "height": 44.280029296875 + }, { + "x0": 262.79998779296875, + "y0": 580.6799926757812, + "x1": 300.239990234375, + "y1": 624.9600219726562, + "width": 37.44000244140625, + "height": 44.280029296875 + }, { + "x0": 300.9599914550781, + "y0": 580.6799926757812, + "x1": 335.8800048828125, + "y1": 624.9600219726562, + "width": 34.920013427734375, + "height": 44.280029296875 + }, { + "x0": 336.6000061035156, + "y0": 580.6799926757812, + "x1": 389.5199890136719, + "y1": 624.9600219726562, + "width": 52.91998291015625, + "height": 44.280029296875 + }, { + "x0": 390.239990234375, + "y0": 580.6799926757812, + "x1": 464.760009765625, + "y1": 624.9600219726562, + "width": 74.52001953125, + "height": 44.280029296875 + }, { + "x0": 465.4800109863281, + "y0": 580.6799926757812, + "x1": 545.4000244140625, + "y1": 624.9600219726562, + "width": 79.92001342773438, + "height": 44.280029296875 + }, { + "x0": 86.04000091552734, + "y0": 552.9600219726562, + "x1": 186.83999633789062, + "y1": 579.239990234375, + "width": 100.79999542236328, + "height": 26.27996826171875 + }, { + "x0": 187.55999755859375, + "y0": 552.9600219726562, + "x1": 262.0799865722656, + "y1": 579.239990234375, + "width": 74.51998901367188, + "height": 26.27996826171875 + }, { + "x0": 262.79998779296875, + "y0": 552.9600219726562, + "x1": 300.239990234375, + "y1": 579.239990234375, + "width": 37.44000244140625, + "height": 26.27996826171875 + }, { + "x0": 300.9599914550781, + "y0": 552.9600219726562, + "x1": 335.8800048828125, + "y1": 579.239990234375, + "width": 34.920013427734375, + "height": 26.27996826171875 + }, { + "x0": 336.6000061035156, + "y0": 552.9600219726562, + "x1": 389.5199890136719, + "y1": 579.239990234375, + "width": 52.91998291015625, + "height": 26.27996826171875 + }, { + "x0": 390.239990234375, + "y0": 552.9600219726562, + "x1": 464.760009765625, + "y1": 579.239990234375, + "width": 74.52001953125, + "height": 26.27996826171875 + }, { + "x0": 465.4800109863281, + "y0": 552.9600219726562, + "x1": 545.4000244140625, + "y1": 579.239990234375, + "width": 79.92001342773438, + "height": 26.27996826171875 + }, { + "x0": 86.04000091552734, + "y0": 525.9599609375, + "x1": 186.83999633789062, + "y1": 552.239990234375, + "width": 100.79999542236328, + "height": 26.280029296875 + }, { + "x0": 187.55999755859375, + "y0": 525.9599609375, + "x1": 262.0799865722656, + "y1": 552.239990234375, + "width": 74.51998901367188, + "height": 26.280029296875 + }, { + "x0": 262.79998779296875, + "y0": 525.9599609375, + "x1": 300.239990234375, + "y1": 552.239990234375, + "width": 37.44000244140625, + "height": 26.280029296875 + }, { + "x0": 300.9599914550781, + "y0": 525.9599609375, + "x1": 335.8800048828125, + "y1": 552.239990234375, + "width": 34.920013427734375, + "height": 26.280029296875 + }, { + "x0": 336.6000061035156, + "y0": 525.9599609375, + "x1": 389.5199890136719, + "y1": 552.239990234375, + "width": 52.91998291015625, + "height": 26.280029296875 + }, { + "x0": 390.239990234375, + "y0": 525.9599609375, + "x1": 464.760009765625, + "y1": 552.239990234375, + "width": 74.52001953125, + "height": 26.280029296875 + }, { + "x0": 465.4800109863281, + "y0": 525.9599609375, + "x1": 545.4000244140625, + "y1": 552.239990234375, + "width": 79.92001342773438, + "height": 26.280029296875 + }, { + "x0": 86.04000091552734, + "y0": 498.9599914550781, + "x1": 186.83999633789062, + "y1": 525.239990234375, + "width": 100.79999542236328, + "height": 26.279998779296875 + }, { + "x0": 187.55999755859375, + "y0": 498.9599914550781, + "x1": 262.0799865722656, + "y1": 525.239990234375, + "width": 74.51998901367188, + "height": 26.279998779296875 + }, { + "x0": 262.79998779296875, + "y0": 498.9599914550781, + "x1": 300.239990234375, + "y1": 525.239990234375, + "width": 37.44000244140625, + "height": 26.279998779296875 + }, { + "x0": 300.9599914550781, + "y0": 498.9599914550781, + "x1": 335.8800048828125, + "y1": 525.239990234375, + "width": 34.920013427734375, + "height": 26.279998779296875 + }, { + "x0": 336.6000061035156, + "y0": 498.9599914550781, + "x1": 389.5199890136719, + "y1": 525.239990234375, + "width": 52.91998291015625, + "height": 26.279998779296875 + }, { + "x0": 390.239990234375, + "y0": 498.9599914550781, + "x1": 464.760009765625, + "y1": 525.239990234375, + "width": 74.52001953125, + "height": 26.279998779296875 + }, { + "x0": 465.4800109863281, + "y0": 498.9599914550781, + "x1": 545.4000244140625, + "y1": 525.239990234375, + "width": 79.92001342773438, + "height": 26.279998779296875 + }, { + "x0": 86.04000091552734, + "y0": 471.9599914550781, + "x1": 186.83999633789062, + "y1": 498.239990234375, + "width": 100.79999542236328, + "height": 26.279998779296875 + }, { + "x0": 187.55999755859375, + "y0": 471.9599914550781, + "x1": 262.0799865722656, + "y1": 498.239990234375, + "width": 74.51998901367188, + "height": 26.279998779296875 + }, { + "x0": 262.79998779296875, + "y0": 471.9599914550781, + "x1": 300.239990234375, + "y1": 498.239990234375, + "width": 37.44000244140625, + "height": 26.279998779296875 + }, { + "x0": 300.9599914550781, + "y0": 471.9599914550781, + "x1": 335.8800048828125, + "y1": 498.239990234375, + "width": 34.920013427734375, + "height": 26.279998779296875 + }, { + "x0": 336.6000061035156, + "y0": 471.9599914550781, + "x1": 389.5199890136719, + "y1": 498.239990234375, + "width": 52.91998291015625, + "height": 26.279998779296875 + }, { + "x0": 390.239990234375, + "y0": 471.9599914550781, + "x1": 464.760009765625, + "y1": 498.239990234375, + "width": 74.52001953125, + "height": 26.279998779296875 + }, { + "x0": 465.4800109863281, + "y0": 471.9599914550781, + "x1": 545.4000244140625, + "y1": 498.239990234375, + "width": 79.92001342773438, + "height": 26.279998779296875 + }, { + "x0": 86.04000091552734, + "y0": 444.9599914550781, + "x1": 186.83999633789062, + "y1": 471.239990234375, + "width": 100.79999542236328, + "height": 26.279998779296875 + }, { + "x0": 187.55999755859375, + "y0": 444.9599914550781, + "x1": 262.0799865722656, + "y1": 471.239990234375, + "width": 74.51998901367188, + "height": 26.279998779296875 + }, { + "x0": 262.79998779296875, + "y0": 444.9599914550781, + "x1": 300.239990234375, + "y1": 471.239990234375, + "width": 37.44000244140625, + "height": 26.279998779296875 + }, { + "x0": 300.9599914550781, + "y0": 444.9599914550781, + "x1": 335.8800048828125, + "y1": 471.239990234375, + "width": 34.920013427734375, + "height": 26.279998779296875 + }, { + "x0": 336.6000061035156, + "y0": 444.9599914550781, + "x1": 389.5199890136719, + "y1": 471.239990234375, + "width": 52.91998291015625, + "height": 26.279998779296875 + }, { + "x0": 390.239990234375, + "y0": 444.9599914550781, + "x1": 464.760009765625, + "y1": 471.239990234375, + "width": 74.52001953125, + "height": 26.279998779296875 + }, { + "x0": 465.4800109863281, + "y0": 444.9599914550781, + "x1": 545.4000244140625, + "y1": 471.239990234375, + "width": 79.92001342773438, + "height": 26.279998779296875 + }, { + "x0": 86.04000091552734, + "y0": 417.9599914550781, + "x1": 186.83999633789062, + "y1": 444.239990234375, + "width": 100.79999542236328, + "height": 26.279998779296875 + }, { + "x0": 187.55999755859375, + "y0": 417.9599914550781, + "x1": 262.0799865722656, + "y1": 444.239990234375, + "width": 74.51998901367188, + "height": 26.279998779296875 + }, { + "x0": 262.79998779296875, + "y0": 417.9599914550781, + "x1": 300.239990234375, + "y1": 444.239990234375, + "width": 37.44000244140625, + "height": 26.279998779296875 + }, { + "x0": 300.9599914550781, + "y0": 417.9599914550781, + "x1": 335.8800048828125, + "y1": 444.239990234375, + "width": 34.920013427734375, + "height": 26.279998779296875 + }, { + "x0": 336.6000061035156, + "y0": 417.9599914550781, + "x1": 389.5199890136719, + "y1": 444.239990234375, + "width": 52.91998291015625, + "height": 26.279998779296875 + }, { + "x0": 390.239990234375, + "y0": 417.9599914550781, + "x1": 464.760009765625, + "y1": 444.239990234375, + "width": 74.52001953125, + "height": 26.279998779296875 + }, { + "x0": 465.4800109863281, + "y0": 417.9599914550781, + "x1": 545.4000244140625, + "y1": 444.239990234375, + "width": 79.92001342773438, + "height": 26.279998779296875 + }, { + "x0": 90.36000061035156, + "y0": 230.03997802734375, + "x1": 544.6799926757812, + "y1": 244.08001708984375, + "width": 454.3199920654297, + "height": 14.0400390625 + }, { + "x0": 90.36000061035156, + "y0": 216.0, + "x1": 243.0, + "y1": 228.239990234375, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 216.0, + "x1": 544.6799926757812, + "y1": 228.239990234375, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 203.03997802734375, + "x1": 243.0, + "y1": 215.280029296875, + "width": 152.63999938964844, + "height": 12.24005126953125 + }, { + "x0": 244.0800018310547, + "y0": 203.03997802734375, + "x1": 544.6799926757812, + "y1": 215.280029296875, + "width": 300.59999084472656, + "height": 12.24005126953125 + }, { + "x0": 90.36000061035156, + "y0": 190.08001708984375, + "x1": 243.0, + "y1": 202.32000732421875, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 190.08001708984375, + "x1": 544.6799926757812, + "y1": 202.32000732421875, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 177.1199951171875, + "x1": 243.0, + "y1": 189.0, + "width": 152.63999938964844, + "height": 11.8800048828125 + }, { + "x0": 244.0800018310547, + "y0": 177.1199951171875, + "x1": 544.6799926757812, + "y1": 189.0, + "width": 300.59999084472656, + "height": 11.8800048828125 + }, { + "x0": 90.36000061035156, + "y0": 163.79998779296875, + "x1": 243.0, + "y1": 176.03997802734375, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 163.79998779296875, + "x1": 544.6799926757812, + "y1": 176.03997802734375, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 150.84002685546875, + "x1": 243.0, + "y1": 163.08001708984375, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 150.84002685546875, + "x1": 544.6799926757812, + "y1": 163.08001708984375, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 137.52001953125, + "x1": 243.0, + "y1": 149.760009765625, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 137.52001953125, + "x1": 544.6799926757812, + "y1": 149.760009765625, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 124.55999755859375, + "x1": 243.0, + "y1": 136.79998779296875, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 124.55999755859375, + "x1": 544.6799926757812, + "y1": 136.79998779296875, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 111.5999755859375, + "x1": 243.0, + "y1": 123.47998046875, + "width": 152.63999938964844, + "height": 11.8800048828125 + }, { + "x0": 244.0800018310547, + "y0": 111.5999755859375, + "x1": 544.6799926757812, + "y1": 123.47998046875, + "width": 300.59999084472656, + "height": 11.8800048828125 + }, { + "x0": 90.36000061035156, + "y0": 98.280029296875, + "x1": 243.0, + "y1": 110.52001953125, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 98.280029296875, + "x1": 544.6799926757812, + "y1": 110.52001953125, + "width": 300.59999084472656, + "height": 12.239990234375 + } + ] + }, { + "pageInfo": { + "number": 15, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.36000061035156, + "y0": 704.8800048828125, + "x1": 544.6799926757812, + "y1": 718.9199829101562, + "width": 454.3199920654297, + "height": 14.03997802734375 + }, { + "x0": 90.36000061035156, + "y0": 691.2000122070312, + "x1": 243.0, + "y1": 703.0800170898438, + "width": 152.63999938964844, + "height": 11.8800048828125 + }, { + "x0": 244.0800018310547, + "y0": 691.2000122070312, + "x1": 544.6799926757812, + "y1": 703.0800170898438, + "width": 300.59999084472656, + "height": 11.8800048828125 + }, { + "x0": 90.36000061035156, + "y0": 678.239990234375, + "x1": 243.0, + "y1": 690.47998046875, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 678.239990234375, + "x1": 544.6799926757812, + "y1": 690.47998046875, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 665.280029296875, + "x1": 243.0, + "y1": 677.1600341796875, + "width": 152.63999938964844, + "height": 11.8800048828125 + }, { + "x0": 244.0800018310547, + "y0": 665.280029296875, + "x1": 544.6799926757812, + "y1": 677.1600341796875, + "width": 300.59999084472656, + "height": 11.8800048828125 + }, { + "x0": 90.36000061035156, + "y0": 651.9600219726562, + "x1": 243.0, + "y1": 664.2000122070312, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 651.9600219726562, + "x1": 544.6799926757812, + "y1": 664.2000122070312, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 639.0, + "x1": 243.0, + "y1": 650.8800048828125, + "width": 152.63999938964844, + "height": 11.8800048828125 + }, { + "x0": 244.0800018310547, + "y0": 639.0, + "x1": 544.6799926757812, + "y1": 650.8800048828125, + "width": 300.59999084472656, + "height": 11.8800048828125 + }, { + "x0": 90.36000061035156, + "y0": 625.6799926757812, + "x1": 243.0, + "y1": 637.9199829101562, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 625.6799926757812, + "x1": 544.6799926757812, + "y1": 637.9199829101562, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 612.719970703125, + "x1": 243.0, + "y1": 624.9600219726562, + "width": 152.63999938964844, + "height": 12.24005126953125 + }, { + "x0": 244.0800018310547, + "y0": 612.719970703125, + "x1": 544.6799926757812, + "y1": 624.9600219726562, + "width": 300.59999084472656, + "height": 12.24005126953125 + }, { + "x0": 90.36000061035156, + "y0": 599.760009765625, + "x1": 243.0, + "y1": 611.6400146484375, + "width": 152.63999938964844, + "height": 11.8800048828125 + }, { + "x0": 244.0800018310547, + "y0": 599.760009765625, + "x1": 544.6799926757812, + "y1": 612.0, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 586.4400024414062, + "x1": 243.0, + "y1": 598.6799926757812, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 586.4400024414062, + "x1": 544.6799926757812, + "y1": 598.6799926757812, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.36000061035156, + "y0": 573.47998046875, + "x1": 243.0, + "y1": 585.719970703125, + "width": 152.63999938964844, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 573.47998046875, + "x1": 544.6799926757812, + "y1": 585.719970703125, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.0, + "y0": 559.4400024414062, + "x1": 243.0, + "y1": 572.4000244140625, + "width": 153.0, + "height": 12.96002197265625 + }, { + "x0": 244.0800018310547, + "y0": 559.4400024414062, + "x1": 544.6799926757812, + "y1": 572.4000244140625, + "width": 300.59999084472656, + "height": 12.96002197265625 + }, { + "x0": 90.0, + "y0": 544.3200073242188, + "x1": 243.0, + "y1": 558.3599853515625, + "width": 153.0, + "height": 14.03997802734375 + }, { + "x0": 244.0800018310547, + "y0": 544.3200073242188, + "x1": 544.6799926757812, + "y1": 558.3599853515625, + "width": 300.59999084472656, + "height": 14.03997802734375 + }, { + "x0": 90.0, + "y0": 530.280029296875, + "x1": 243.0, + "y1": 542.52001953125, + "width": 153.0, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 530.280029296875, + "x1": 544.6799926757812, + "y1": 542.52001953125, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.0, + "y0": 517.3200073242188, + "x1": 243.0, + "y1": 529.5599975585938, + "width": 153.0, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 517.3200073242188, + "x1": 544.6799926757812, + "y1": 529.5599975585938, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.0, + "y0": 493.9200134277344, + "x1": 243.0, + "y1": 516.239990234375, + "width": 153.0, + "height": 22.319976806640625 + }, { + "x0": 244.0800018310547, + "y0": 493.9200134277344, + "x1": 544.6799926757812, + "y1": 516.239990234375, + "width": 300.59999084472656, + "height": 22.319976806640625 + }, { + "x0": 90.0, + "y0": 480.6000061035156, + "x1": 243.0, + "y1": 492.8399963378906, + "width": 153.0, + "height": 12.239990234375 + }, { + "x0": 244.0800018310547, + "y0": 480.6000061035156, + "x1": 544.6799926757812, + "y1": 492.8399963378906, + "width": 300.59999084472656, + "height": 12.239990234375 + }, { + "x0": 90.0, + "y0": 457.20001220703125, + "x1": 243.0, + "y1": 479.8800048828125, + "width": 153.0, + "height": 22.67999267578125 + }, { + "x0": 244.0800018310547, + "y0": 457.20001220703125, + "x1": 544.6799926757812, + "y1": 479.8800048828125, + "width": 300.59999084472656, + "height": 22.67999267578125 + }, { + "x0": 85.31999969482422, + "y0": 357.8399963378906, + "x1": 544.6799926757812, + "y1": 372.239990234375, + "width": 459.35999298095703, + "height": 14.399993896484375 + }, { + "x0": 85.31999969482422, + "y0": 334.79998779296875, + "x1": 130.67999267578125, + "y1": 357.1199951171875, + "width": 45.35999298095703, + "height": 22.32000732421875 + }, { + "x0": 131.39999389648438, + "y0": 334.79998779296875, + "x1": 183.60000610351562, + "y1": 357.1199951171875, + "width": 52.20001220703125, + "height": 22.32000732421875 + }, { + "x0": 184.32000732421875, + "y0": 334.79998779296875, + "x1": 279.0, + "y1": 357.1199951171875, + "width": 94.67999267578125, + "height": 22.32000732421875 + }, { + "x0": 279.7200012207031, + "y0": 334.79998779296875, + "x1": 345.239990234375, + "y1": 357.1199951171875, + "width": 65.51998901367188, + "height": 22.32000732421875 + }, { + "x0": 345.9599914550781, + "y0": 334.79998779296875, + "x1": 411.8399963378906, + "y1": 357.1199951171875, + "width": 65.8800048828125, + "height": 22.32000732421875 + }, { + "x0": 412.55999755859375, + "y0": 334.79998779296875, + "x1": 481.67999267578125, + "y1": 357.1199951171875, + "width": 69.1199951171875, + "height": 22.32000732421875 + }, { + "x0": 482.3999938964844, + "y0": 334.79998779296875, + "x1": 544.6799926757812, + "y1": 357.1199951171875, + "width": 62.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 85.31999969482422, + "y0": 320.760009765625, + "x1": 130.67999267578125, + "y1": 333.0, + "width": 45.35999298095703, + "height": 12.239990234375 + }, { + "x0": 131.39999389648438, + "y0": 320.760009765625, + "x1": 183.60000610351562, + "y1": 333.0, + "width": 52.20001220703125, + "height": 12.239990234375 + }, { + "x0": 184.32000732421875, + "y0": 320.760009765625, + "x1": 279.0, + "y1": 333.0, + "width": 94.67999267578125, + "height": 12.239990234375 + }, { + "x0": 279.7200012207031, + "y0": 320.760009765625, + "x1": 345.239990234375, + "y1": 333.0, + "width": 65.51998901367188, + "height": 12.239990234375 + }, { + "x0": 345.9599914550781, + "y0": 320.760009765625, + "x1": 411.8399963378906, + "y1": 333.0, + "width": 65.8800048828125, + "height": 12.239990234375 + }, { + "x0": 412.55999755859375, + "y0": 320.760009765625, + "x1": 481.67999267578125, + "y1": 333.0, + "width": 69.1199951171875, + "height": 12.239990234375 + }, { + "x0": 482.3999938964844, + "y0": 320.760009765625, + "x1": 544.6799926757812, + "y1": 333.0, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 307.0799865722656, + "x1": 130.67999267578125, + "y1": 319.32000732421875, + "width": 45.35999298095703, + "height": 12.240020751953125 + }, { + "x0": 131.39999389648438, + "y0": 294.1199951171875, + "x1": 183.60000610351562, + "y1": 319.32000732421875, + "width": 52.20001220703125, + "height": 25.20001220703125 + }, { + "x0": 184.32000732421875, + "y0": 307.0799865722656, + "x1": 279.0, + "y1": 319.32000732421875, + "width": 94.67999267578125, + "height": 12.240020751953125 + }, { + "x0": 279.7200012207031, + "y0": 307.0799865722656, + "x1": 345.239990234375, + "y1": 319.32000732421875, + "width": 65.51998901367188, + "height": 12.240020751953125 + }, { + "x0": 345.9599914550781, + "y0": 307.0799865722656, + "x1": 411.8399963378906, + "y1": 319.32000732421875, + "width": 65.8800048828125, + "height": 12.240020751953125 + }, { + "x0": 412.55999755859375, + "y0": 307.0799865722656, + "x1": 481.67999267578125, + "y1": 319.32000732421875, + "width": 69.1199951171875, + "height": 12.240020751953125 + }, { + "x0": 482.3999938964844, + "y0": 267.47998046875, + "x1": 544.6799926757812, + "y1": 319.32000732421875, + "width": 62.279998779296875, + "height": 51.84002685546875 + }, { + "x0": 85.31999969482422, + "y0": 294.1199951171875, + "x1": 130.67999267578125, + "y1": 306.3599853515625, + "width": 45.35999298095703, + "height": 12.239990234375 + }, { + "x0": 184.32000732421875, + "y0": 294.1199951171875, + "x1": 279.0, + "y1": 306.3599853515625, + "width": 94.67999267578125, + "height": 12.239990234375 + }, { + "x0": 279.7200012207031, + "y0": 294.1199951171875, + "x1": 345.239990234375, + "y1": 306.3599853515625, + "width": 65.51998901367188, + "height": 12.239990234375 + }, { + "x0": 345.9599914550781, + "y0": 294.1199951171875, + "x1": 411.8399963378906, + "y1": 306.3599853515625, + "width": 65.8800048828125, + "height": 12.239990234375 + }, { + "x0": 412.55999755859375, + "y0": 294.1199951171875, + "x1": 481.67999267578125, + "y1": 306.3599853515625, + "width": 69.1199951171875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 280.44000244140625, + "x1": 130.67999267578125, + "y1": 292.67999267578125, + "width": 45.35999298095703, + "height": 12.239990234375 + }, { + "x0": 131.39999389648438, + "y0": 267.47998046875, + "x1": 183.60000610351562, + "y1": 292.67999267578125, + "width": 52.20001220703125, + "height": 25.20001220703125 + }, { + "x0": 184.32000732421875, + "y0": 280.44000244140625, + "x1": 279.0, + "y1": 292.67999267578125, + "width": 94.67999267578125, + "height": 12.239990234375 + }, { + "x0": 279.7200012207031, + "y0": 280.44000244140625, + "x1": 345.239990234375, + "y1": 292.67999267578125, + "width": 65.51998901367188, + "height": 12.239990234375 + }, { + "x0": 345.9599914550781, + "y0": 280.44000244140625, + "x1": 411.8399963378906, + "y1": 292.67999267578125, + "width": 65.8800048828125, + "height": 12.239990234375 + }, { + "x0": 412.55999755859375, + "y0": 280.44000244140625, + "x1": 481.67999267578125, + "y1": 292.67999267578125, + "width": 69.1199951171875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 267.47998046875, + "x1": 130.67999267578125, + "y1": 279.719970703125, + "width": 45.35999298095703, + "height": 12.239990234375 + }, { + "x0": 184.32000732421875, + "y0": 267.47998046875, + "x1": 279.0, + "y1": 279.719970703125, + "width": 94.67999267578125, + "height": 12.239990234375 + }, { + "x0": 279.7200012207031, + "y0": 267.47998046875, + "x1": 345.239990234375, + "y1": 279.719970703125, + "width": 65.51998901367188, + "height": 12.239990234375 + }, { + "x0": 345.9599914550781, + "y0": 267.47998046875, + "x1": 411.8399963378906, + "y1": 279.719970703125, + "width": 65.8800048828125, + "height": 12.239990234375 + }, { + "x0": 412.55999755859375, + "y0": 267.47998046875, + "x1": 481.67999267578125, + "y1": 279.719970703125, + "width": 69.1199951171875, + "height": 12.239990234375 + } + ] + }, { + "pageInfo": { + "number": 18, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 635.760009765625, + "x1": 545.4000244140625, + "y1": 650.1600341796875, + "width": 460.0800247192383, + "height": 14.4000244140625 + }, { + "x0": 85.31999969482422, + "y0": 599.760009765625, + "x1": 145.44000244140625, + "y1": 635.0399780273438, + "width": 60.12000274658203, + "height": 35.27996826171875 + }, { + "x0": 146.16000366210938, + "y0": 599.760009765625, + "x1": 259.9200134277344, + "y1": 635.0399780273438, + "width": 113.760009765625, + "height": 35.27996826171875 + }, { + "x0": 260.6400146484375, + "y0": 599.760009765625, + "x1": 317.8800048828125, + "y1": 635.0399780273438, + "width": 57.239990234375, + "height": 35.27996826171875 + }, { + "x0": 319.32000732421875, + "y0": 623.1600341796875, + "x1": 545.4000244140625, + "y1": 635.0399780273438, + "width": 226.08001708984375, + "height": 11.87994384765625 + }, { + "x0": 319.32000732421875, + "y0": 599.760009765625, + "x1": 380.1600036621094, + "y1": 622.4400024414062, + "width": 60.839996337890625, + "height": 22.67999267578125 + }, { + "x0": 380.8800048828125, + "y0": 599.760009765625, + "x1": 460.0799865722656, + "y1": 622.4400024414062, + "width": 79.19998168945312, + "height": 22.67999267578125 + }, { + "x0": 460.79998779296875, + "y0": 599.760009765625, + "x1": 545.4000244140625, + "y1": 622.4400024414062, + "width": 84.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 85.31999969482422, + "y0": 551.52001953125, + "x1": 145.44000244140625, + "y1": 598.3200073242188, + "width": 60.12000274658203, + "height": 46.79998779296875 + }, { + "x0": 146.16000366210938, + "y0": 488.8800048828125, + "x1": 259.9200134277344, + "y1": 598.3200073242188, + "width": 113.760009765625, + "height": 109.44000244140625 + }, { + "x0": 260.6400146484375, + "y0": 551.52001953125, + "x1": 317.8800048828125, + "y1": 598.3200073242188, + "width": 57.239990234375, + "height": 46.79998779296875 + }, { + "x0": 319.32000732421875, + "y0": 488.8800048828125, + "x1": 380.1600036621094, + "y1": 598.3200073242188, + "width": 60.839996337890625, + "height": 109.44000244140625 + }, { + "x0": 380.8800048828125, + "y0": 575.6400146484375, + "x1": 460.0799865722656, + "y1": 598.3200073242188, + "width": 79.19998168945312, + "height": 22.67999267578125 + }, { + "x0": 460.79998779296875, + "y0": 575.6400146484375, + "x1": 545.4000244140625, + "y1": 598.3200073242188, + "width": 84.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 380.8800048828125, + "y0": 551.52001953125, + "x1": 460.0799865722656, + "y1": 574.9199829101562, + "width": 79.19998168945312, + "height": 23.39996337890625 + }, { + "x0": 460.79998779296875, + "y0": 551.52001953125, + "x1": 545.4000244140625, + "y1": 574.9199829101562, + "width": 84.60003662109375, + "height": 23.39996337890625 + }, { + "x0": 85.31999969482422, + "y0": 525.5999755859375, + "x1": 145.44000244140625, + "y1": 550.7999877929688, + "width": 60.12000274658203, + "height": 25.20001220703125 + }, { + "x0": 260.6400146484375, + "y0": 525.5999755859375, + "x1": 317.8800048828125, + "y1": 550.7999877929688, + "width": 57.239990234375, + "height": 25.20001220703125 + }, { + "x0": 380.8800048828125, + "y0": 538.5599975585938, + "x1": 460.0799865722656, + "y1": 550.7999877929688, + "width": 79.19998168945312, + "height": 12.239990234375 + }, { + "x0": 460.79998779296875, + "y0": 538.5599975585938, + "x1": 545.4000244140625, + "y1": 550.7999877929688, + "width": 84.60003662109375, + "height": 12.239990234375 + }, { + "x0": 380.8800048828125, + "y0": 525.5999755859375, + "x1": 460.0799865722656, + "y1": 537.8399658203125, + "width": 79.19998168945312, + "height": 12.239990234375 + }, { + "x0": 460.79998779296875, + "y0": 525.5999755859375, + "x1": 545.4000244140625, + "y1": 537.8399658203125, + "width": 84.60003662109375, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 488.8800048828125, + "x1": 145.44000244140625, + "y1": 524.8800048828125, + "width": 60.12000274658203, + "height": 36.0 + }, { + "x0": 260.6400146484375, + "y0": 488.8800048828125, + "x1": 317.8800048828125, + "y1": 524.8800048828125, + "width": 57.239990234375, + "height": 36.0 + }, { + "x0": 380.8800048828125, + "y0": 513.0, + "x1": 460.0799865722656, + "y1": 524.8800048828125, + "width": 79.19998168945312, + "height": 11.8800048828125 + }, { + "x0": 460.79998779296875, + "y0": 513.0, + "x1": 545.4000244140625, + "y1": 524.8800048828125, + "width": 84.60003662109375, + "height": 11.8800048828125 + }, { + "x0": 380.8800048828125, + "y0": 488.8800048828125, + "x1": 460.0799865722656, + "y1": 512.280029296875, + "width": 79.19998168945312, + "height": 23.4000244140625 + }, { + "x0": 460.79998779296875, + "y0": 488.8800048828125, + "x1": 545.4000244140625, + "y1": 512.280029296875, + "width": 84.60003662109375, + "height": 23.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 19, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 704.8800048828125, + "x1": 545.4000244140625, + "y1": 718.9199829101562, + "width": 460.0800247192383, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 681.47998046875, + "x1": 150.1199951171875, + "y1": 703.7999877929688, + "width": 64.79999542236328, + "height": 22.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 681.47998046875, + "x1": 217.8000030517578, + "y1": 703.7999877929688, + "width": 66.96000671386719, + "height": 22.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 681.47998046875, + "x1": 283.32000732421875, + "y1": 703.7999877929688, + "width": 64.44000244140625, + "height": 22.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 681.47998046875, + "x1": 333.0, + "y1": 703.7999877929688, + "width": 48.600006103515625, + "height": 22.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 681.47998046875, + "x1": 418.32000732421875, + "y1": 703.7999877929688, + "width": 84.60000610351562, + "height": 22.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 681.47998046875, + "x1": 490.32000732421875, + "y1": 703.7999877929688, + "width": 70.92001342773438, + "height": 22.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 681.47998046875, + "x1": 545.4000244140625, + "y1": 703.7999877929688, + "width": 54.000030517578125, + "height": 22.32000732421875 + }, { + "x0": 85.31999969482422, + "y0": 452.8800048828125, + "x1": 150.1199951171875, + "y1": 679.6799926757812, + "width": 64.79999542236328, + "height": 226.79998779296875 + }, { + "x0": 150.83999633789062, + "y0": 652.3200073242188, + "x1": 217.8000030517578, + "y1": 679.6799926757812, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 666.3599853515625, + "x1": 283.32000732421875, + "y1": 679.6799926757812, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 666.3599853515625, + "x1": 333.0, + "y1": 679.6799926757812, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 666.3599853515625, + "x1": 418.32000732421875, + "y1": 679.6799926757812, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 666.3599853515625, + "x1": 490.32000732421875, + "y1": 679.6799926757812, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 666.3599853515625, + "x1": 545.4000244140625, + "y1": 679.6799926757812, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 652.3200073242188, + "x1": 283.32000732421875, + "y1": 665.6400146484375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 652.3200073242188, + "x1": 333.0, + "y1": 665.6400146484375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 652.3200073242188, + "x1": 418.32000732421875, + "y1": 665.6400146484375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 652.3200073242188, + "x1": 490.32000732421875, + "y1": 665.6400146484375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 652.3200073242188, + "x1": 545.4000244140625, + "y1": 665.6400146484375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 623.8800048828125, + "x1": 217.8000030517578, + "y1": 651.239990234375, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 637.9199829101562, + "x1": 283.32000732421875, + "y1": 651.239990234375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 637.9199829101562, + "x1": 333.0, + "y1": 651.239990234375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 637.9199829101562, + "x1": 418.32000732421875, + "y1": 651.239990234375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 637.9199829101562, + "x1": 490.32000732421875, + "y1": 651.239990234375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 637.9199829101562, + "x1": 545.4000244140625, + "y1": 651.239990234375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 623.8800048828125, + "x1": 283.32000732421875, + "y1": 636.8399658203125, + "width": 64.44000244140625, + "height": 12.9599609375 + }, { + "x0": 284.3999938964844, + "y0": 623.8800048828125, + "x1": 333.0, + "y1": 636.8399658203125, + "width": 48.600006103515625, + "height": 12.9599609375 + }, { + "x0": 333.7200012207031, + "y0": 623.8800048828125, + "x1": 418.32000732421875, + "y1": 636.8399658203125, + "width": 84.60000610351562, + "height": 12.9599609375 + }, { + "x0": 419.3999938964844, + "y0": 623.8800048828125, + "x1": 490.32000732421875, + "y1": 636.8399658203125, + "width": 70.92001342773438, + "height": 12.9599609375 + }, { + "x0": 491.3999938964844, + "y0": 623.8800048828125, + "x1": 545.4000244140625, + "y1": 636.8399658203125, + "width": 54.000030517578125, + "height": 12.9599609375 + }, { + "x0": 150.83999633789062, + "y0": 595.0800170898438, + "x1": 217.8000030517578, + "y1": 622.7999877929688, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 609.47998046875, + "x1": 283.32000732421875, + "y1": 622.7999877929688, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 609.47998046875, + "x1": 333.0, + "y1": 622.7999877929688, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 609.47998046875, + "x1": 418.32000732421875, + "y1": 622.7999877929688, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 609.47998046875, + "x1": 490.32000732421875, + "y1": 622.7999877929688, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 609.47998046875, + "x1": 545.4000244140625, + "y1": 622.7999877929688, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 595.0800170898438, + "x1": 283.32000732421875, + "y1": 608.4000244140625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 595.0800170898438, + "x1": 333.0, + "y1": 608.4000244140625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 595.0800170898438, + "x1": 418.32000732421875, + "y1": 608.4000244140625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 595.0800170898438, + "x1": 490.32000732421875, + "y1": 608.4000244140625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 595.0800170898438, + "x1": 545.4000244140625, + "y1": 608.4000244140625, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 566.6400146484375, + "x1": 217.8000030517578, + "y1": 594.3599853515625, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 581.0399780273438, + "x1": 283.32000732421875, + "y1": 594.3599853515625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 581.0399780273438, + "x1": 333.0, + "y1": 594.3599853515625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 581.0399780273438, + "x1": 418.32000732421875, + "y1": 594.3599853515625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 581.0399780273438, + "x1": 490.32000732421875, + "y1": 594.3599853515625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 581.0399780273438, + "x1": 545.4000244140625, + "y1": 594.3599853515625, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 566.6400146484375, + "x1": 283.32000732421875, + "y1": 579.9600219726562, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 566.6400146484375, + "x1": 333.0, + "y1": 579.9600219726562, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 566.6400146484375, + "x1": 418.32000732421875, + "y1": 579.9600219726562, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 566.6400146484375, + "x1": 490.32000732421875, + "y1": 579.9600219726562, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 566.6400146484375, + "x1": 545.4000244140625, + "y1": 579.9600219726562, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 538.2000122070312, + "x1": 217.8000030517578, + "y1": 565.9199829101562, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 552.5999755859375, + "x1": 283.32000732421875, + "y1": 565.9199829101562, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 552.5999755859375, + "x1": 333.0, + "y1": 565.9199829101562, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 552.5999755859375, + "x1": 418.32000732421875, + "y1": 565.9199829101562, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 552.5999755859375, + "x1": 490.32000732421875, + "y1": 565.9199829101562, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 552.5999755859375, + "x1": 545.4000244140625, + "y1": 565.9199829101562, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 538.2000122070312, + "x1": 283.32000732421875, + "y1": 551.52001953125, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 538.2000122070312, + "x1": 333.0, + "y1": 551.52001953125, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 538.2000122070312, + "x1": 418.32000732421875, + "y1": 551.52001953125, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 538.2000122070312, + "x1": 490.32000732421875, + "y1": 551.52001953125, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 538.2000122070312, + "x1": 545.4000244140625, + "y1": 551.52001953125, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 509.760009765625, + "x1": 217.8000030517578, + "y1": 537.1199951171875, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 523.7999877929688, + "x1": 283.32000732421875, + "y1": 537.1199951171875, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 523.7999877929688, + "x1": 333.0, + "y1": 537.1199951171875, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 523.7999877929688, + "x1": 418.32000732421875, + "y1": 537.1199951171875, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 523.7999877929688, + "x1": 490.32000732421875, + "y1": 537.1199951171875, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 523.7999877929688, + "x1": 545.4000244140625, + "y1": 537.1199951171875, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 509.760009765625, + "x1": 283.32000732421875, + "y1": 523.0799560546875, + "width": 64.44000244140625, + "height": 13.3199462890625 + }, { + "x0": 284.3999938964844, + "y0": 509.760009765625, + "x1": 333.0, + "y1": 523.0799560546875, + "width": 48.600006103515625, + "height": 13.3199462890625 + }, { + "x0": 333.7200012207031, + "y0": 509.760009765625, + "x1": 418.32000732421875, + "y1": 523.0799560546875, + "width": 84.60000610351562, + "height": 13.3199462890625 + }, { + "x0": 419.3999938964844, + "y0": 509.760009765625, + "x1": 490.32000732421875, + "y1": 523.0799560546875, + "width": 70.92001342773438, + "height": 13.3199462890625 + }, { + "x0": 491.3999938964844, + "y0": 509.760009765625, + "x1": 545.4000244140625, + "y1": 523.0799560546875, + "width": 54.000030517578125, + "height": 13.3199462890625 + }, { + "x0": 150.83999633789062, + "y0": 481.32000732421875, + "x1": 217.8000030517578, + "y1": 508.67999267578125, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 495.3599853515625, + "x1": 283.32000732421875, + "y1": 508.67999267578125, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 495.3599853515625, + "x1": 333.0, + "y1": 508.67999267578125, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 495.3599853515625, + "x1": 418.32000732421875, + "y1": 508.67999267578125, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 495.3599853515625, + "x1": 490.32000732421875, + "y1": 508.67999267578125, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 495.3599853515625, + "x1": 545.4000244140625, + "y1": 508.67999267578125, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 481.32000732421875, + "x1": 283.32000732421875, + "y1": 494.6400146484375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 481.32000732421875, + "x1": 333.0, + "y1": 494.6400146484375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 481.32000732421875, + "x1": 418.32000732421875, + "y1": 494.6400146484375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 481.32000732421875, + "x1": 490.32000732421875, + "y1": 494.6400146484375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 481.32000732421875, + "x1": 545.4000244140625, + "y1": 494.6400146484375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 452.8800048828125, + "x1": 217.8000030517578, + "y1": 480.239990234375, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 466.9200134277344, + "x1": 283.32000732421875, + "y1": 480.239990234375, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 466.9200134277344, + "x1": 333.0, + "y1": 480.239990234375, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 466.9200134277344, + "x1": 418.32000732421875, + "y1": 480.239990234375, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 466.9200134277344, + "x1": 490.32000732421875, + "y1": 480.239990234375, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 466.9200134277344, + "x1": 545.4000244140625, + "y1": 480.239990234375, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 218.8800048828125, + "y0": 452.8800048828125, + "x1": 283.32000732421875, + "y1": 465.8399963378906, + "width": 64.44000244140625, + "height": 12.959991455078125 + }, { + "x0": 284.3999938964844, + "y0": 452.8800048828125, + "x1": 333.0, + "y1": 465.8399963378906, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 333.7200012207031, + "y0": 452.8800048828125, + "x1": 418.32000732421875, + "y1": 465.8399963378906, + "width": 84.60000610351562, + "height": 12.959991455078125 + }, { + "x0": 419.3999938964844, + "y0": 452.8800048828125, + "x1": 490.32000732421875, + "y1": 465.8399963378906, + "width": 70.92001342773438, + "height": 12.959991455078125 + }, { + "x0": 491.3999938964844, + "y0": 452.8800048828125, + "x1": 545.4000244140625, + "y1": 465.8399963378906, + "width": 54.000030517578125, + "height": 12.959991455078125 + }, { + "x0": 85.31999969482422, + "y0": 224.6400146484375, + "x1": 150.1199951171875, + "y1": 451.79998779296875, + "width": 64.79999542236328, + "height": 227.15997314453125 + }, { + "x0": 150.83999633789062, + "y0": 424.0799865722656, + "x1": 217.8000030517578, + "y1": 451.79998779296875, + "width": 66.96000671386719, + "height": 27.720001220703125 + }, { + "x0": 218.8800048828125, + "y0": 438.4800109863281, + "x1": 283.32000732421875, + "y1": 451.79998779296875, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 438.4800109863281, + "x1": 333.0, + "y1": 451.79998779296875, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 438.4800109863281, + "x1": 418.32000732421875, + "y1": 451.79998779296875, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 438.4800109863281, + "x1": 490.32000732421875, + "y1": 451.79998779296875, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 438.4800109863281, + "x1": 545.4000244140625, + "y1": 451.79998779296875, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 218.8800048828125, + "y0": 424.0799865722656, + "x1": 283.32000732421875, + "y1": 437.3999938964844, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 424.0799865722656, + "x1": 333.0, + "y1": 437.3999938964844, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 424.0799865722656, + "x1": 418.32000732421875, + "y1": 437.3999938964844, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 424.0799865722656, + "x1": 490.32000732421875, + "y1": 437.3999938964844, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 424.0799865722656, + "x1": 545.4000244140625, + "y1": 437.3999938964844, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 395.6400146484375, + "x1": 217.8000030517578, + "y1": 423.3599853515625, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 410.0400085449219, + "x1": 283.32000732421875, + "y1": 423.3599853515625, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 410.0400085449219, + "x1": 333.0, + "y1": 423.3599853515625, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 410.0400085449219, + "x1": 418.32000732421875, + "y1": 423.3599853515625, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 410.0400085449219, + "x1": 490.32000732421875, + "y1": 423.3599853515625, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 410.0400085449219, + "x1": 545.4000244140625, + "y1": 423.3599853515625, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 218.8800048828125, + "y0": 395.6400146484375, + "x1": 283.32000732421875, + "y1": 408.9599914550781, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 395.6400146484375, + "x1": 333.0, + "y1": 408.9599914550781, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 395.6400146484375, + "x1": 418.32000732421875, + "y1": 408.9599914550781, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 395.6400146484375, + "x1": 490.32000732421875, + "y1": 408.9599914550781, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 395.6400146484375, + "x1": 545.4000244140625, + "y1": 408.9599914550781, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 150.83999633789062, + "y0": 367.20001220703125, + "x1": 217.8000030517578, + "y1": 394.9200134277344, + "width": 66.96000671386719, + "height": 27.720001220703125 + }, { + "x0": 218.8800048828125, + "y0": 381.6000061035156, + "x1": 283.32000732421875, + "y1": 394.9200134277344, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 381.6000061035156, + "x1": 333.0, + "y1": 394.9200134277344, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 381.6000061035156, + "x1": 418.32000732421875, + "y1": 394.9200134277344, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 381.6000061035156, + "x1": 490.32000732421875, + "y1": 394.9200134277344, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 381.6000061035156, + "x1": 545.4000244140625, + "y1": 394.9200134277344, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 367.20001220703125, + "x1": 283.32000732421875, + "y1": 380.5199890136719, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 367.20001220703125, + "x1": 333.0, + "y1": 380.5199890136719, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 367.20001220703125, + "x1": 418.32000732421875, + "y1": 380.5199890136719, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 367.20001220703125, + "x1": 490.32000732421875, + "y1": 380.5199890136719, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 367.20001220703125, + "x1": 545.4000244140625, + "y1": 380.5199890136719, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 150.83999633789062, + "y0": 338.760009765625, + "x1": 217.8000030517578, + "y1": 366.1199951171875, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 353.1600036621094, + "x1": 283.32000732421875, + "y1": 366.1199951171875, + "width": 64.44000244140625, + "height": 12.959991455078125 + }, { + "x0": 284.3999938964844, + "y0": 353.1600036621094, + "x1": 333.0, + "y1": 366.1199951171875, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 333.7200012207031, + "y0": 353.1600036621094, + "x1": 418.32000732421875, + "y1": 366.1199951171875, + "width": 84.60000610351562, + "height": 12.959991455078125 + }, { + "x0": 419.3999938964844, + "y0": 353.1600036621094, + "x1": 490.32000732421875, + "y1": 366.1199951171875, + "width": 70.92001342773438, + "height": 12.959991455078125 + }, { + "x0": 491.3999938964844, + "y0": 353.1600036621094, + "x1": 545.4000244140625, + "y1": 366.1199951171875, + "width": 54.000030517578125, + "height": 12.959991455078125 + }, { + "x0": 218.8800048828125, + "y0": 338.760009765625, + "x1": 283.32000732421875, + "y1": 352.0799865722656, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 338.760009765625, + "x1": 333.0, + "y1": 352.0799865722656, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 338.760009765625, + "x1": 418.32000732421875, + "y1": 352.0799865722656, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 338.760009765625, + "x1": 490.32000732421875, + "y1": 352.0799865722656, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 338.760009765625, + "x1": 545.4000244140625, + "y1": 352.0799865722656, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 150.83999633789062, + "y0": 310.32000732421875, + "x1": 217.8000030517578, + "y1": 337.67999267578125, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 324.3599853515625, + "x1": 283.32000732421875, + "y1": 337.67999267578125, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 324.3599853515625, + "x1": 333.0, + "y1": 337.67999267578125, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 324.3599853515625, + "x1": 418.32000732421875, + "y1": 337.67999267578125, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 324.3599853515625, + "x1": 490.32000732421875, + "y1": 337.67999267578125, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 324.3599853515625, + "x1": 545.4000244140625, + "y1": 337.67999267578125, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 310.32000732421875, + "x1": 283.32000732421875, + "y1": 323.6400146484375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 310.32000732421875, + "x1": 333.0, + "y1": 323.6400146484375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 310.32000732421875, + "x1": 418.32000732421875, + "y1": 323.6400146484375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 310.32000732421875, + "x1": 490.32000732421875, + "y1": 323.6400146484375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 310.32000732421875, + "x1": 545.4000244140625, + "y1": 323.6400146484375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 281.8800048828125, + "x1": 217.8000030517578, + "y1": 309.239990234375, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 295.9200134277344, + "x1": 283.32000732421875, + "y1": 309.239990234375, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 295.9200134277344, + "x1": 333.0, + "y1": 309.239990234375, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 295.9200134277344, + "x1": 418.32000732421875, + "y1": 309.239990234375, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 295.9200134277344, + "x1": 490.32000732421875, + "y1": 309.239990234375, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 295.9200134277344, + "x1": 545.4000244140625, + "y1": 309.239990234375, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 218.8800048828125, + "y0": 281.8800048828125, + "x1": 283.32000732421875, + "y1": 295.20001220703125, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 281.8800048828125, + "x1": 333.0, + "y1": 295.20001220703125, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 281.8800048828125, + "x1": 418.32000732421875, + "y1": 295.20001220703125, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 281.8800048828125, + "x1": 490.32000732421875, + "y1": 295.20001220703125, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 281.8800048828125, + "x1": 545.4000244140625, + "y1": 295.20001220703125, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 253.08001708984375, + "x1": 217.8000030517578, + "y1": 280.79998779296875, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 267.47998046875, + "x1": 283.32000732421875, + "y1": 280.79998779296875, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 267.47998046875, + "x1": 333.0, + "y1": 280.79998779296875, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 267.47998046875, + "x1": 418.32000732421875, + "y1": 280.79998779296875, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 267.47998046875, + "x1": 490.32000732421875, + "y1": 280.79998779296875, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 267.47998046875, + "x1": 545.4000244140625, + "y1": 280.79998779296875, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 253.08001708984375, + "x1": 283.32000732421875, + "y1": 266.4000244140625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 253.08001708984375, + "x1": 333.0, + "y1": 266.4000244140625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 253.08001708984375, + "x1": 418.32000732421875, + "y1": 266.4000244140625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 253.08001708984375, + "x1": 490.32000732421875, + "y1": 266.4000244140625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 253.08001708984375, + "x1": 545.4000244140625, + "y1": 266.4000244140625, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 224.6400146484375, + "x1": 217.8000030517578, + "y1": 252.3599853515625, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 239.03997802734375, + "x1": 283.32000732421875, + "y1": 252.3599853515625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 239.03997802734375, + "x1": 333.0, + "y1": 252.3599853515625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 239.03997802734375, + "x1": 418.32000732421875, + "y1": 252.3599853515625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 239.03997802734375, + "x1": 490.32000732421875, + "y1": 252.3599853515625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 239.03997802734375, + "x1": 545.4000244140625, + "y1": 252.3599853515625, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 224.6400146484375, + "x1": 283.32000732421875, + "y1": 237.96002197265625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 224.6400146484375, + "x1": 333.0, + "y1": 237.96002197265625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 224.6400146484375, + "x1": 418.32000732421875, + "y1": 237.96002197265625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 224.6400146484375, + "x1": 490.32000732421875, + "y1": 237.96002197265625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 224.6400146484375, + "x1": 545.4000244140625, + "y1": 237.96002197265625, + "width": 54.000030517578125, + "height": 13.32000732421875 + } + ] + }, { + "pageInfo": { + "number": 20, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 704.8800048828125, + "x1": 545.4000244140625, + "y1": 718.9199829101562, + "width": 460.0800247192383, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 681.47998046875, + "x1": 150.1199951171875, + "y1": 703.7999877929688, + "width": 64.79999542236328, + "height": 22.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 681.47998046875, + "x1": 217.8000030517578, + "y1": 703.7999877929688, + "width": 66.96000671386719, + "height": 22.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 681.47998046875, + "x1": 283.32000732421875, + "y1": 703.7999877929688, + "width": 64.44000244140625, + "height": 22.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 681.47998046875, + "x1": 333.0, + "y1": 703.7999877929688, + "width": 48.600006103515625, + "height": 22.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 681.47998046875, + "x1": 418.32000732421875, + "y1": 703.7999877929688, + "width": 84.60000610351562, + "height": 22.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 681.47998046875, + "x1": 490.32000732421875, + "y1": 703.7999877929688, + "width": 70.92001342773438, + "height": 22.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 681.47998046875, + "x1": 545.4000244140625, + "y1": 703.7999877929688, + "width": 54.000030517578125, + "height": 22.32000732421875 + }, { + "x0": 85.31999969482422, + "y0": 452.8800048828125, + "x1": 150.1199951171875, + "y1": 679.6799926757812, + "width": 64.79999542236328, + "height": 226.79998779296875 + }, { + "x0": 150.83999633789062, + "y0": 652.3200073242188, + "x1": 217.8000030517578, + "y1": 679.6799926757812, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 666.3599853515625, + "x1": 283.32000732421875, + "y1": 679.6799926757812, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 666.3599853515625, + "x1": 333.0, + "y1": 679.6799926757812, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 666.3599853515625, + "x1": 418.32000732421875, + "y1": 679.6799926757812, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 666.3599853515625, + "x1": 490.32000732421875, + "y1": 679.6799926757812, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 666.3599853515625, + "x1": 545.4000244140625, + "y1": 679.6799926757812, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 652.3200073242188, + "x1": 283.32000732421875, + "y1": 665.6400146484375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 652.3200073242188, + "x1": 333.0, + "y1": 665.6400146484375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 652.3200073242188, + "x1": 418.32000732421875, + "y1": 665.6400146484375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 652.3200073242188, + "x1": 490.32000732421875, + "y1": 665.6400146484375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 652.3200073242188, + "x1": 545.4000244140625, + "y1": 665.6400146484375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 623.8800048828125, + "x1": 217.8000030517578, + "y1": 651.239990234375, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 637.9199829101562, + "x1": 283.32000732421875, + "y1": 651.239990234375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 637.9199829101562, + "x1": 333.0, + "y1": 651.239990234375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 637.9199829101562, + "x1": 418.32000732421875, + "y1": 651.239990234375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 637.9199829101562, + "x1": 490.32000732421875, + "y1": 651.239990234375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 637.9199829101562, + "x1": 545.4000244140625, + "y1": 651.239990234375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 623.8800048828125, + "x1": 283.32000732421875, + "y1": 636.8399658203125, + "width": 64.44000244140625, + "height": 12.9599609375 + }, { + "x0": 284.3999938964844, + "y0": 623.8800048828125, + "x1": 333.0, + "y1": 636.8399658203125, + "width": 48.600006103515625, + "height": 12.9599609375 + }, { + "x0": 333.7200012207031, + "y0": 623.8800048828125, + "x1": 418.32000732421875, + "y1": 636.8399658203125, + "width": 84.60000610351562, + "height": 12.9599609375 + }, { + "x0": 419.3999938964844, + "y0": 623.8800048828125, + "x1": 490.32000732421875, + "y1": 636.8399658203125, + "width": 70.92001342773438, + "height": 12.9599609375 + }, { + "x0": 491.3999938964844, + "y0": 623.8800048828125, + "x1": 545.4000244140625, + "y1": 636.8399658203125, + "width": 54.000030517578125, + "height": 12.9599609375 + }, { + "x0": 150.83999633789062, + "y0": 595.0800170898438, + "x1": 217.8000030517578, + "y1": 622.7999877929688, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 609.47998046875, + "x1": 283.32000732421875, + "y1": 622.7999877929688, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 609.47998046875, + "x1": 333.0, + "y1": 622.7999877929688, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 609.47998046875, + "x1": 418.32000732421875, + "y1": 622.7999877929688, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 609.47998046875, + "x1": 490.32000732421875, + "y1": 622.7999877929688, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 609.47998046875, + "x1": 545.4000244140625, + "y1": 622.7999877929688, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 595.0800170898438, + "x1": 283.32000732421875, + "y1": 608.4000244140625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 595.0800170898438, + "x1": 333.0, + "y1": 608.4000244140625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 595.0800170898438, + "x1": 418.32000732421875, + "y1": 608.4000244140625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 595.0800170898438, + "x1": 490.32000732421875, + "y1": 608.4000244140625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 595.0800170898438, + "x1": 545.4000244140625, + "y1": 608.4000244140625, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 566.6400146484375, + "x1": 217.8000030517578, + "y1": 594.3599853515625, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 581.0399780273438, + "x1": 283.32000732421875, + "y1": 594.3599853515625, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 581.0399780273438, + "x1": 333.0, + "y1": 594.3599853515625, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 581.0399780273438, + "x1": 418.32000732421875, + "y1": 594.3599853515625, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 581.0399780273438, + "x1": 490.32000732421875, + "y1": 594.3599853515625, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 581.0399780273438, + "x1": 545.4000244140625, + "y1": 594.3599853515625, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 566.6400146484375, + "x1": 283.32000732421875, + "y1": 579.9600219726562, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 566.6400146484375, + "x1": 333.0, + "y1": 579.9600219726562, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 566.6400146484375, + "x1": 418.32000732421875, + "y1": 579.9600219726562, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 566.6400146484375, + "x1": 490.32000732421875, + "y1": 579.9600219726562, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 566.6400146484375, + "x1": 545.4000244140625, + "y1": 579.9600219726562, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 538.2000122070312, + "x1": 217.8000030517578, + "y1": 565.9199829101562, + "width": 66.96000671386719, + "height": 27.719970703125 + }, { + "x0": 218.8800048828125, + "y0": 552.5999755859375, + "x1": 283.32000732421875, + "y1": 565.9199829101562, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 552.5999755859375, + "x1": 333.0, + "y1": 565.9199829101562, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 552.5999755859375, + "x1": 418.32000732421875, + "y1": 565.9199829101562, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 552.5999755859375, + "x1": 490.32000732421875, + "y1": 565.9199829101562, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 552.5999755859375, + "x1": 545.4000244140625, + "y1": 565.9199829101562, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 538.2000122070312, + "x1": 283.32000732421875, + "y1": 551.52001953125, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 538.2000122070312, + "x1": 333.0, + "y1": 551.52001953125, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 538.2000122070312, + "x1": 418.32000732421875, + "y1": 551.52001953125, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 538.2000122070312, + "x1": 490.32000732421875, + "y1": 551.52001953125, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 538.2000122070312, + "x1": 545.4000244140625, + "y1": 551.52001953125, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 509.760009765625, + "x1": 217.8000030517578, + "y1": 537.1199951171875, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 523.7999877929688, + "x1": 283.32000732421875, + "y1": 537.1199951171875, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 523.7999877929688, + "x1": 333.0, + "y1": 537.1199951171875, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 523.7999877929688, + "x1": 418.32000732421875, + "y1": 537.1199951171875, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 523.7999877929688, + "x1": 490.32000732421875, + "y1": 537.1199951171875, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 523.7999877929688, + "x1": 545.4000244140625, + "y1": 537.1199951171875, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 509.760009765625, + "x1": 283.32000732421875, + "y1": 523.0799560546875, + "width": 64.44000244140625, + "height": 13.3199462890625 + }, { + "x0": 284.3999938964844, + "y0": 509.760009765625, + "x1": 333.0, + "y1": 523.0799560546875, + "width": 48.600006103515625, + "height": 13.3199462890625 + }, { + "x0": 333.7200012207031, + "y0": 509.760009765625, + "x1": 418.32000732421875, + "y1": 523.0799560546875, + "width": 84.60000610351562, + "height": 13.3199462890625 + }, { + "x0": 419.3999938964844, + "y0": 509.760009765625, + "x1": 490.32000732421875, + "y1": 523.0799560546875, + "width": 70.92001342773438, + "height": 13.3199462890625 + }, { + "x0": 491.3999938964844, + "y0": 509.760009765625, + "x1": 545.4000244140625, + "y1": 523.0799560546875, + "width": 54.000030517578125, + "height": 13.3199462890625 + }, { + "x0": 150.83999633789062, + "y0": 481.32000732421875, + "x1": 217.8000030517578, + "y1": 508.67999267578125, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 495.3599853515625, + "x1": 283.32000732421875, + "y1": 508.67999267578125, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 495.3599853515625, + "x1": 333.0, + "y1": 508.67999267578125, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 495.3599853515625, + "x1": 418.32000732421875, + "y1": 508.67999267578125, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 495.3599853515625, + "x1": 490.32000732421875, + "y1": 508.67999267578125, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 495.3599853515625, + "x1": 545.4000244140625, + "y1": 508.67999267578125, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 218.8800048828125, + "y0": 481.32000732421875, + "x1": 283.32000732421875, + "y1": 494.6400146484375, + "width": 64.44000244140625, + "height": 13.32000732421875 + }, { + "x0": 284.3999938964844, + "y0": 481.32000732421875, + "x1": 333.0, + "y1": 494.6400146484375, + "width": 48.600006103515625, + "height": 13.32000732421875 + }, { + "x0": 333.7200012207031, + "y0": 481.32000732421875, + "x1": 418.32000732421875, + "y1": 494.6400146484375, + "width": 84.60000610351562, + "height": 13.32000732421875 + }, { + "x0": 419.3999938964844, + "y0": 481.32000732421875, + "x1": 490.32000732421875, + "y1": 494.6400146484375, + "width": 70.92001342773438, + "height": 13.32000732421875 + }, { + "x0": 491.3999938964844, + "y0": 481.32000732421875, + "x1": 545.4000244140625, + "y1": 494.6400146484375, + "width": 54.000030517578125, + "height": 13.32000732421875 + }, { + "x0": 150.83999633789062, + "y0": 452.8800048828125, + "x1": 217.8000030517578, + "y1": 480.239990234375, + "width": 66.96000671386719, + "height": 27.3599853515625 + }, { + "x0": 218.8800048828125, + "y0": 466.9200134277344, + "x1": 283.32000732421875, + "y1": 480.239990234375, + "width": 64.44000244140625, + "height": 13.319976806640625 + }, { + "x0": 284.3999938964844, + "y0": 466.9200134277344, + "x1": 333.0, + "y1": 480.239990234375, + "width": 48.600006103515625, + "height": 13.319976806640625 + }, { + "x0": 333.7200012207031, + "y0": 466.9200134277344, + "x1": 418.32000732421875, + "y1": 480.239990234375, + "width": 84.60000610351562, + "height": 13.319976806640625 + }, { + "x0": 419.3999938964844, + "y0": 466.9200134277344, + "x1": 490.32000732421875, + "y1": 480.239990234375, + "width": 70.92001342773438, + "height": 13.319976806640625 + }, { + "x0": 491.3999938964844, + "y0": 466.9200134277344, + "x1": 545.4000244140625, + "y1": 480.239990234375, + "width": 54.000030517578125, + "height": 13.319976806640625 + }, { + "x0": 218.8800048828125, + "y0": 452.8800048828125, + "x1": 283.32000732421875, + "y1": 465.8399963378906, + "width": 64.44000244140625, + "height": 12.959991455078125 + }, { + "x0": 284.3999938964844, + "y0": 452.8800048828125, + "x1": 333.0, + "y1": 465.8399963378906, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 333.7200012207031, + "y0": 452.8800048828125, + "x1": 418.32000732421875, + "y1": 465.8399963378906, + "width": 84.60000610351562, + "height": 12.959991455078125 + }, { + "x0": 419.3999938964844, + "y0": 452.8800048828125, + "x1": 490.32000732421875, + "y1": 465.8399963378906, + "width": 70.92001342773438, + "height": 12.959991455078125 + }, { + "x0": 491.3999938964844, + "y0": 452.8800048828125, + "x1": 545.4000244140625, + "y1": 465.8399963378906, + "width": 54.000030517578125, + "height": 12.959991455078125 + } + ] + }, { + "pageInfo": { + "number": 21, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 704.8800048828125, + "x1": 545.4000244140625, + "y1": 718.9199829101562, + "width": 460.0800247192383, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 654.8399658203125, + "x1": 153.0, + "y1": 704.1600341796875, + "width": 67.68000030517578, + "height": 49.320068359375 + }, { + "x0": 153.72000122070312, + "y0": 654.8399658203125, + "x1": 193.67999267578125, + "y1": 704.1600341796875, + "width": 39.959991455078125, + "height": 49.320068359375 + }, { + "x0": 194.39999389648438, + "y0": 654.8399658203125, + "x1": 216.0, + "y1": 704.1600341796875, + "width": 21.600006103515625, + "height": 49.320068359375 + }, { + "x0": 216.72000122070312, + "y0": 691.9199829101562, + "x1": 445.67999267578125, + "y1": 704.1600341796875, + "width": 228.95999145507812, + "height": 12.24005126953125 + }, { + "x0": 446.3999938964844, + "y0": 654.8399658203125, + "x1": 499.67999267578125, + "y1": 704.1600341796875, + "width": 53.279998779296875, + "height": 49.320068359375 + }, { + "x0": 500.3999938964844, + "y0": 654.8399658203125, + "x1": 545.4000244140625, + "y1": 704.1600341796875, + "width": 45.000030517578125, + "height": 49.320068359375 + }, { + "x0": 216.72000122070312, + "y0": 667.7999877929688, + "x1": 292.67999267578125, + "y1": 691.2000122070312, + "width": 75.95999145507812, + "height": 23.4000244140625 + }, { + "x0": 293.3999938964844, + "y0": 667.7999877929688, + "x1": 369.0, + "y1": 691.2000122070312, + "width": 75.60000610351562, + "height": 23.4000244140625 + }, { + "x0": 369.7200012207031, + "y0": 667.7999877929688, + "x1": 445.67999267578125, + "y1": 691.2000122070312, + "width": 75.95999145507812, + "height": 23.4000244140625 + }, { + "x0": 216.72000122070312, + "y0": 654.8399658203125, + "x1": 261.0, + "y1": 667.0800170898438, + "width": 44.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 261.7200012207031, + "y0": 654.8399658203125, + "x1": 292.67999267578125, + "y1": 667.0800170898438, + "width": 30.959991455078125, + "height": 12.24005126953125 + }, { + "x0": 293.3999938964844, + "y0": 654.8399658203125, + "x1": 337.67999267578125, + "y1": 667.0800170898438, + "width": 44.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 338.3999938964844, + "y0": 654.8399658203125, + "x1": 369.0, + "y1": 667.0800170898438, + "width": 30.600006103515625, + "height": 12.24005126953125 + }, { + "x0": 369.7200012207031, + "y0": 654.8399658203125, + "x1": 414.0, + "y1": 667.0800170898438, + "width": 44.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 414.7200012207031, + "y0": 654.8399658203125, + "x1": 445.67999267578125, + "y1": 667.0800170898438, + "width": 30.959991455078125, + "height": 12.24005126953125 + }, { + "x0": 85.31999969482422, + "y0": 628.2000122070312, + "x1": 153.0, + "y1": 653.4000244140625, + "width": 67.68000030517578, + "height": 25.20001220703125 + }, { + "x0": 153.72000122070312, + "y0": 641.1600341796875, + "x1": 193.67999267578125, + "y1": 653.4000244140625, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 641.1600341796875, + "x1": 216.0, + "y1": 653.4000244140625, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 641.1600341796875, + "x1": 261.0, + "y1": 653.4000244140625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 641.1600341796875, + "x1": 292.67999267578125, + "y1": 653.4000244140625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 641.1600341796875, + "x1": 337.67999267578125, + "y1": 653.4000244140625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 641.1600341796875, + "x1": 369.0, + "y1": 653.4000244140625, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 641.1600341796875, + "x1": 414.0, + "y1": 653.4000244140625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 641.1600341796875, + "x1": 445.67999267578125, + "y1": 653.4000244140625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 641.1600341796875, + "x1": 499.67999267578125, + "y1": 653.4000244140625, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 641.1600341796875, + "x1": 545.4000244140625, + "y1": 653.4000244140625, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 628.2000122070312, + "x1": 193.67999267578125, + "y1": 640.4400024414062, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 628.2000122070312, + "x1": 216.0, + "y1": 640.4400024414062, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 628.2000122070312, + "x1": 261.0, + "y1": 640.4400024414062, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 628.2000122070312, + "x1": 292.67999267578125, + "y1": 640.4400024414062, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 628.2000122070312, + "x1": 337.67999267578125, + "y1": 640.4400024414062, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 628.2000122070312, + "x1": 369.0, + "y1": 640.4400024414062, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 628.2000122070312, + "x1": 414.0, + "y1": 640.4400024414062, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 628.2000122070312, + "x1": 445.67999267578125, + "y1": 640.4400024414062, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 628.2000122070312, + "x1": 499.67999267578125, + "y1": 640.4400024414062, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 628.2000122070312, + "x1": 545.4000244140625, + "y1": 640.4400024414062, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 602.6400146484375, + "x1": 153.0, + "y1": 627.47998046875, + "width": 67.68000030517578, + "height": 24.8399658203125 + }, { + "x0": 153.72000122070312, + "y0": 615.5999755859375, + "x1": 193.67999267578125, + "y1": 627.47998046875, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 216.72000122070312, + "y0": 615.5999755859375, + "x1": 261.0, + "y1": 627.47998046875, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 261.7200012207031, + "y0": 615.5999755859375, + "x1": 292.67999267578125, + "y1": 627.47998046875, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 293.3999938964844, + "y0": 615.5999755859375, + "x1": 337.67999267578125, + "y1": 627.47998046875, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 338.3999938964844, + "y0": 615.5999755859375, + "x1": 369.0, + "y1": 627.47998046875, + "width": 30.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 369.7200012207031, + "y0": 615.5999755859375, + "x1": 414.0, + "y1": 627.47998046875, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 414.7200012207031, + "y0": 615.5999755859375, + "x1": 445.67999267578125, + "y1": 627.47998046875, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 446.3999938964844, + "y0": 615.5999755859375, + "x1": 499.67999267578125, + "y1": 627.47998046875, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 500.3999938964844, + "y0": 615.5999755859375, + "x1": 545.4000244140625, + "y1": 627.47998046875, + "width": 45.000030517578125, + "height": 11.8800048828125 + }, { + "x0": 153.72000122070312, + "y0": 602.6400146484375, + "x1": 193.67999267578125, + "y1": 614.8800048828125, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 602.6400146484375, + "x1": 216.0, + "y1": 614.8800048828125, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 602.6400146484375, + "x1": 261.0, + "y1": 614.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 602.6400146484375, + "x1": 292.67999267578125, + "y1": 614.8800048828125, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 602.6400146484375, + "x1": 337.67999267578125, + "y1": 614.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 602.6400146484375, + "x1": 369.0, + "y1": 614.8800048828125, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 602.6400146484375, + "x1": 414.0, + "y1": 614.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 602.6400146484375, + "x1": 445.67999267578125, + "y1": 614.8800048828125, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 602.6400146484375, + "x1": 499.67999267578125, + "y1": 614.8800048828125, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 602.6400146484375, + "x1": 545.4000244140625, + "y1": 614.8800048828125, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 577.0800170898438, + "x1": 153.0, + "y1": 601.9199829101562, + "width": 67.68000030517578, + "height": 24.8399658203125 + }, { + "x0": 153.72000122070312, + "y0": 589.6799926757812, + "x1": 193.67999267578125, + "y1": 601.9199829101562, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 589.6799926757812, + "x1": 216.0, + "y1": 601.9199829101562, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 589.6799926757812, + "x1": 261.0, + "y1": 601.9199829101562, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 589.6799926757812, + "x1": 292.67999267578125, + "y1": 601.9199829101562, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 589.6799926757812, + "x1": 337.67999267578125, + "y1": 601.9199829101562, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 589.6799926757812, + "x1": 369.0, + "y1": 601.9199829101562, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 589.6799926757812, + "x1": 414.0, + "y1": 601.9199829101562, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 589.6799926757812, + "x1": 445.67999267578125, + "y1": 601.9199829101562, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 589.6799926757812, + "x1": 499.67999267578125, + "y1": 601.9199829101562, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 589.6799926757812, + "x1": 545.4000244140625, + "y1": 601.9199829101562, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 577.0800170898438, + "x1": 193.67999267578125, + "y1": 588.9600219726562, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 216.72000122070312, + "y0": 577.0800170898438, + "x1": 261.0, + "y1": 588.9600219726562, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 261.7200012207031, + "y0": 577.0800170898438, + "x1": 292.67999267578125, + "y1": 588.9600219726562, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 293.3999938964844, + "y0": 577.0800170898438, + "x1": 337.67999267578125, + "y1": 588.9600219726562, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 338.3999938964844, + "y0": 577.0800170898438, + "x1": 369.0, + "y1": 588.9600219726562, + "width": 30.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 369.7200012207031, + "y0": 577.0800170898438, + "x1": 414.0, + "y1": 588.9600219726562, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 414.7200012207031, + "y0": 577.0800170898438, + "x1": 445.67999267578125, + "y1": 588.9600219726562, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 446.3999938964844, + "y0": 577.0800170898438, + "x1": 499.67999267578125, + "y1": 588.9600219726562, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 500.3999938964844, + "y0": 577.0800170898438, + "x1": 545.4000244140625, + "y1": 588.9600219726562, + "width": 45.000030517578125, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 551.1600341796875, + "x1": 153.0, + "y1": 576.3599853515625, + "width": 67.68000030517578, + "height": 25.199951171875 + }, { + "x0": 153.72000122070312, + "y0": 564.1199951171875, + "x1": 193.67999267578125, + "y1": 576.3599853515625, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 564.1199951171875, + "x1": 216.0, + "y1": 576.3599853515625, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 564.1199951171875, + "x1": 261.0, + "y1": 576.3599853515625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 564.1199951171875, + "x1": 292.67999267578125, + "y1": 576.3599853515625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 564.1199951171875, + "x1": 337.67999267578125, + "y1": 576.3599853515625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 564.1199951171875, + "x1": 369.0, + "y1": 576.3599853515625, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 564.1199951171875, + "x1": 414.0, + "y1": 576.3599853515625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 564.1199951171875, + "x1": 445.67999267578125, + "y1": 576.3599853515625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 564.1199951171875, + "x1": 499.67999267578125, + "y1": 576.3599853515625, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 564.1199951171875, + "x1": 545.4000244140625, + "y1": 576.3599853515625, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 551.1600341796875, + "x1": 193.67999267578125, + "y1": 563.4000244140625, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 551.1600341796875, + "x1": 216.0, + "y1": 563.4000244140625, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 551.1600341796875, + "x1": 261.0, + "y1": 563.4000244140625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 551.1600341796875, + "x1": 292.67999267578125, + "y1": 563.4000244140625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 551.1600341796875, + "x1": 337.67999267578125, + "y1": 563.4000244140625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 551.1600341796875, + "x1": 369.0, + "y1": 563.4000244140625, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 551.1600341796875, + "x1": 414.0, + "y1": 563.4000244140625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 551.1600341796875, + "x1": 445.67999267578125, + "y1": 563.4000244140625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 551.1600341796875, + "x1": 499.67999267578125, + "y1": 563.4000244140625, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 551.1600341796875, + "x1": 545.4000244140625, + "y1": 563.4000244140625, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 525.5999755859375, + "x1": 153.0, + "y1": 550.4400024414062, + "width": 67.68000030517578, + "height": 24.84002685546875 + }, { + "x0": 153.72000122070312, + "y0": 538.2000122070312, + "x1": 193.67999267578125, + "y1": 550.4400024414062, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 538.2000122070312, + "x1": 216.0, + "y1": 550.4400024414062, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 538.2000122070312, + "x1": 261.0, + "y1": 550.4400024414062, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 538.2000122070312, + "x1": 292.67999267578125, + "y1": 550.4400024414062, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 538.2000122070312, + "x1": 337.67999267578125, + "y1": 550.4400024414062, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 538.2000122070312, + "x1": 369.0, + "y1": 550.4400024414062, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 538.2000122070312, + "x1": 414.0, + "y1": 550.4400024414062, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 538.2000122070312, + "x1": 445.67999267578125, + "y1": 550.4400024414062, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 538.2000122070312, + "x1": 499.67999267578125, + "y1": 550.4400024414062, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 538.2000122070312, + "x1": 545.4000244140625, + "y1": 550.4400024414062, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 525.5999755859375, + "x1": 193.67999267578125, + "y1": 537.47998046875, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 216.72000122070312, + "y0": 525.5999755859375, + "x1": 261.0, + "y1": 537.47998046875, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 261.7200012207031, + "y0": 525.5999755859375, + "x1": 292.67999267578125, + "y1": 537.47998046875, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 293.3999938964844, + "y0": 525.5999755859375, + "x1": 337.67999267578125, + "y1": 537.47998046875, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 338.3999938964844, + "y0": 525.5999755859375, + "x1": 369.0, + "y1": 537.47998046875, + "width": 30.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 369.7200012207031, + "y0": 525.5999755859375, + "x1": 414.0, + "y1": 537.47998046875, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 414.7200012207031, + "y0": 525.5999755859375, + "x1": 445.67999267578125, + "y1": 537.47998046875, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 446.3999938964844, + "y0": 525.5999755859375, + "x1": 499.67999267578125, + "y1": 537.47998046875, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 500.3999938964844, + "y0": 525.5999755859375, + "x1": 545.4000244140625, + "y1": 537.47998046875, + "width": 45.000030517578125, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 499.67999267578125, + "x1": 153.0, + "y1": 524.8800048828125, + "width": 67.68000030517578, + "height": 25.20001220703125 + }, { + "x0": 153.72000122070312, + "y0": 512.6400146484375, + "x1": 193.67999267578125, + "y1": 524.8800048828125, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 512.6400146484375, + "x1": 216.0, + "y1": 524.8800048828125, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 512.6400146484375, + "x1": 261.0, + "y1": 524.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 512.6400146484375, + "x1": 292.67999267578125, + "y1": 524.8800048828125, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 512.6400146484375, + "x1": 337.67999267578125, + "y1": 524.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 512.6400146484375, + "x1": 369.0, + "y1": 524.8800048828125, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 512.6400146484375, + "x1": 414.0, + "y1": 524.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 512.6400146484375, + "x1": 445.67999267578125, + "y1": 524.8800048828125, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 512.6400146484375, + "x1": 499.67999267578125, + "y1": 524.8800048828125, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 512.6400146484375, + "x1": 545.4000244140625, + "y1": 524.8800048828125, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 499.67999267578125, + "x1": 193.67999267578125, + "y1": 511.9200134277344, + "width": 39.959991455078125, + "height": 12.240020751953125 + }, { + "x0": 194.39999389648438, + "y0": 499.67999267578125, + "x1": 216.0, + "y1": 511.9200134277344, + "width": 21.600006103515625, + "height": 12.240020751953125 + }, { + "x0": 216.72000122070312, + "y0": 499.67999267578125, + "x1": 261.0, + "y1": 511.9200134277344, + "width": 44.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 261.7200012207031, + "y0": 499.67999267578125, + "x1": 292.67999267578125, + "y1": 511.9200134277344, + "width": 30.959991455078125, + "height": 12.240020751953125 + }, { + "x0": 293.3999938964844, + "y0": 499.67999267578125, + "x1": 337.67999267578125, + "y1": 511.9200134277344, + "width": 44.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 338.3999938964844, + "y0": 499.67999267578125, + "x1": 369.0, + "y1": 511.9200134277344, + "width": 30.600006103515625, + "height": 12.240020751953125 + }, { + "x0": 369.7200012207031, + "y0": 499.67999267578125, + "x1": 414.0, + "y1": 511.9200134277344, + "width": 44.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 414.7200012207031, + "y0": 499.67999267578125, + "x1": 445.67999267578125, + "y1": 511.9200134277344, + "width": 30.959991455078125, + "height": 12.240020751953125 + }, { + "x0": 446.3999938964844, + "y0": 499.67999267578125, + "x1": 499.67999267578125, + "y1": 511.9200134277344, + "width": 53.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 500.3999938964844, + "y0": 499.67999267578125, + "x1": 545.4000244140625, + "y1": 511.9200134277344, + "width": 45.000030517578125, + "height": 12.240020751953125 + }, { + "x0": 85.31999969482422, + "y0": 474.1199951171875, + "x1": 153.0, + "y1": 498.9599914550781, + "width": 67.68000030517578, + "height": 24.839996337890625 + }, { + "x0": 153.72000122070312, + "y0": 487.0799865722656, + "x1": 193.67999267578125, + "y1": 498.9599914550781, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 216.72000122070312, + "y0": 487.0799865722656, + "x1": 261.0, + "y1": 498.9599914550781, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 261.7200012207031, + "y0": 487.0799865722656, + "x1": 292.67999267578125, + "y1": 498.9599914550781, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 293.3999938964844, + "y0": 487.0799865722656, + "x1": 337.67999267578125, + "y1": 498.9599914550781, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 338.3999938964844, + "y0": 487.0799865722656, + "x1": 369.0, + "y1": 498.9599914550781, + "width": 30.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 369.7200012207031, + "y0": 487.0799865722656, + "x1": 414.0, + "y1": 498.9599914550781, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 414.7200012207031, + "y0": 487.0799865722656, + "x1": 445.67999267578125, + "y1": 498.9599914550781, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 446.3999938964844, + "y0": 487.0799865722656, + "x1": 499.67999267578125, + "y1": 498.9599914550781, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 500.3999938964844, + "y0": 487.0799865722656, + "x1": 545.4000244140625, + "y1": 498.9599914550781, + "width": 45.000030517578125, + "height": 11.8800048828125 + }, { + "x0": 153.72000122070312, + "y0": 474.1199951171875, + "x1": 193.67999267578125, + "y1": 486.3599853515625, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 474.1199951171875, + "x1": 216.0, + "y1": 486.3599853515625, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 474.1199951171875, + "x1": 261.0, + "y1": 486.3599853515625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 474.1199951171875, + "x1": 292.67999267578125, + "y1": 486.3599853515625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 474.1199951171875, + "x1": 337.67999267578125, + "y1": 486.3599853515625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 474.1199951171875, + "x1": 369.0, + "y1": 486.3599853515625, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 474.1199951171875, + "x1": 414.0, + "y1": 486.3599853515625, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 474.1199951171875, + "x1": 445.67999267578125, + "y1": 486.3599853515625, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 474.1199951171875, + "x1": 499.67999267578125, + "y1": 486.3599853515625, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 474.1199951171875, + "x1": 545.4000244140625, + "y1": 486.3599853515625, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 448.55999755859375, + "x1": 153.0, + "y1": 473.3999938964844, + "width": 67.68000030517578, + "height": 24.839996337890625 + }, { + "x0": 153.72000122070312, + "y0": 461.1600036621094, + "x1": 193.67999267578125, + "y1": 473.3999938964844, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 461.1600036621094, + "x1": 216.0, + "y1": 473.3999938964844, + "width": 21.600006103515625, + "height": 12.239990234375 + }, { + "x0": 216.72000122070312, + "y0": 461.1600036621094, + "x1": 261.0, + "y1": 473.3999938964844, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 461.1600036621094, + "x1": 292.67999267578125, + "y1": 473.3999938964844, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 461.1600036621094, + "x1": 337.67999267578125, + "y1": 473.3999938964844, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 461.1600036621094, + "x1": 369.0, + "y1": 473.3999938964844, + "width": 30.600006103515625, + "height": 12.239990234375 + }, { + "x0": 369.7200012207031, + "y0": 461.1600036621094, + "x1": 414.0, + "y1": 473.3999938964844, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 414.7200012207031, + "y0": 461.1600036621094, + "x1": 445.67999267578125, + "y1": 473.3999938964844, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 446.3999938964844, + "y0": 461.1600036621094, + "x1": 499.67999267578125, + "y1": 473.3999938964844, + "width": 53.279998779296875, + "height": 12.239990234375 + }, { + "x0": 500.3999938964844, + "y0": 461.1600036621094, + "x1": 545.4000244140625, + "y1": 473.3999938964844, + "width": 45.000030517578125, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 448.55999755859375, + "x1": 193.67999267578125, + "y1": 460.44000244140625, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 216.72000122070312, + "y0": 448.55999755859375, + "x1": 261.0, + "y1": 460.44000244140625, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 261.7200012207031, + "y0": 448.55999755859375, + "x1": 292.67999267578125, + "y1": 460.44000244140625, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 293.3999938964844, + "y0": 448.55999755859375, + "x1": 337.67999267578125, + "y1": 460.44000244140625, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 338.3999938964844, + "y0": 448.55999755859375, + "x1": 369.0, + "y1": 460.44000244140625, + "width": 30.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 369.7200012207031, + "y0": 448.55999755859375, + "x1": 414.0, + "y1": 460.44000244140625, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 414.7200012207031, + "y0": 448.55999755859375, + "x1": 445.67999267578125, + "y1": 460.44000244140625, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 446.3999938964844, + "y0": 448.55999755859375, + "x1": 499.67999267578125, + "y1": 460.44000244140625, + "width": 53.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 500.3999938964844, + "y0": 448.55999755859375, + "x1": 545.4000244140625, + "y1": 460.44000244140625, + "width": 45.000030517578125, + "height": 11.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 22, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 694.4400024414062, + "x1": 549.0, + "y1": 718.9199829101562, + "width": 463.6800003051758, + "height": 24.47998046875 + }, { + "x0": 85.31999969482422, + "y0": 671.4000244140625, + "x1": 153.0, + "y1": 693.719970703125, + "width": 67.68000030517578, + "height": 22.3199462890625 + }, { + "x0": 153.72000122070312, + "y0": 671.4000244140625, + "x1": 184.67999267578125, + "y1": 693.719970703125, + "width": 30.959991455078125, + "height": 22.3199462890625 + }, { + "x0": 185.39999389648438, + "y0": 671.4000244140625, + "x1": 265.67999267578125, + "y1": 693.719970703125, + "width": 80.27999877929688, + "height": 22.3199462890625 + }, { + "x0": 266.3999938964844, + "y0": 671.4000244140625, + "x1": 312.8399963378906, + "y1": 693.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 313.55999755859375, + "y0": 671.4000244140625, + "x1": 360.0, + "y1": 693.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 360.7200012207031, + "y0": 671.4000244140625, + "x1": 407.1600036621094, + "y1": 693.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 407.8800048828125, + "y0": 671.4000244140625, + "x1": 454.67999267578125, + "y1": 693.719970703125, + "width": 46.79998779296875, + "height": 22.3199462890625 + }, { + "x0": 455.3999938964844, + "y0": 671.4000244140625, + "x1": 501.8399963378906, + "y1": 693.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 502.55999755859375, + "y0": 671.4000244140625, + "x1": 549.0, + "y1": 693.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 85.31999969482422, + "y0": 623.8800048828125, + "x1": 153.0, + "y1": 669.5999755859375, + "width": 67.68000030517578, + "height": 45.719970703125 + }, { + "x0": 153.72000122070312, + "y0": 647.280029296875, + "x1": 184.67999267578125, + "y1": 669.5999755859375, + "width": 30.959991455078125, + "height": 22.3199462890625 + }, { + "x0": 185.39999389648438, + "y0": 647.280029296875, + "x1": 265.67999267578125, + "y1": 669.5999755859375, + "width": 80.27999877929688, + "height": 22.3199462890625 + }, { + "x0": 266.3999938964844, + "y0": 647.280029296875, + "x1": 312.8399963378906, + "y1": 669.5999755859375, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 313.55999755859375, + "y0": 647.280029296875, + "x1": 360.0, + "y1": 669.5999755859375, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 360.7200012207031, + "y0": 647.280029296875, + "x1": 407.1600036621094, + "y1": 669.5999755859375, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 407.8800048828125, + "y0": 647.280029296875, + "x1": 454.67999267578125, + "y1": 669.5999755859375, + "width": 46.79998779296875, + "height": 22.3199462890625 + }, { + "x0": 455.3999938964844, + "y0": 647.280029296875, + "x1": 501.8399963378906, + "y1": 669.5999755859375, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 502.55999755859375, + "y0": 647.280029296875, + "x1": 549.0, + "y1": 669.5999755859375, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 153.72000122070312, + "y0": 623.8800048828125, + "x1": 184.67999267578125, + "y1": 646.5599975585938, + "width": 30.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 185.39999389648438, + "y0": 623.8800048828125, + "x1": 265.67999267578125, + "y1": 646.5599975585938, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 266.3999938964844, + "y0": 623.8800048828125, + "x1": 312.8399963378906, + "y1": 646.5599975585938, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 313.55999755859375, + "y0": 623.8800048828125, + "x1": 360.0, + "y1": 646.5599975585938, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 360.7200012207031, + "y0": 623.8800048828125, + "x1": 407.1600036621094, + "y1": 646.5599975585938, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 407.8800048828125, + "y0": 623.8800048828125, + "x1": 454.67999267578125, + "y1": 646.5599975585938, + "width": 46.79998779296875, + "height": 22.67999267578125 + }, { + "x0": 455.3999938964844, + "y0": 623.8800048828125, + "x1": 501.8399963378906, + "y1": 646.5599975585938, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 502.55999755859375, + "y0": 623.8800048828125, + "x1": 549.0, + "y1": 646.5599975585938, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 85.31999969482422, + "y0": 577.4400024414062, + "x1": 153.0, + "y1": 623.1600341796875, + "width": 67.68000030517578, + "height": 45.72003173828125 + }, { + "x0": 153.72000122070312, + "y0": 600.8399658203125, + "x1": 184.67999267578125, + "y1": 623.1600341796875, + "width": 30.959991455078125, + "height": 22.320068359375 + }, { + "x0": 185.39999389648438, + "y0": 600.8399658203125, + "x1": 265.67999267578125, + "y1": 623.1600341796875, + "width": 80.27999877929688, + "height": 22.320068359375 + }, { + "x0": 266.3999938964844, + "y0": 600.8399658203125, + "x1": 312.8399963378906, + "y1": 623.1600341796875, + "width": 46.44000244140625, + "height": 22.320068359375 + }, { + "x0": 313.55999755859375, + "y0": 600.8399658203125, + "x1": 360.0, + "y1": 623.1600341796875, + "width": 46.44000244140625, + "height": 22.320068359375 + }, { + "x0": 360.7200012207031, + "y0": 600.8399658203125, + "x1": 407.1600036621094, + "y1": 623.1600341796875, + "width": 46.44000244140625, + "height": 22.320068359375 + }, { + "x0": 407.8800048828125, + "y0": 600.8399658203125, + "x1": 454.67999267578125, + "y1": 623.1600341796875, + "width": 46.79998779296875, + "height": 22.320068359375 + }, { + "x0": 455.3999938964844, + "y0": 600.8399658203125, + "x1": 501.8399963378906, + "y1": 623.1600341796875, + "width": 46.44000244140625, + "height": 22.320068359375 + }, { + "x0": 502.55999755859375, + "y0": 600.8399658203125, + "x1": 549.0, + "y1": 623.1600341796875, + "width": 46.44000244140625, + "height": 22.320068359375 + }, { + "x0": 153.72000122070312, + "y0": 577.4400024414062, + "x1": 184.67999267578125, + "y1": 600.1199951171875, + "width": 30.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 185.39999389648438, + "y0": 577.4400024414062, + "x1": 265.67999267578125, + "y1": 600.1199951171875, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 266.3999938964844, + "y0": 577.4400024414062, + "x1": 312.8399963378906, + "y1": 600.1199951171875, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 313.55999755859375, + "y0": 577.4400024414062, + "x1": 360.0, + "y1": 600.1199951171875, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 360.7200012207031, + "y0": 577.4400024414062, + "x1": 407.1600036621094, + "y1": 600.1199951171875, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 407.8800048828125, + "y0": 577.4400024414062, + "x1": 454.67999267578125, + "y1": 600.1199951171875, + "width": 46.79998779296875, + "height": 22.67999267578125 + }, { + "x0": 455.3999938964844, + "y0": 577.4400024414062, + "x1": 501.8399963378906, + "y1": 600.1199951171875, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 502.55999755859375, + "y0": 577.4400024414062, + "x1": 549.0, + "y1": 600.1199951171875, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 85.31999969482422, + "y0": 531.0, + "x1": 153.0, + "y1": 576.719970703125, + "width": 67.68000030517578, + "height": 45.719970703125 + }, { + "x0": 153.72000122070312, + "y0": 554.4000244140625, + "x1": 184.67999267578125, + "y1": 576.719970703125, + "width": 30.959991455078125, + "height": 22.3199462890625 + }, { + "x0": 185.39999389648438, + "y0": 554.4000244140625, + "x1": 265.67999267578125, + "y1": 576.719970703125, + "width": 80.27999877929688, + "height": 22.3199462890625 + }, { + "x0": 266.3999938964844, + "y0": 554.4000244140625, + "x1": 312.8399963378906, + "y1": 576.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 313.55999755859375, + "y0": 554.4000244140625, + "x1": 360.0, + "y1": 576.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 360.7200012207031, + "y0": 554.4000244140625, + "x1": 407.1600036621094, + "y1": 576.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 407.8800048828125, + "y0": 554.4000244140625, + "x1": 454.67999267578125, + "y1": 576.719970703125, + "width": 46.79998779296875, + "height": 22.3199462890625 + }, { + "x0": 455.3999938964844, + "y0": 554.4000244140625, + "x1": 501.8399963378906, + "y1": 576.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 502.55999755859375, + "y0": 554.4000244140625, + "x1": 549.0, + "y1": 576.719970703125, + "width": 46.44000244140625, + "height": 22.3199462890625 + }, { + "x0": 153.72000122070312, + "y0": 531.0, + "x1": 184.67999267578125, + "y1": 553.6799926757812, + "width": 30.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 185.39999389648438, + "y0": 531.0, + "x1": 265.67999267578125, + "y1": 553.6799926757812, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 266.3999938964844, + "y0": 531.0, + "x1": 312.8399963378906, + "y1": 553.6799926757812, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 313.55999755859375, + "y0": 531.0, + "x1": 360.0, + "y1": 553.6799926757812, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 360.7200012207031, + "y0": 531.0, + "x1": 407.1600036621094, + "y1": 553.6799926757812, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 407.8800048828125, + "y0": 531.0, + "x1": 454.67999267578125, + "y1": 553.6799926757812, + "width": 46.79998779296875, + "height": 22.67999267578125 + }, { + "x0": 455.3999938964844, + "y0": 531.0, + "x1": 501.8399963378906, + "y1": 553.6799926757812, + "width": 46.44000244140625, + "height": 22.67999267578125 + }, { + "x0": 502.55999755859375, + "y0": 531.0, + "x1": 549.0, + "y1": 553.6799926757812, + "width": 46.44000244140625, + "height": 22.67999267578125 + } + ] + }, { + "pageInfo": { + "number": 23, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 85.31999969482422, + "y0": 705.5999755859375, + "x1": 545.4000244140625, + "y1": 718.9199829101562, + "width": 460.0800247192383, + "height": 13.32000732421875 + }, { + "x0": 85.31999969482422, + "y0": 657.3599853515625, + "x1": 153.0, + "y1": 704.8800048828125, + "width": 67.68000030517578, + "height": 47.52001953125 + }, { + "x0": 153.72000122070312, + "y0": 672.1199951171875, + "x1": 211.67999267578125, + "y1": 704.8800048828125, + "width": 57.959991455078125, + "height": 32.760009765625 + }, { + "x0": 212.39999389648438, + "y0": 672.1199951171875, + "x1": 292.67999267578125, + "y1": 704.8800048828125, + "width": 80.27999877929688, + "height": 32.760009765625 + }, { + "x0": 293.3999938964844, + "y0": 657.3599853515625, + "x1": 360.0, + "y1": 704.8800048828125, + "width": 66.60000610351562, + "height": 47.52001953125 + }, { + "x0": 360.7200012207031, + "y0": 657.3599853515625, + "x1": 423.0, + "y1": 704.8800048828125, + "width": 62.279998779296875, + "height": 47.52001953125 + }, { + "x0": 423.7200012207031, + "y0": 657.3599853515625, + "x1": 545.4000244140625, + "y1": 704.8800048828125, + "width": 121.68002319335938, + "height": 47.52001953125 + }, { + "x0": 153.72000122070312, + "y0": 657.3599853515625, + "x1": 211.67999267578125, + "y1": 671.4000244140625, + "width": 57.959991455078125, + "height": 14.0400390625 + }, { + "x0": 212.39999389648438, + "y0": 657.3599853515625, + "x1": 292.67999267578125, + "y1": 671.4000244140625, + "width": 80.27999877929688, + "height": 14.0400390625 + }, { + "x0": 85.31999969482422, + "y0": 643.6799926757812, + "x1": 153.0, + "y1": 655.5599975585938, + "width": 67.68000030517578, + "height": 11.8800048828125 + }, { + "x0": 153.72000122070312, + "y0": 643.6799926757812, + "x1": 182.16000366210938, + "y1": 655.5599975585938, + "width": 28.44000244140625, + "height": 11.8800048828125 + }, { + "x0": 182.8800048828125, + "y0": 643.6799926757812, + "x1": 211.67999267578125, + "y1": 655.5599975585938, + "width": 28.79998779296875, + "height": 11.8800048828125 + }, { + "x0": 212.39999389648438, + "y0": 643.6799926757812, + "x1": 252.0, + "y1": 655.5599975585938, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 252.72000122070312, + "y0": 643.6799926757812, + "x1": 292.67999267578125, + "y1": 655.5599975585938, + "width": 39.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 293.3999938964844, + "y0": 643.6799926757812, + "x1": 360.0, + "y1": 655.5599975585938, + "width": 66.60000610351562, + "height": 11.8800048828125 + }, { + "x0": 360.7200012207031, + "y0": 643.6799926757812, + "x1": 423.0, + "y1": 655.5599975585938, + "width": 62.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 423.7200012207031, + "y0": 617.760009765625, + "x1": 545.4000244140625, + "y1": 655.5599975585938, + "width": 121.68002319335938, + "height": 37.79998779296875 + }, { + "x0": 85.31999969482422, + "y0": 630.719970703125, + "x1": 153.0, + "y1": 642.9600219726562, + "width": 67.68000030517578, + "height": 12.24005126953125 + }, { + "x0": 153.72000122070312, + "y0": 630.719970703125, + "x1": 182.16000366210938, + "y1": 642.9600219726562, + "width": 28.44000244140625, + "height": 12.24005126953125 + }, { + "x0": 182.8800048828125, + "y0": 630.719970703125, + "x1": 211.67999267578125, + "y1": 642.9600219726562, + "width": 28.79998779296875, + "height": 12.24005126953125 + }, { + "x0": 212.39999389648438, + "y0": 630.719970703125, + "x1": 252.0, + "y1": 642.9600219726562, + "width": 39.600006103515625, + "height": 12.24005126953125 + }, { + "x0": 252.72000122070312, + "y0": 630.719970703125, + "x1": 292.67999267578125, + "y1": 642.9600219726562, + "width": 39.959991455078125, + "height": 12.24005126953125 + }, { + "x0": 293.3999938964844, + "y0": 630.719970703125, + "x1": 360.0, + "y1": 642.9600219726562, + "width": 66.60000610351562, + "height": 12.24005126953125 + }, { + "x0": 360.7200012207031, + "y0": 630.719970703125, + "x1": 423.0, + "y1": 642.9600219726562, + "width": 62.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 85.31999969482422, + "y0": 617.760009765625, + "x1": 153.0, + "y1": 630.0, + "width": 67.68000030517578, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 617.760009765625, + "x1": 182.16000366210938, + "y1": 630.0, + "width": 28.44000244140625, + "height": 12.239990234375 + }, { + "x0": 182.8800048828125, + "y0": 617.760009765625, + "x1": 211.67999267578125, + "y1": 630.0, + "width": 28.79998779296875, + "height": 12.239990234375 + }, { + "x0": 212.39999389648438, + "y0": 617.760009765625, + "x1": 252.0, + "y1": 630.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 252.72000122070312, + "y0": 617.760009765625, + "x1": 292.67999267578125, + "y1": 630.0, + "width": 39.959991455078125, + "height": 12.239990234375 + }, { + "x0": 293.3999938964844, + "y0": 617.760009765625, + "x1": 360.0, + "y1": 630.0, + "width": 66.60000610351562, + "height": 12.239990234375 + }, { + "x0": 360.7200012207031, + "y0": 617.760009765625, + "x1": 423.0, + "y1": 630.0, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 430.55999755859375, + "x1": 545.4000244140625, + "y1": 443.8800048828125, + "width": 460.0800247192383, + "height": 13.32000732421875 + }, { + "x0": 85.31999969482422, + "y0": 382.32000732421875, + "x1": 153.0, + "y1": 429.8399963378906, + "width": 67.68000030517578, + "height": 47.519989013671875 + }, { + "x0": 153.72000122070312, + "y0": 397.0799865722656, + "x1": 211.67999267578125, + "y1": 429.8399963378906, + "width": 57.959991455078125, + "height": 32.760009765625 + }, { + "x0": 212.39999389648438, + "y0": 397.0799865722656, + "x1": 301.67999267578125, + "y1": 429.8399963378906, + "width": 89.27999877929688, + "height": 32.760009765625 + }, { + "x0": 302.3999938964844, + "y0": 382.32000732421875, + "x1": 364.67999267578125, + "y1": 429.8399963378906, + "width": 62.279998779296875, + "height": 47.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 382.32000732421875, + "x1": 436.67999267578125, + "y1": 429.8399963378906, + "width": 71.27999877929688, + "height": 47.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 382.32000732421875, + "x1": 545.4000244140625, + "y1": 429.8399963378906, + "width": 108.00003051757812, + "height": 47.519989013671875 + }, { + "x0": 153.72000122070312, + "y0": 382.32000732421875, + "x1": 211.67999267578125, + "y1": 396.3599853515625, + "width": 57.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 212.39999389648438, + "y0": 382.32000732421875, + "x1": 301.67999267578125, + "y1": 396.3599853515625, + "width": 89.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 85.31999969482422, + "y0": 368.2799987792969, + "x1": 153.0, + "y1": 380.5199890136719, + "width": 67.68000030517578, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 368.2799987792969, + "x1": 184.67999267578125, + "y1": 380.5199890136719, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 185.39999389648438, + "y0": 368.2799987792969, + "x1": 211.67999267578125, + "y1": 380.5199890136719, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 212.39999389648438, + "y0": 368.2799987792969, + "x1": 256.67999267578125, + "y1": 380.5199890136719, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 257.3999938964844, + "y0": 368.2799987792969, + "x1": 301.67999267578125, + "y1": 380.5199890136719, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 302.3999938964844, + "y0": 368.2799987792969, + "x1": 364.67999267578125, + "y1": 380.5199890136719, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 368.2799987792969, + "x1": 436.67999267578125, + "y1": 380.5199890136719, + "width": 71.27999877929688, + "height": 12.239990234375 + }, { + "x0": 437.3999938964844, + "y0": 316.0799865722656, + "x1": 545.4000244140625, + "y1": 380.5199890136719, + "width": 108.00003051757812, + "height": 64.44000244140625 + }, { + "x0": 85.31999969482422, + "y0": 354.6000061035156, + "x1": 153.0, + "y1": 367.55999755859375, + "width": 67.68000030517578, + "height": 12.959991455078125 + }, { + "x0": 153.72000122070312, + "y0": 354.6000061035156, + "x1": 184.67999267578125, + "y1": 367.55999755859375, + "width": 30.959991455078125, + "height": 12.959991455078125 + }, { + "x0": 185.39999389648438, + "y0": 354.6000061035156, + "x1": 211.67999267578125, + "y1": 367.55999755859375, + "width": 26.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 212.39999389648438, + "y0": 354.6000061035156, + "x1": 256.67999267578125, + "y1": 367.55999755859375, + "width": 44.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 257.3999938964844, + "y0": 354.6000061035156, + "x1": 301.67999267578125, + "y1": 367.55999755859375, + "width": 44.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 302.3999938964844, + "y0": 354.6000061035156, + "x1": 364.67999267578125, + "y1": 367.55999755859375, + "width": 62.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 365.3999938964844, + "y0": 354.6000061035156, + "x1": 436.67999267578125, + "y1": 367.55999755859375, + "width": 71.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 85.31999969482422, + "y0": 341.6400146484375, + "x1": 153.0, + "y1": 353.8800048828125, + "width": 67.68000030517578, + "height": 12.239990234375 + }, { + "x0": 153.72000122070312, + "y0": 341.6400146484375, + "x1": 184.67999267578125, + "y1": 353.8800048828125, + "width": 30.959991455078125, + "height": 12.239990234375 + }, { + "x0": 185.39999389648438, + "y0": 341.6400146484375, + "x1": 211.67999267578125, + "y1": 353.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 212.39999389648438, + "y0": 341.6400146484375, + "x1": 256.67999267578125, + "y1": 353.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 257.3999938964844, + "y0": 341.6400146484375, + "x1": 301.67999267578125, + "y1": 353.8800048828125, + "width": 44.279998779296875, + "height": 12.239990234375 + }, { + "x0": 302.3999938964844, + "y0": 341.6400146484375, + "x1": 364.67999267578125, + "y1": 353.8800048828125, + "width": 62.279998779296875, + "height": 12.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 341.6400146484375, + "x1": 436.67999267578125, + "y1": 353.8800048828125, + "width": 71.27999877929688, + "height": 12.239990234375 + }, { + "x0": 85.31999969482422, + "y0": 328.67999267578125, + "x1": 153.0, + "y1": 340.9200134277344, + "width": 67.68000030517578, + "height": 12.240020751953125 + }, { + "x0": 153.72000122070312, + "y0": 328.67999267578125, + "x1": 184.67999267578125, + "y1": 340.9200134277344, + "width": 30.959991455078125, + "height": 12.240020751953125 + }, { + "x0": 185.39999389648438, + "y0": 328.67999267578125, + "x1": 211.67999267578125, + "y1": 340.9200134277344, + "width": 26.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 212.39999389648438, + "y0": 328.67999267578125, + "x1": 256.67999267578125, + "y1": 340.9200134277344, + "width": 44.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 257.3999938964844, + "y0": 328.67999267578125, + "x1": 301.67999267578125, + "y1": 340.9200134277344, + "width": 44.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 302.3999938964844, + "y0": 328.67999267578125, + "x1": 364.67999267578125, + "y1": 340.9200134277344, + "width": 62.279998779296875, + "height": 12.240020751953125 + }, { + "x0": 365.3999938964844, + "y0": 328.67999267578125, + "x1": 436.67999267578125, + "y1": 340.9200134277344, + "width": 71.27999877929688, + "height": 12.240020751953125 + }, { + "x0": 85.31999969482422, + "y0": 316.0799865722656, + "x1": 153.0, + "y1": 327.9599914550781, + "width": 67.68000030517578, + "height": 11.8800048828125 + }, { + "x0": 153.72000122070312, + "y0": 316.0799865722656, + "x1": 184.67999267578125, + "y1": 327.9599914550781, + "width": 30.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 185.39999389648438, + "y0": 316.0799865722656, + "x1": 211.67999267578125, + "y1": 327.9599914550781, + "width": 26.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 212.39999389648438, + "y0": 316.0799865722656, + "x1": 256.67999267578125, + "y1": 327.9599914550781, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 257.3999938964844, + "y0": 316.0799865722656, + "x1": 301.67999267578125, + "y1": 327.9599914550781, + "width": 44.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 302.3999938964844, + "y0": 316.0799865722656, + "x1": 364.67999267578125, + "y1": 327.9599914550781, + "width": 62.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 365.3999938964844, + "y0": 316.0799865722656, + "x1": 436.67999267578125, + "y1": 327.9599914550781, + "width": 71.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 85.31999969482422, + "y0": 281.5199890136719, + "x1": 153.0, + "y1": 314.2799987792969, + "width": 67.68000030517578, + "height": 32.760009765625 + }, { + "x0": 153.72000122070312, + "y0": 281.5199890136719, + "x1": 184.67999267578125, + "y1": 314.2799987792969, + "width": 30.959991455078125, + "height": 32.760009765625 + }, { + "x0": 185.39999389648438, + "y0": 281.5199890136719, + "x1": 211.67999267578125, + "y1": 314.2799987792969, + "width": 26.279998779296875, + "height": 32.760009765625 + }, { + "x0": 212.39999389648438, + "y0": 281.5199890136719, + "x1": 256.67999267578125, + "y1": 314.2799987792969, + "width": 44.279998779296875, + "height": 32.760009765625 + }, { + "x0": 257.3999938964844, + "y0": 281.5199890136719, + "x1": 301.67999267578125, + "y1": 314.2799987792969, + "width": 44.279998779296875, + "height": 32.760009765625 + }, { + "x0": 302.3999938964844, + "y0": 281.5199890136719, + "x1": 364.67999267578125, + "y1": 314.2799987792969, + "width": 62.279998779296875, + "height": 32.760009765625 + }, { + "x0": 365.3999938964844, + "y0": 281.5199890136719, + "x1": 436.67999267578125, + "y1": 314.2799987792969, + "width": 71.27999877929688, + "height": 32.760009765625 + }, { + "x0": 437.3999938964844, + "y0": 281.5199890136719, + "x1": 545.4000244140625, + "y1": 314.2799987792969, + "width": 108.00003051757812, + "height": 32.760009765625 + } + ] + }, { + "pageInfo": { + "number": 27, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 72.72000122070312, + "y0": 459.3599853515625, + "x1": 130.67999267578125, + "y1": 493.91998291015625, + "width": 57.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 131.39999389648438, + "y0": 459.3599853515625, + "x1": 180.0, + "y1": 493.91998291015625, + "width": 48.600006103515625, + "height": 34.55999755859375 + }, { + "x0": 180.72000122070312, + "y0": 459.3599853515625, + "x1": 265.67999267578125, + "y1": 493.91998291015625, + "width": 84.95999145507812, + "height": 34.55999755859375 + }, { + "x0": 266.3999938964844, + "y0": 459.3599853515625, + "x1": 355.67999267578125, + "y1": 493.91998291015625, + "width": 89.27999877929688, + "height": 34.55999755859375 + }, { + "x0": 356.3999938964844, + "y0": 459.3599853515625, + "x1": 378.0, + "y1": 493.91998291015625, + "width": 21.600006103515625, + "height": 34.55999755859375 + }, { + "x0": 378.7200012207031, + "y0": 459.3599853515625, + "x1": 427.67999267578125, + "y1": 493.91998291015625, + "width": 48.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 428.3999938964844, + "y0": 459.3599853515625, + "x1": 463.67999267578125, + "y1": 493.91998291015625, + "width": 35.279998779296875, + "height": 34.55999755859375 + }, { + "x0": 464.3999938964844, + "y0": 459.3599853515625, + "x1": 513.0, + "y1": 493.91998291015625, + "width": 48.600006103515625, + "height": 34.55999755859375 + }, { + "x0": 513.719970703125, + "y0": 459.3599853515625, + "x1": 567.0, + "y1": 493.91998291015625, + "width": 53.280029296875, + "height": 34.55999755859375 + }, { + "x0": 567.719970703125, + "y0": 459.3599853515625, + "x1": 621.0, + "y1": 493.91998291015625, + "width": 53.280029296875, + "height": 34.55999755859375 + }, { + "x0": 621.719970703125, + "y0": 459.3599853515625, + "x1": 675.0, + "y1": 493.91998291015625, + "width": 53.280029296875, + "height": 34.55999755859375 + }, { + "x0": 675.719970703125, + "y0": 459.3599853515625, + "x1": 724.6799926757812, + "y1": 493.91998291015625, + "width": 48.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 72.72000122070312, + "y0": 284.3999938964844, + "x1": 130.67999267578125, + "y1": 457.55999755859375, + "width": 57.959991455078125, + "height": 173.16000366210938 + }, { + "x0": 131.39999389648438, + "y0": 284.3999938964844, + "x1": 180.0, + "y1": 457.55999755859375, + "width": 48.600006103515625, + "height": 173.16000366210938 + }, { + "x0": 180.72000122070312, + "y0": 445.67999267578125, + "x1": 265.67999267578125, + "y1": 457.55999755859375, + "width": 84.95999145507812, + "height": 11.8800048828125 + }, { + "x0": 266.3999938964844, + "y0": 445.67999267578125, + "x1": 355.67999267578125, + "y1": 457.55999755859375, + "width": 89.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 378.7200012207031, + "y0": 445.67999267578125, + "x1": 427.67999267578125, + "y1": 457.55999755859375, + "width": 48.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 428.3999938964844, + "y0": 445.67999267578125, + "x1": 463.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 464.3999938964844, + "y0": 445.67999267578125, + "x1": 513.0, + "y1": 457.55999755859375, + "width": 48.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 513.719970703125, + "y0": 445.67999267578125, + "x1": 567.0, + "y1": 457.55999755859375, + "width": 53.280029296875, + "height": 11.8800048828125 + }, { + "x0": 567.719970703125, + "y0": 445.67999267578125, + "x1": 621.0, + "y1": 457.55999755859375, + "width": 53.280029296875, + "height": 11.8800048828125 + }, { + "x0": 621.719970703125, + "y0": 445.67999267578125, + "x1": 675.0, + "y1": 457.55999755859375, + "width": 53.280029296875, + "height": 11.8800048828125 + }, { + "x0": 675.719970703125, + "y0": 445.67999267578125, + "x1": 724.6799926757812, + "y1": 457.55999755859375, + "width": 48.96002197265625, + "height": 11.8800048828125 + }, { + "x0": 180.72000122070312, + "y0": 432.3599853515625, + "x1": 265.67999267578125, + "y1": 444.96002197265625, + "width": 84.95999145507812, + "height": 12.60003662109375 + }, { + "x0": 266.3999938964844, + "y0": 432.3599853515625, + "x1": 355.67999267578125, + "y1": 444.96002197265625, + "width": 89.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 356.3999938964844, + "y0": 432.3599853515625, + "x1": 378.0, + "y1": 444.96002197265625, + "width": 21.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 378.7200012207031, + "y0": 432.3599853515625, + "x1": 427.67999267578125, + "y1": 444.96002197265625, + "width": 48.959991455078125, + "height": 12.60003662109375 + }, { + "x0": 428.3999938964844, + "y0": 432.3599853515625, + "x1": 463.67999267578125, + "y1": 444.96002197265625, + "width": 35.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 464.3999938964844, + "y0": 432.3599853515625, + "x1": 513.0, + "y1": 444.96002197265625, + "width": 48.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 513.719970703125, + "y0": 432.3599853515625, + "x1": 567.0, + "y1": 444.96002197265625, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 567.719970703125, + "y0": 432.3599853515625, + "x1": 621.0, + "y1": 444.96002197265625, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 621.719970703125, + "y0": 432.3599853515625, + "x1": 675.0, + "y1": 444.96002197265625, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 675.719970703125, + "y0": 432.3599853515625, + "x1": 724.6799926757812, + "y1": 444.96002197265625, + "width": 48.96002197265625, + "height": 12.60003662109375 + }, { + "x0": 180.72000122070312, + "y0": 419.03997802734375, + "x1": 265.67999267578125, + "y1": 431.6400146484375, + "width": 84.95999145507812, + "height": 12.60003662109375 + }, { + "x0": 266.3999938964844, + "y0": 419.03997802734375, + "x1": 355.67999267578125, + "y1": 431.6400146484375, + "width": 89.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 356.3999938964844, + "y0": 419.03997802734375, + "x1": 378.0, + "y1": 431.6400146484375, + "width": 21.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 378.7200012207031, + "y0": 419.03997802734375, + "x1": 427.67999267578125, + "y1": 431.6400146484375, + "width": 48.959991455078125, + "height": 12.60003662109375 + }, { + "x0": 428.3999938964844, + "y0": 419.03997802734375, + "x1": 463.67999267578125, + "y1": 431.6400146484375, + "width": 35.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 464.3999938964844, + "y0": 419.03997802734375, + "x1": 513.0, + "y1": 431.6400146484375, + "width": 48.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 513.719970703125, + "y0": 419.03997802734375, + "x1": 567.0, + "y1": 431.6400146484375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 567.719970703125, + "y0": 419.03997802734375, + "x1": 621.0, + "y1": 431.6400146484375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 621.719970703125, + "y0": 419.03997802734375, + "x1": 675.0, + "y1": 431.6400146484375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 675.719970703125, + "y0": 419.03997802734375, + "x1": 724.6799926757812, + "y1": 431.6400146484375, + "width": 48.96002197265625, + "height": 12.60003662109375 + }, { + "x0": 180.72000122070312, + "y0": 405.3599853515625, + "x1": 265.67999267578125, + "y1": 418.32000732421875, + "width": 84.95999145507812, + "height": 12.96002197265625 + }, { + "x0": 266.3999938964844, + "y0": 405.3599853515625, + "x1": 355.67999267578125, + "y1": 418.32000732421875, + "width": 89.27999877929688, + "height": 12.96002197265625 + }, { + "x0": 356.3999938964844, + "y0": 405.3599853515625, + "x1": 378.0, + "y1": 418.32000732421875, + "width": 21.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 378.7200012207031, + "y0": 405.3599853515625, + "x1": 427.67999267578125, + "y1": 418.32000732421875, + "width": 48.959991455078125, + "height": 12.96002197265625 + }, { + "x0": 428.3999938964844, + "y0": 405.3599853515625, + "x1": 463.67999267578125, + "y1": 418.32000732421875, + "width": 35.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 464.3999938964844, + "y0": 405.3599853515625, + "x1": 513.0, + "y1": 418.32000732421875, + "width": 48.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 513.719970703125, + "y0": 405.3599853515625, + "x1": 567.0, + "y1": 418.32000732421875, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 567.719970703125, + "y0": 405.3599853515625, + "x1": 621.0, + "y1": 418.32000732421875, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 621.719970703125, + "y0": 405.3599853515625, + "x1": 675.0, + "y1": 418.32000732421875, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 675.719970703125, + "y0": 405.3599853515625, + "x1": 724.6799926757812, + "y1": 418.32000732421875, + "width": 48.96002197265625, + "height": 12.96002197265625 + }, { + "x0": 180.72000122070312, + "y0": 392.03997802734375, + "x1": 265.67999267578125, + "y1": 404.6400146484375, + "width": 84.95999145507812, + "height": 12.60003662109375 + }, { + "x0": 266.3999938964844, + "y0": 392.03997802734375, + "x1": 355.67999267578125, + "y1": 404.6400146484375, + "width": 89.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 356.3999938964844, + "y0": 392.03997802734375, + "x1": 378.0, + "y1": 404.6400146484375, + "width": 21.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 378.7200012207031, + "y0": 392.03997802734375, + "x1": 427.67999267578125, + "y1": 404.6400146484375, + "width": 48.959991455078125, + "height": 12.60003662109375 + }, { + "x0": 428.3999938964844, + "y0": 392.03997802734375, + "x1": 463.67999267578125, + "y1": 404.6400146484375, + "width": 35.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 464.3999938964844, + "y0": 392.03997802734375, + "x1": 513.0, + "y1": 404.6400146484375, + "width": 48.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 513.719970703125, + "y0": 392.03997802734375, + "x1": 567.0, + "y1": 404.6400146484375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 567.719970703125, + "y0": 392.03997802734375, + "x1": 621.0, + "y1": 404.6400146484375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 621.719970703125, + "y0": 392.03997802734375, + "x1": 675.0, + "y1": 404.6400146484375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 675.719970703125, + "y0": 392.03997802734375, + "x1": 724.6799926757812, + "y1": 404.6400146484375, + "width": 48.96002197265625, + "height": 12.60003662109375 + }, { + "x0": 180.72000122070312, + "y0": 378.7200012207031, + "x1": 265.67999267578125, + "y1": 391.32000732421875, + "width": 84.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 266.3999938964844, + "y0": 378.7200012207031, + "x1": 355.67999267578125, + "y1": 391.32000732421875, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 356.3999938964844, + "y0": 378.7200012207031, + "x1": 378.0, + "y1": 391.32000732421875, + "width": 21.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 378.7200012207031, + "x1": 427.67999267578125, + "y1": 391.32000732421875, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 378.7200012207031, + "x1": 463.67999267578125, + "y1": 391.32000732421875, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 378.7200012207031, + "x1": 513.0, + "y1": 391.32000732421875, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 378.7200012207031, + "x1": 567.0, + "y1": 391.32000732421875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 378.7200012207031, + "x1": 621.0, + "y1": 391.32000732421875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 378.7200012207031, + "x1": 675.0, + "y1": 391.32000732421875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 675.719970703125, + "y0": 378.7200012207031, + "x1": 724.6799926757812, + "y1": 391.32000732421875, + "width": 48.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 365.03997802734375, + "x1": 265.67999267578125, + "y1": 378.0, + "width": 84.95999145507812, + "height": 12.96002197265625 + }, { + "x0": 266.3999938964844, + "y0": 365.03997802734375, + "x1": 355.67999267578125, + "y1": 378.0, + "width": 89.27999877929688, + "height": 12.96002197265625 + }, { + "x0": 356.3999938964844, + "y0": 365.03997802734375, + "x1": 378.0, + "y1": 378.0, + "width": 21.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 378.7200012207031, + "y0": 365.03997802734375, + "x1": 427.67999267578125, + "y1": 378.0, + "width": 48.959991455078125, + "height": 12.96002197265625 + }, { + "x0": 428.3999938964844, + "y0": 365.03997802734375, + "x1": 463.67999267578125, + "y1": 378.0, + "width": 35.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 464.3999938964844, + "y0": 365.03997802734375, + "x1": 513.0, + "y1": 378.0, + "width": 48.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 513.719970703125, + "y0": 365.03997802734375, + "x1": 567.0, + "y1": 378.0, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 567.719970703125, + "y0": 365.03997802734375, + "x1": 621.0, + "y1": 378.0, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 621.719970703125, + "y0": 365.03997802734375, + "x1": 675.0, + "y1": 378.0, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 675.719970703125, + "y0": 365.03997802734375, + "x1": 724.6799926757812, + "y1": 378.0, + "width": 48.96002197265625, + "height": 12.96002197265625 + }, { + "x0": 180.72000122070312, + "y0": 351.7200012207031, + "x1": 265.67999267578125, + "y1": 364.32000732421875, + "width": 84.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 266.3999938964844, + "y0": 351.7200012207031, + "x1": 355.67999267578125, + "y1": 364.32000732421875, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 356.3999938964844, + "y0": 351.7200012207031, + "x1": 378.0, + "y1": 364.32000732421875, + "width": 21.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 351.7200012207031, + "x1": 427.67999267578125, + "y1": 364.32000732421875, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 351.7200012207031, + "x1": 463.67999267578125, + "y1": 364.32000732421875, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 351.7200012207031, + "x1": 513.0, + "y1": 364.32000732421875, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 351.7200012207031, + "x1": 567.0, + "y1": 364.32000732421875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 351.7200012207031, + "x1": 621.0, + "y1": 364.32000732421875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 351.7200012207031, + "x1": 675.0, + "y1": 364.32000732421875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 675.719970703125, + "y0": 351.7200012207031, + "x1": 724.6799926757812, + "y1": 364.32000732421875, + "width": 48.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 338.3999938964844, + "x1": 265.67999267578125, + "y1": 351.0, + "width": 84.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 266.3999938964844, + "y0": 338.3999938964844, + "x1": 355.67999267578125, + "y1": 351.0, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 356.3999938964844, + "y0": 338.3999938964844, + "x1": 378.0, + "y1": 351.0, + "width": 21.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 338.3999938964844, + "x1": 427.67999267578125, + "y1": 351.0, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 338.3999938964844, + "x1": 463.67999267578125, + "y1": 351.0, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 338.3999938964844, + "x1": 513.0, + "y1": 351.0, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 338.3999938964844, + "x1": 567.0, + "y1": 351.0, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 338.3999938964844, + "x1": 621.0, + "y1": 351.0, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 338.3999938964844, + "x1": 675.0, + "y1": 351.0, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 675.719970703125, + "y0": 338.3999938964844, + "x1": 724.6799926757812, + "y1": 351.0, + "width": 48.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 324.7200012207031, + "x1": 265.67999267578125, + "y1": 337.67999267578125, + "width": 84.95999145507812, + "height": 12.959991455078125 + }, { + "x0": 266.3999938964844, + "y0": 324.7200012207031, + "x1": 355.67999267578125, + "y1": 337.67999267578125, + "width": 89.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 356.3999938964844, + "y0": 324.7200012207031, + "x1": 378.0, + "y1": 337.67999267578125, + "width": 21.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 378.7200012207031, + "y0": 324.7200012207031, + "x1": 427.67999267578125, + "y1": 337.67999267578125, + "width": 48.959991455078125, + "height": 12.959991455078125 + }, { + "x0": 428.3999938964844, + "y0": 324.7200012207031, + "x1": 463.67999267578125, + "y1": 337.67999267578125, + "width": 35.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 464.3999938964844, + "y0": 324.7200012207031, + "x1": 513.0, + "y1": 337.67999267578125, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 513.719970703125, + "y0": 324.7200012207031, + "x1": 567.0, + "y1": 337.67999267578125, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 567.719970703125, + "y0": 324.7200012207031, + "x1": 621.0, + "y1": 337.67999267578125, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 621.719970703125, + "y0": 324.7200012207031, + "x1": 675.0, + "y1": 337.67999267578125, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 675.719970703125, + "y0": 324.7200012207031, + "x1": 724.6799926757812, + "y1": 337.67999267578125, + "width": 48.96002197265625, + "height": 12.959991455078125 + }, { + "x0": 180.72000122070312, + "y0": 311.3999938964844, + "x1": 265.67999267578125, + "y1": 324.0, + "width": 84.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 266.3999938964844, + "y0": 311.3999938964844, + "x1": 355.67999267578125, + "y1": 324.0, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 356.3999938964844, + "y0": 311.3999938964844, + "x1": 378.0, + "y1": 324.0, + "width": 21.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 311.3999938964844, + "x1": 427.67999267578125, + "y1": 324.0, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 311.3999938964844, + "x1": 463.67999267578125, + "y1": 324.0, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 311.3999938964844, + "x1": 513.0, + "y1": 324.0, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 311.3999938964844, + "x1": 567.0, + "y1": 324.0, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 311.3999938964844, + "x1": 621.0, + "y1": 324.0, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 311.3999938964844, + "x1": 675.0, + "y1": 324.0, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 675.719970703125, + "y0": 311.3999938964844, + "x1": 724.6799926757812, + "y1": 324.0, + "width": 48.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 298.0799865722656, + "x1": 265.67999267578125, + "y1": 310.67999267578125, + "width": 84.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 266.3999938964844, + "y0": 298.0799865722656, + "x1": 355.67999267578125, + "y1": 310.67999267578125, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 356.3999938964844, + "y0": 298.0799865722656, + "x1": 378.0, + "y1": 310.67999267578125, + "width": 21.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 298.0799865722656, + "x1": 427.67999267578125, + "y1": 310.67999267578125, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 298.0799865722656, + "x1": 463.67999267578125, + "y1": 310.67999267578125, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 298.0799865722656, + "x1": 513.0, + "y1": 310.67999267578125, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 298.0799865722656, + "x1": 567.0, + "y1": 310.67999267578125, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 298.0799865722656, + "x1": 621.0, + "y1": 310.67999267578125, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 298.0799865722656, + "x1": 675.0, + "y1": 310.67999267578125, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 675.719970703125, + "y0": 298.0799865722656, + "x1": 724.6799926757812, + "y1": 310.67999267578125, + "width": 48.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 284.3999938964844, + "x1": 265.67999267578125, + "y1": 297.3599853515625, + "width": 84.95999145507812, + "height": 12.959991455078125 + }, { + "x0": 266.3999938964844, + "y0": 284.3999938964844, + "x1": 355.67999267578125, + "y1": 297.3599853515625, + "width": 89.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 356.3999938964844, + "y0": 284.3999938964844, + "x1": 378.0, + "y1": 297.3599853515625, + "width": 21.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 378.7200012207031, + "y0": 284.3999938964844, + "x1": 427.67999267578125, + "y1": 297.3599853515625, + "width": 48.959991455078125, + "height": 12.959991455078125 + }, { + "x0": 428.3999938964844, + "y0": 284.3999938964844, + "x1": 463.67999267578125, + "y1": 297.3599853515625, + "width": 35.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 464.3999938964844, + "y0": 284.3999938964844, + "x1": 513.0, + "y1": 297.3599853515625, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 513.719970703125, + "y0": 284.3999938964844, + "x1": 567.0, + "y1": 297.3599853515625, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 567.719970703125, + "y0": 284.3999938964844, + "x1": 621.0, + "y1": 297.3599853515625, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 621.719970703125, + "y0": 284.3999938964844, + "x1": 675.0, + "y1": 297.3599853515625, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 675.719970703125, + "y0": 284.3999938964844, + "x1": 724.6799926757812, + "y1": 297.3599853515625, + "width": 48.96002197265625, + "height": 12.959991455078125 + } + ] + }, { + "pageInfo": { + "number": 28, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 72.72000122070312, + "y0": 456.1199951171875, + "x1": 130.67999267578125, + "y1": 491.0400085449219, + "width": 57.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 131.39999389648438, + "y0": 456.1199951171875, + "x1": 180.0, + "y1": 491.0400085449219, + "width": 48.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 180.72000122070312, + "y0": 456.1199951171875, + "x1": 261.0, + "y1": 491.0400085449219, + "width": 80.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 261.7200012207031, + "y0": 456.1199951171875, + "x1": 351.0, + "y1": 491.0400085449219, + "width": 89.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 351.7200012207031, + "y0": 456.1199951171875, + "x1": 373.67999267578125, + "y1": 491.0400085449219, + "width": 21.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 374.3999938964844, + "y0": 456.1199951171875, + "x1": 427.67999267578125, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 428.3999938964844, + "y0": 456.1199951171875, + "x1": 463.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 464.3999938964844, + "y0": 456.1199951171875, + "x1": 513.0, + "y1": 491.0400085449219, + "width": 48.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 513.719970703125, + "y0": 456.1199951171875, + "x1": 567.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 567.719970703125, + "y0": 456.1199951171875, + "x1": 621.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 621.719970703125, + "y0": 456.1199951171875, + "x1": 679.6799926757812, + "y1": 491.0400085449219, + "width": 57.96002197265625, + "height": 34.920013427734375 + }, { + "x0": 680.4000244140625, + "y0": 456.1199951171875, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 44.27996826171875, + "height": 34.920013427734375 + }, { + "x0": 72.72000122070312, + "y0": 255.60000610351562, + "x1": 130.67999267578125, + "y1": 454.67999267578125, + "width": 57.959991455078125, + "height": 199.07998657226562 + }, { + "x0": 131.39999389648438, + "y0": 255.60000610351562, + "x1": 180.0, + "y1": 454.67999267578125, + "width": 48.600006103515625, + "height": 199.07998657226562 + }, { + "x0": 180.72000122070312, + "y0": 441.0, + "x1": 261.0, + "y1": 454.67999267578125, + "width": 80.27999877929688, + "height": 13.67999267578125 + }, { + "x0": 261.7200012207031, + "y0": 441.0, + "x1": 351.0, + "y1": 454.67999267578125, + "width": 89.27999877929688, + "height": 13.67999267578125 + }, { + "x0": 351.7200012207031, + "y0": 441.0, + "x1": 373.67999267578125, + "y1": 454.67999267578125, + "width": 21.959991455078125, + "height": 13.67999267578125 + }, { + "x0": 374.3999938964844, + "y0": 441.0, + "x1": 427.67999267578125, + "y1": 454.67999267578125, + "width": 53.279998779296875, + "height": 13.67999267578125 + }, { + "x0": 428.3999938964844, + "y0": 441.0, + "x1": 463.67999267578125, + "y1": 454.67999267578125, + "width": 35.279998779296875, + "height": 13.67999267578125 + }, { + "x0": 464.3999938964844, + "y0": 441.0, + "x1": 513.0, + "y1": 454.67999267578125, + "width": 48.600006103515625, + "height": 13.67999267578125 + }, { + "x0": 513.719970703125, + "y0": 441.0, + "x1": 567.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 13.67999267578125 + }, { + "x0": 567.719970703125, + "y0": 441.0, + "x1": 621.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 13.67999267578125 + }, { + "x0": 621.719970703125, + "y0": 441.0, + "x1": 679.6799926757812, + "y1": 454.67999267578125, + "width": 57.96002197265625, + "height": 13.67999267578125 + }, { + "x0": 680.4000244140625, + "y0": 441.0, + "x1": 724.6799926757812, + "y1": 454.67999267578125, + "width": 44.27996826171875, + "height": 13.67999267578125 + }, { + "x0": 180.72000122070312, + "y0": 425.52001953125, + "x1": 261.0, + "y1": 440.2799987792969, + "width": 80.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 261.7200012207031, + "y0": 425.52001953125, + "x1": 351.0, + "y1": 440.2799987792969, + "width": 89.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 351.7200012207031, + "y0": 425.52001953125, + "x1": 373.67999267578125, + "y1": 440.2799987792969, + "width": 21.959991455078125, + "height": 14.759979248046875 + }, { + "x0": 374.3999938964844, + "y0": 425.52001953125, + "x1": 427.67999267578125, + "y1": 440.2799987792969, + "width": 53.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 428.3999938964844, + "y0": 425.52001953125, + "x1": 463.67999267578125, + "y1": 440.2799987792969, + "width": 35.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 464.3999938964844, + "y0": 425.52001953125, + "x1": 513.0, + "y1": 440.2799987792969, + "width": 48.600006103515625, + "height": 14.759979248046875 + }, { + "x0": 513.719970703125, + "y0": 425.52001953125, + "x1": 567.0, + "y1": 440.2799987792969, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 567.719970703125, + "y0": 425.52001953125, + "x1": 621.0, + "y1": 440.2799987792969, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 621.719970703125, + "y0": 425.52001953125, + "x1": 679.6799926757812, + "y1": 440.2799987792969, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 680.4000244140625, + "y0": 425.52001953125, + "x1": 724.6799926757812, + "y1": 440.2799987792969, + "width": 44.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 180.72000122070312, + "y0": 410.03997802734375, + "x1": 261.0, + "y1": 424.79998779296875, + "width": 80.27999877929688, + "height": 14.760009765625 + }, { + "x0": 261.7200012207031, + "y0": 410.03997802734375, + "x1": 351.0, + "y1": 424.79998779296875, + "width": 89.27999877929688, + "height": 14.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 410.03997802734375, + "x1": 373.67999267578125, + "y1": 424.79998779296875, + "width": 21.959991455078125, + "height": 14.760009765625 + }, { + "x0": 374.3999938964844, + "y0": 410.03997802734375, + "x1": 427.67999267578125, + "y1": 424.79998779296875, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 410.03997802734375, + "x1": 463.67999267578125, + "y1": 424.79998779296875, + "width": 35.279998779296875, + "height": 14.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 410.03997802734375, + "x1": 513.0, + "y1": 424.79998779296875, + "width": 48.600006103515625, + "height": 14.760009765625 + }, { + "x0": 513.719970703125, + "y0": 410.03997802734375, + "x1": 567.0, + "y1": 424.79998779296875, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 567.719970703125, + "y0": 410.03997802734375, + "x1": 621.0, + "y1": 424.79998779296875, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 621.719970703125, + "y0": 410.03997802734375, + "x1": 679.6799926757812, + "y1": 424.79998779296875, + "width": 57.96002197265625, + "height": 14.760009765625 + }, { + "x0": 680.4000244140625, + "y0": 410.03997802734375, + "x1": 724.6799926757812, + "y1": 424.79998779296875, + "width": 44.27996826171875, + "height": 14.760009765625 + }, { + "x0": 180.72000122070312, + "y0": 394.55999755859375, + "x1": 261.0, + "y1": 409.32000732421875, + "width": 80.27999877929688, + "height": 14.760009765625 + }, { + "x0": 261.7200012207031, + "y0": 394.55999755859375, + "x1": 351.0, + "y1": 409.32000732421875, + "width": 89.27999877929688, + "height": 14.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 394.55999755859375, + "x1": 373.67999267578125, + "y1": 409.32000732421875, + "width": 21.959991455078125, + "height": 14.760009765625 + }, { + "x0": 374.3999938964844, + "y0": 394.55999755859375, + "x1": 427.67999267578125, + "y1": 409.32000732421875, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 394.55999755859375, + "x1": 463.67999267578125, + "y1": 409.32000732421875, + "width": 35.279998779296875, + "height": 14.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 394.55999755859375, + "x1": 513.0, + "y1": 409.32000732421875, + "width": 48.600006103515625, + "height": 14.760009765625 + }, { + "x0": 513.719970703125, + "y0": 394.55999755859375, + "x1": 567.0, + "y1": 409.32000732421875, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 567.719970703125, + "y0": 394.55999755859375, + "x1": 621.0, + "y1": 409.32000732421875, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 621.719970703125, + "y0": 394.55999755859375, + "x1": 679.6799926757812, + "y1": 409.32000732421875, + "width": 57.96002197265625, + "height": 14.760009765625 + }, { + "x0": 680.4000244140625, + "y0": 394.55999755859375, + "x1": 724.6799926757812, + "y1": 409.32000732421875, + "width": 44.27996826171875, + "height": 14.760009765625 + }, { + "x0": 180.72000122070312, + "y0": 379.08001708984375, + "x1": 261.0, + "y1": 393.8399963378906, + "width": 80.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 261.7200012207031, + "y0": 379.08001708984375, + "x1": 351.0, + "y1": 393.8399963378906, + "width": 89.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 351.7200012207031, + "y0": 379.08001708984375, + "x1": 373.67999267578125, + "y1": 393.8399963378906, + "width": 21.959991455078125, + "height": 14.759979248046875 + }, { + "x0": 374.3999938964844, + "y0": 379.08001708984375, + "x1": 427.67999267578125, + "y1": 393.8399963378906, + "width": 53.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 428.3999938964844, + "y0": 379.08001708984375, + "x1": 463.67999267578125, + "y1": 393.8399963378906, + "width": 35.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 464.3999938964844, + "y0": 379.08001708984375, + "x1": 513.0, + "y1": 393.8399963378906, + "width": 48.600006103515625, + "height": 14.759979248046875 + }, { + "x0": 513.719970703125, + "y0": 379.08001708984375, + "x1": 567.0, + "y1": 393.8399963378906, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 567.719970703125, + "y0": 379.08001708984375, + "x1": 621.0, + "y1": 393.8399963378906, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 621.719970703125, + "y0": 379.08001708984375, + "x1": 679.6799926757812, + "y1": 393.8399963378906, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 680.4000244140625, + "y0": 379.08001708984375, + "x1": 724.6799926757812, + "y1": 393.8399963378906, + "width": 44.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 180.72000122070312, + "y0": 363.6000061035156, + "x1": 261.0, + "y1": 378.3599853515625, + "width": 80.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 261.7200012207031, + "y0": 363.6000061035156, + "x1": 351.0, + "y1": 378.3599853515625, + "width": 89.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 351.7200012207031, + "y0": 363.6000061035156, + "x1": 373.67999267578125, + "y1": 378.3599853515625, + "width": 21.959991455078125, + "height": 14.759979248046875 + }, { + "x0": 374.3999938964844, + "y0": 363.6000061035156, + "x1": 427.67999267578125, + "y1": 378.3599853515625, + "width": 53.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 428.3999938964844, + "y0": 363.6000061035156, + "x1": 463.67999267578125, + "y1": 378.3599853515625, + "width": 35.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 464.3999938964844, + "y0": 363.6000061035156, + "x1": 513.0, + "y1": 378.3599853515625, + "width": 48.600006103515625, + "height": 14.759979248046875 + }, { + "x0": 513.719970703125, + "y0": 363.6000061035156, + "x1": 567.0, + "y1": 378.3599853515625, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 567.719970703125, + "y0": 363.6000061035156, + "x1": 621.0, + "y1": 378.3599853515625, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 621.719970703125, + "y0": 363.6000061035156, + "x1": 679.6799926757812, + "y1": 378.3599853515625, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 680.4000244140625, + "y0": 363.6000061035156, + "x1": 724.6799926757812, + "y1": 378.3599853515625, + "width": 44.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 180.72000122070312, + "y0": 348.1199951171875, + "x1": 261.0, + "y1": 362.8800048828125, + "width": 80.27999877929688, + "height": 14.760009765625 + }, { + "x0": 261.7200012207031, + "y0": 348.1199951171875, + "x1": 351.0, + "y1": 362.8800048828125, + "width": 89.27999877929688, + "height": 14.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 348.1199951171875, + "x1": 373.67999267578125, + "y1": 362.8800048828125, + "width": 21.959991455078125, + "height": 14.760009765625 + }, { + "x0": 374.3999938964844, + "y0": 348.1199951171875, + "x1": 427.67999267578125, + "y1": 362.8800048828125, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 348.1199951171875, + "x1": 463.67999267578125, + "y1": 362.8800048828125, + "width": 35.279998779296875, + "height": 14.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 348.1199951171875, + "x1": 513.0, + "y1": 362.8800048828125, + "width": 48.600006103515625, + "height": 14.760009765625 + }, { + "x0": 513.719970703125, + "y0": 348.1199951171875, + "x1": 567.0, + "y1": 362.8800048828125, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 567.719970703125, + "y0": 348.1199951171875, + "x1": 621.0, + "y1": 362.8800048828125, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 621.719970703125, + "y0": 348.1199951171875, + "x1": 679.6799926757812, + "y1": 362.8800048828125, + "width": 57.96002197265625, + "height": 14.760009765625 + }, { + "x0": 680.4000244140625, + "y0": 348.1199951171875, + "x1": 724.6799926757812, + "y1": 362.8800048828125, + "width": 44.27996826171875, + "height": 14.760009765625 + }, { + "x0": 180.72000122070312, + "y0": 332.6400146484375, + "x1": 261.0, + "y1": 347.3999938964844, + "width": 80.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 261.7200012207031, + "y0": 332.6400146484375, + "x1": 351.0, + "y1": 347.3999938964844, + "width": 89.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 351.7200012207031, + "y0": 332.6400146484375, + "x1": 373.67999267578125, + "y1": 347.3999938964844, + "width": 21.959991455078125, + "height": 14.759979248046875 + }, { + "x0": 374.3999938964844, + "y0": 332.6400146484375, + "x1": 427.67999267578125, + "y1": 347.3999938964844, + "width": 53.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 428.3999938964844, + "y0": 332.6400146484375, + "x1": 463.67999267578125, + "y1": 347.3999938964844, + "width": 35.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 464.3999938964844, + "y0": 332.6400146484375, + "x1": 513.0, + "y1": 347.3999938964844, + "width": 48.600006103515625, + "height": 14.759979248046875 + }, { + "x0": 513.719970703125, + "y0": 332.6400146484375, + "x1": 567.0, + "y1": 347.3999938964844, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 567.719970703125, + "y0": 332.6400146484375, + "x1": 621.0, + "y1": 347.3999938964844, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 621.719970703125, + "y0": 332.6400146484375, + "x1": 679.6799926757812, + "y1": 347.3999938964844, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 680.4000244140625, + "y0": 332.6400146484375, + "x1": 724.6799926757812, + "y1": 347.3999938964844, + "width": 44.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 180.72000122070312, + "y0": 317.1600036621094, + "x1": 261.0, + "y1": 331.9200134277344, + "width": 80.27999877929688, + "height": 14.760009765625 + }, { + "x0": 261.7200012207031, + "y0": 317.1600036621094, + "x1": 351.0, + "y1": 331.9200134277344, + "width": 89.27999877929688, + "height": 14.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 317.1600036621094, + "x1": 373.67999267578125, + "y1": 331.9200134277344, + "width": 21.959991455078125, + "height": 14.760009765625 + }, { + "x0": 374.3999938964844, + "y0": 317.1600036621094, + "x1": 427.67999267578125, + "y1": 331.9200134277344, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 317.1600036621094, + "x1": 463.67999267578125, + "y1": 331.9200134277344, + "width": 35.279998779296875, + "height": 14.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 317.1600036621094, + "x1": 513.0, + "y1": 331.9200134277344, + "width": 48.600006103515625, + "height": 14.760009765625 + }, { + "x0": 513.719970703125, + "y0": 317.1600036621094, + "x1": 567.0, + "y1": 331.9200134277344, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 567.719970703125, + "y0": 317.1600036621094, + "x1": 621.0, + "y1": 331.9200134277344, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 621.719970703125, + "y0": 317.1600036621094, + "x1": 679.6799926757812, + "y1": 331.9200134277344, + "width": 57.96002197265625, + "height": 14.760009765625 + }, { + "x0": 680.4000244140625, + "y0": 317.1600036621094, + "x1": 724.6799926757812, + "y1": 331.9200134277344, + "width": 44.27996826171875, + "height": 14.760009765625 + }, { + "x0": 180.72000122070312, + "y0": 301.67999267578125, + "x1": 261.0, + "y1": 316.44000244140625, + "width": 80.27999877929688, + "height": 14.760009765625 + }, { + "x0": 261.7200012207031, + "y0": 301.67999267578125, + "x1": 351.0, + "y1": 316.44000244140625, + "width": 89.27999877929688, + "height": 14.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 301.67999267578125, + "x1": 373.67999267578125, + "y1": 316.44000244140625, + "width": 21.959991455078125, + "height": 14.760009765625 + }, { + "x0": 374.3999938964844, + "y0": 301.67999267578125, + "x1": 427.67999267578125, + "y1": 316.44000244140625, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 301.67999267578125, + "x1": 463.67999267578125, + "y1": 316.44000244140625, + "width": 35.279998779296875, + "height": 14.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 301.67999267578125, + "x1": 513.0, + "y1": 316.44000244140625, + "width": 48.600006103515625, + "height": 14.760009765625 + }, { + "x0": 513.719970703125, + "y0": 301.67999267578125, + "x1": 567.0, + "y1": 316.44000244140625, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 567.719970703125, + "y0": 301.67999267578125, + "x1": 621.0, + "y1": 316.44000244140625, + "width": 53.280029296875, + "height": 14.760009765625 + }, { + "x0": 621.719970703125, + "y0": 301.67999267578125, + "x1": 679.6799926757812, + "y1": 316.44000244140625, + "width": 57.96002197265625, + "height": 14.760009765625 + }, { + "x0": 680.4000244140625, + "y0": 301.67999267578125, + "x1": 724.6799926757812, + "y1": 316.44000244140625, + "width": 44.27996826171875, + "height": 14.760009765625 + }, { + "x0": 180.72000122070312, + "y0": 286.20001220703125, + "x1": 261.0, + "y1": 300.9599914550781, + "width": 80.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 261.7200012207031, + "y0": 286.20001220703125, + "x1": 351.0, + "y1": 300.9599914550781, + "width": 89.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 351.7200012207031, + "y0": 286.20001220703125, + "x1": 373.67999267578125, + "y1": 300.9599914550781, + "width": 21.959991455078125, + "height": 14.759979248046875 + }, { + "x0": 374.3999938964844, + "y0": 286.20001220703125, + "x1": 427.67999267578125, + "y1": 300.9599914550781, + "width": 53.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 428.3999938964844, + "y0": 286.20001220703125, + "x1": 463.67999267578125, + "y1": 300.9599914550781, + "width": 35.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 464.3999938964844, + "y0": 286.20001220703125, + "x1": 513.0, + "y1": 300.9599914550781, + "width": 48.600006103515625, + "height": 14.759979248046875 + }, { + "x0": 513.719970703125, + "y0": 286.20001220703125, + "x1": 567.0, + "y1": 300.9599914550781, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 567.719970703125, + "y0": 286.20001220703125, + "x1": 621.0, + "y1": 300.9599914550781, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 621.719970703125, + "y0": 286.20001220703125, + "x1": 679.6799926757812, + "y1": 300.9599914550781, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 680.4000244140625, + "y0": 286.20001220703125, + "x1": 724.6799926757812, + "y1": 300.9599914550781, + "width": 44.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 180.72000122070312, + "y0": 271.0799865722656, + "x1": 261.0, + "y1": 285.4800109863281, + "width": 80.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 261.7200012207031, + "y0": 271.0799865722656, + "x1": 351.0, + "y1": 285.4800109863281, + "width": 89.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 351.7200012207031, + "y0": 271.0799865722656, + "x1": 373.67999267578125, + "y1": 285.4800109863281, + "width": 21.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 374.3999938964844, + "y0": 271.0799865722656, + "x1": 427.67999267578125, + "y1": 285.4800109863281, + "width": 53.279998779296875, + "height": 14.4000244140625 + }, { + "x0": 428.3999938964844, + "y0": 271.0799865722656, + "x1": 463.67999267578125, + "y1": 285.4800109863281, + "width": 35.279998779296875, + "height": 14.4000244140625 + }, { + "x0": 464.3999938964844, + "y0": 271.0799865722656, + "x1": 513.0, + "y1": 285.4800109863281, + "width": 48.600006103515625, + "height": 14.4000244140625 + }, { + "x0": 513.719970703125, + "y0": 271.0799865722656, + "x1": 567.0, + "y1": 285.4800109863281, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 567.719970703125, + "y0": 271.0799865722656, + "x1": 621.0, + "y1": 285.4800109863281, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 621.719970703125, + "y0": 271.0799865722656, + "x1": 679.6799926757812, + "y1": 285.4800109863281, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 680.4000244140625, + "y0": 271.0799865722656, + "x1": 724.6799926757812, + "y1": 285.4800109863281, + "width": 44.27996826171875, + "height": 14.4000244140625 + }, { + "x0": 180.72000122070312, + "y0": 255.60000610351562, + "x1": 261.0, + "y1": 270.3599853515625, + "width": 80.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 261.7200012207031, + "y0": 255.60000610351562, + "x1": 351.0, + "y1": 270.3599853515625, + "width": 89.27999877929688, + "height": 14.759979248046875 + }, { + "x0": 351.7200012207031, + "y0": 255.60000610351562, + "x1": 373.67999267578125, + "y1": 270.3599853515625, + "width": 21.959991455078125, + "height": 14.759979248046875 + }, { + "x0": 374.3999938964844, + "y0": 255.60000610351562, + "x1": 427.67999267578125, + "y1": 270.3599853515625, + "width": 53.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 428.3999938964844, + "y0": 255.60000610351562, + "x1": 463.67999267578125, + "y1": 270.3599853515625, + "width": 35.279998779296875, + "height": 14.759979248046875 + }, { + "x0": 464.3999938964844, + "y0": 255.60000610351562, + "x1": 513.0, + "y1": 270.3599853515625, + "width": 48.600006103515625, + "height": 14.759979248046875 + }, { + "x0": 513.719970703125, + "y0": 255.60000610351562, + "x1": 567.0, + "y1": 270.3599853515625, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 567.719970703125, + "y0": 255.60000610351562, + "x1": 621.0, + "y1": 270.3599853515625, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 621.719970703125, + "y0": 255.60000610351562, + "x1": 679.6799926757812, + "y1": 270.3599853515625, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 680.4000244140625, + "y0": 255.60000610351562, + "x1": 724.6799926757812, + "y1": 270.3599853515625, + "width": 44.27996826171875, + "height": 14.759979248046875 + } + ] + }, { + "pageInfo": { + "number": 29, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 72.72000122070312, + "y0": 456.1199951171875, + "x1": 130.67999267578125, + "y1": 491.0400085449219, + "width": 57.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 131.39999389648438, + "y0": 456.1199951171875, + "x1": 180.0, + "y1": 491.0400085449219, + "width": 48.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 180.72000122070312, + "y0": 456.1199951171875, + "x1": 261.0, + "y1": 491.0400085449219, + "width": 80.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 261.7200012207031, + "y0": 456.1199951171875, + "x1": 351.0, + "y1": 491.0400085449219, + "width": 89.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 351.7200012207031, + "y0": 456.1199951171875, + "x1": 378.0, + "y1": 491.0400085449219, + "width": 26.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 378.7200012207031, + "y0": 456.1199951171875, + "x1": 427.67999267578125, + "y1": 491.0400085449219, + "width": 48.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 428.3999938964844, + "y0": 456.1199951171875, + "x1": 463.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 464.3999938964844, + "y0": 456.1199951171875, + "x1": 513.0, + "y1": 491.0400085449219, + "width": 48.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 513.719970703125, + "y0": 456.1199951171875, + "x1": 567.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 567.719970703125, + "y0": 456.1199951171875, + "x1": 621.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 621.719970703125, + "y0": 456.1199951171875, + "x1": 679.6799926757812, + "y1": 491.0400085449219, + "width": 57.96002197265625, + "height": 34.920013427734375 + }, { + "x0": 680.4000244140625, + "y0": 456.1199951171875, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 44.27996826171875, + "height": 34.920013427734375 + }, { + "x0": 72.72000122070312, + "y0": 281.5199890136719, + "x1": 130.67999267578125, + "y1": 454.67999267578125, + "width": 57.959991455078125, + "height": 173.16000366210938 + }, { + "x0": 131.39999389648438, + "y0": 281.5199890136719, + "x1": 180.0, + "y1": 454.67999267578125, + "width": 48.600006103515625, + "height": 173.16000366210938 + }, { + "x0": 180.72000122070312, + "y0": 442.79998779296875, + "x1": 261.0, + "y1": 454.67999267578125, + "width": 80.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 261.7200012207031, + "y0": 442.79998779296875, + "x1": 351.0, + "y1": 454.67999267578125, + "width": 89.27999877929688, + "height": 11.8800048828125 + }, { + "x0": 351.7200012207031, + "y0": 442.79998779296875, + "x1": 378.0, + "y1": 454.67999267578125, + "width": 26.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 378.7200012207031, + "y0": 442.79998779296875, + "x1": 427.67999267578125, + "y1": 454.67999267578125, + "width": 48.959991455078125, + "height": 11.8800048828125 + }, { + "x0": 428.3999938964844, + "y0": 442.79998779296875, + "x1": 463.67999267578125, + "y1": 454.67999267578125, + "width": 35.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 464.3999938964844, + "y0": 442.79998779296875, + "x1": 513.0, + "y1": 454.67999267578125, + "width": 48.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 513.719970703125, + "y0": 442.79998779296875, + "x1": 567.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 11.8800048828125 + }, { + "x0": 567.719970703125, + "y0": 442.79998779296875, + "x1": 621.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 11.8800048828125 + }, { + "x0": 621.719970703125, + "y0": 442.79998779296875, + "x1": 679.6799926757812, + "y1": 454.67999267578125, + "width": 57.96002197265625, + "height": 11.8800048828125 + }, { + "x0": 680.4000244140625, + "y0": 442.79998779296875, + "x1": 724.6799926757812, + "y1": 454.67999267578125, + "width": 44.27996826171875, + "height": 11.8800048828125 + }, { + "x0": 180.72000122070312, + "y0": 429.47998046875, + "x1": 261.0, + "y1": 442.08001708984375, + "width": 80.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 261.7200012207031, + "y0": 429.47998046875, + "x1": 351.0, + "y1": 442.08001708984375, + "width": 89.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 351.7200012207031, + "y0": 429.47998046875, + "x1": 378.0, + "y1": 442.08001708984375, + "width": 26.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 378.7200012207031, + "y0": 429.47998046875, + "x1": 427.67999267578125, + "y1": 442.08001708984375, + "width": 48.959991455078125, + "height": 12.60003662109375 + }, { + "x0": 428.3999938964844, + "y0": 429.47998046875, + "x1": 463.67999267578125, + "y1": 442.08001708984375, + "width": 35.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 464.3999938964844, + "y0": 429.47998046875, + "x1": 513.0, + "y1": 442.08001708984375, + "width": 48.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 513.719970703125, + "y0": 429.47998046875, + "x1": 567.0, + "y1": 442.08001708984375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 567.719970703125, + "y0": 429.47998046875, + "x1": 621.0, + "y1": 442.08001708984375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 621.719970703125, + "y0": 429.47998046875, + "x1": 679.6799926757812, + "y1": 442.08001708984375, + "width": 57.96002197265625, + "height": 12.60003662109375 + }, { + "x0": 680.4000244140625, + "y0": 429.47998046875, + "x1": 724.6799926757812, + "y1": 442.08001708984375, + "width": 44.27996826171875, + "height": 12.60003662109375 + }, { + "x0": 180.72000122070312, + "y0": 415.79998779296875, + "x1": 261.0, + "y1": 428.760009765625, + "width": 80.27999877929688, + "height": 12.96002197265625 + }, { + "x0": 261.7200012207031, + "y0": 415.79998779296875, + "x1": 351.0, + "y1": 428.760009765625, + "width": 89.27999877929688, + "height": 12.96002197265625 + }, { + "x0": 351.7200012207031, + "y0": 415.79998779296875, + "x1": 378.0, + "y1": 428.760009765625, + "width": 26.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 378.7200012207031, + "y0": 415.79998779296875, + "x1": 427.67999267578125, + "y1": 428.760009765625, + "width": 48.959991455078125, + "height": 12.96002197265625 + }, { + "x0": 428.3999938964844, + "y0": 415.79998779296875, + "x1": 463.67999267578125, + "y1": 428.760009765625, + "width": 35.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 464.3999938964844, + "y0": 415.79998779296875, + "x1": 513.0, + "y1": 428.760009765625, + "width": 48.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 513.719970703125, + "y0": 415.79998779296875, + "x1": 567.0, + "y1": 428.760009765625, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 567.719970703125, + "y0": 415.79998779296875, + "x1": 621.0, + "y1": 428.760009765625, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 621.719970703125, + "y0": 415.79998779296875, + "x1": 679.6799926757812, + "y1": 428.760009765625, + "width": 57.96002197265625, + "height": 12.96002197265625 + }, { + "x0": 680.4000244140625, + "y0": 415.79998779296875, + "x1": 724.6799926757812, + "y1": 428.760009765625, + "width": 44.27996826171875, + "height": 12.96002197265625 + }, { + "x0": 180.72000122070312, + "y0": 402.47998046875, + "x1": 261.0, + "y1": 415.08001708984375, + "width": 80.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 261.7200012207031, + "y0": 402.47998046875, + "x1": 351.0, + "y1": 415.08001708984375, + "width": 89.27999877929688, + "height": 12.60003662109375 + }, { + "x0": 351.7200012207031, + "y0": 402.47998046875, + "x1": 378.0, + "y1": 415.08001708984375, + "width": 26.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 378.7200012207031, + "y0": 402.47998046875, + "x1": 427.67999267578125, + "y1": 415.08001708984375, + "width": 48.959991455078125, + "height": 12.60003662109375 + }, { + "x0": 428.3999938964844, + "y0": 402.47998046875, + "x1": 463.67999267578125, + "y1": 415.08001708984375, + "width": 35.279998779296875, + "height": 12.60003662109375 + }, { + "x0": 464.3999938964844, + "y0": 402.47998046875, + "x1": 513.0, + "y1": 415.08001708984375, + "width": 48.600006103515625, + "height": 12.60003662109375 + }, { + "x0": 513.719970703125, + "y0": 402.47998046875, + "x1": 567.0, + "y1": 415.08001708984375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 567.719970703125, + "y0": 402.47998046875, + "x1": 621.0, + "y1": 415.08001708984375, + "width": 53.280029296875, + "height": 12.60003662109375 + }, { + "x0": 621.719970703125, + "y0": 402.47998046875, + "x1": 679.6799926757812, + "y1": 415.08001708984375, + "width": 57.96002197265625, + "height": 12.60003662109375 + }, { + "x0": 680.4000244140625, + "y0": 402.47998046875, + "x1": 724.6799926757812, + "y1": 415.08001708984375, + "width": 44.27996826171875, + "height": 12.60003662109375 + }, { + "x0": 180.72000122070312, + "y0": 389.1600036621094, + "x1": 261.0, + "y1": 401.760009765625, + "width": 80.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 389.1600036621094, + "x1": 351.0, + "y1": 401.760009765625, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 389.1600036621094, + "x1": 378.0, + "y1": 401.760009765625, + "width": 26.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 389.1600036621094, + "x1": 427.67999267578125, + "y1": 401.760009765625, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 389.1600036621094, + "x1": 463.67999267578125, + "y1": 401.760009765625, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 389.1600036621094, + "x1": 513.0, + "y1": 401.760009765625, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 389.1600036621094, + "x1": 567.0, + "y1": 401.760009765625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 389.1600036621094, + "x1": 621.0, + "y1": 401.760009765625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 389.1600036621094, + "x1": 679.6799926757812, + "y1": 401.760009765625, + "width": 57.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 389.1600036621094, + "x1": 724.6799926757812, + "y1": 401.760009765625, + "width": 44.27996826171875, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 375.47998046875, + "x1": 261.0, + "y1": 388.44000244140625, + "width": 80.27999877929688, + "height": 12.96002197265625 + }, { + "x0": 261.7200012207031, + "y0": 375.47998046875, + "x1": 351.0, + "y1": 388.44000244140625, + "width": 89.27999877929688, + "height": 12.96002197265625 + }, { + "x0": 351.7200012207031, + "y0": 375.47998046875, + "x1": 378.0, + "y1": 388.44000244140625, + "width": 26.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 378.7200012207031, + "y0": 375.47998046875, + "x1": 427.67999267578125, + "y1": 388.44000244140625, + "width": 48.959991455078125, + "height": 12.96002197265625 + }, { + "x0": 428.3999938964844, + "y0": 375.47998046875, + "x1": 463.67999267578125, + "y1": 388.44000244140625, + "width": 35.279998779296875, + "height": 12.96002197265625 + }, { + "x0": 464.3999938964844, + "y0": 375.47998046875, + "x1": 513.0, + "y1": 388.44000244140625, + "width": 48.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 513.719970703125, + "y0": 375.47998046875, + "x1": 567.0, + "y1": 388.44000244140625, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 567.719970703125, + "y0": 375.47998046875, + "x1": 621.0, + "y1": 388.44000244140625, + "width": 53.280029296875, + "height": 12.96002197265625 + }, { + "x0": 621.719970703125, + "y0": 375.47998046875, + "x1": 679.6799926757812, + "y1": 388.44000244140625, + "width": 57.96002197265625, + "height": 12.96002197265625 + }, { + "x0": 680.4000244140625, + "y0": 375.47998046875, + "x1": 724.6799926757812, + "y1": 388.44000244140625, + "width": 44.27996826171875, + "height": 12.96002197265625 + }, { + "x0": 180.72000122070312, + "y0": 362.1600036621094, + "x1": 261.0, + "y1": 374.760009765625, + "width": 80.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 362.1600036621094, + "x1": 351.0, + "y1": 374.760009765625, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 362.1600036621094, + "x1": 378.0, + "y1": 374.760009765625, + "width": 26.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 362.1600036621094, + "x1": 427.67999267578125, + "y1": 374.760009765625, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 362.1600036621094, + "x1": 463.67999267578125, + "y1": 374.760009765625, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 362.1600036621094, + "x1": 513.0, + "y1": 374.760009765625, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 362.1600036621094, + "x1": 567.0, + "y1": 374.760009765625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 362.1600036621094, + "x1": 621.0, + "y1": 374.760009765625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 362.1600036621094, + "x1": 679.6799926757812, + "y1": 374.760009765625, + "width": 57.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 362.1600036621094, + "x1": 724.6799926757812, + "y1": 374.760009765625, + "width": 44.27996826171875, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 348.8399963378906, + "x1": 261.0, + "y1": 361.44000244140625, + "width": 80.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 348.8399963378906, + "x1": 351.0, + "y1": 361.44000244140625, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 348.8399963378906, + "x1": 378.0, + "y1": 361.44000244140625, + "width": 26.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 348.8399963378906, + "x1": 427.67999267578125, + "y1": 361.44000244140625, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 348.8399963378906, + "x1": 463.67999267578125, + "y1": 361.44000244140625, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 348.8399963378906, + "x1": 513.0, + "y1": 361.44000244140625, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 348.8399963378906, + "x1": 567.0, + "y1": 361.44000244140625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 348.8399963378906, + "x1": 621.0, + "y1": 361.44000244140625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 348.8399963378906, + "x1": 679.6799926757812, + "y1": 361.44000244140625, + "width": 57.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 348.8399963378906, + "x1": 724.6799926757812, + "y1": 361.44000244140625, + "width": 44.27996826171875, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 335.1600036621094, + "x1": 261.0, + "y1": 348.1199951171875, + "width": 80.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 261.7200012207031, + "y0": 335.1600036621094, + "x1": 351.0, + "y1": 348.1199951171875, + "width": 89.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 351.7200012207031, + "y0": 335.1600036621094, + "x1": 378.0, + "y1": 348.1199951171875, + "width": 26.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 378.7200012207031, + "y0": 335.1600036621094, + "x1": 427.67999267578125, + "y1": 348.1199951171875, + "width": 48.959991455078125, + "height": 12.959991455078125 + }, { + "x0": 428.3999938964844, + "y0": 335.1600036621094, + "x1": 463.67999267578125, + "y1": 348.1199951171875, + "width": 35.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 464.3999938964844, + "y0": 335.1600036621094, + "x1": 513.0, + "y1": 348.1199951171875, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 513.719970703125, + "y0": 335.1600036621094, + "x1": 567.0, + "y1": 348.1199951171875, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 567.719970703125, + "y0": 335.1600036621094, + "x1": 621.0, + "y1": 348.1199951171875, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 621.719970703125, + "y0": 335.1600036621094, + "x1": 679.6799926757812, + "y1": 348.1199951171875, + "width": 57.96002197265625, + "height": 12.959991455078125 + }, { + "x0": 680.4000244140625, + "y0": 335.1600036621094, + "x1": 724.6799926757812, + "y1": 348.1199951171875, + "width": 44.27996826171875, + "height": 12.959991455078125 + }, { + "x0": 180.72000122070312, + "y0": 321.8399963378906, + "x1": 261.0, + "y1": 334.44000244140625, + "width": 80.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 321.8399963378906, + "x1": 351.0, + "y1": 334.44000244140625, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 321.8399963378906, + "x1": 378.0, + "y1": 334.44000244140625, + "width": 26.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 321.8399963378906, + "x1": 427.67999267578125, + "y1": 334.44000244140625, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 321.8399963378906, + "x1": 463.67999267578125, + "y1": 334.44000244140625, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 321.8399963378906, + "x1": 513.0, + "y1": 334.44000244140625, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 321.8399963378906, + "x1": 567.0, + "y1": 334.44000244140625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 321.8399963378906, + "x1": 621.0, + "y1": 334.44000244140625, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 321.8399963378906, + "x1": 679.6799926757812, + "y1": 334.44000244140625, + "width": 57.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 321.8399963378906, + "x1": 724.6799926757812, + "y1": 334.44000244140625, + "width": 44.27996826171875, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 308.5199890136719, + "x1": 261.0, + "y1": 321.1199951171875, + "width": 80.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 308.5199890136719, + "x1": 351.0, + "y1": 321.1199951171875, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 308.5199890136719, + "x1": 378.0, + "y1": 321.1199951171875, + "width": 26.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 308.5199890136719, + "x1": 427.67999267578125, + "y1": 321.1199951171875, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 308.5199890136719, + "x1": 463.67999267578125, + "y1": 321.1199951171875, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 308.5199890136719, + "x1": 513.0, + "y1": 321.1199951171875, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 308.5199890136719, + "x1": 567.0, + "y1": 321.1199951171875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 308.5199890136719, + "x1": 621.0, + "y1": 321.1199951171875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 308.5199890136719, + "x1": 679.6799926757812, + "y1": 321.1199951171875, + "width": 57.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 308.5199890136719, + "x1": 724.6799926757812, + "y1": 321.1199951171875, + "width": 44.27996826171875, + "height": 12.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 294.8399963378906, + "x1": 261.0, + "y1": 307.79998779296875, + "width": 80.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 261.7200012207031, + "y0": 294.8399963378906, + "x1": 351.0, + "y1": 307.79998779296875, + "width": 89.27999877929688, + "height": 12.959991455078125 + }, { + "x0": 351.7200012207031, + "y0": 294.8399963378906, + "x1": 378.0, + "y1": 307.79998779296875, + "width": 26.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 378.7200012207031, + "y0": 294.8399963378906, + "x1": 427.67999267578125, + "y1": 307.79998779296875, + "width": 48.959991455078125, + "height": 12.959991455078125 + }, { + "x0": 428.3999938964844, + "y0": 294.8399963378906, + "x1": 463.67999267578125, + "y1": 307.79998779296875, + "width": 35.279998779296875, + "height": 12.959991455078125 + }, { + "x0": 464.3999938964844, + "y0": 294.8399963378906, + "x1": 513.0, + "y1": 307.79998779296875, + "width": 48.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 513.719970703125, + "y0": 294.8399963378906, + "x1": 567.0, + "y1": 307.79998779296875, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 567.719970703125, + "y0": 294.8399963378906, + "x1": 621.0, + "y1": 307.79998779296875, + "width": 53.280029296875, + "height": 12.959991455078125 + }, { + "x0": 621.719970703125, + "y0": 294.8399963378906, + "x1": 679.6799926757812, + "y1": 307.79998779296875, + "width": 57.96002197265625, + "height": 12.959991455078125 + }, { + "x0": 680.4000244140625, + "y0": 294.8399963378906, + "x1": 724.6799926757812, + "y1": 307.79998779296875, + "width": 44.27996826171875, + "height": 12.959991455078125 + }, { + "x0": 180.72000122070312, + "y0": 281.5199890136719, + "x1": 261.0, + "y1": 294.1199951171875, + "width": 80.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 281.5199890136719, + "x1": 351.0, + "y1": 294.1199951171875, + "width": 89.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 281.5199890136719, + "x1": 378.0, + "y1": 294.1199951171875, + "width": 26.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 281.5199890136719, + "x1": 427.67999267578125, + "y1": 294.1199951171875, + "width": 48.959991455078125, + "height": 12.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 281.5199890136719, + "x1": 463.67999267578125, + "y1": 294.1199951171875, + "width": 35.279998779296875, + "height": 12.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 281.5199890136719, + "x1": 513.0, + "y1": 294.1199951171875, + "width": 48.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 281.5199890136719, + "x1": 567.0, + "y1": 294.1199951171875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 281.5199890136719, + "x1": 621.0, + "y1": 294.1199951171875, + "width": 53.280029296875, + "height": 12.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 281.5199890136719, + "x1": 679.6799926757812, + "y1": 294.1199951171875, + "width": 57.96002197265625, + "height": 12.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 281.5199890136719, + "x1": 724.6799926757812, + "y1": 294.1199951171875, + "width": 44.27996826171875, + "height": 12.600006103515625 + } + ] + }, { + "pageInfo": { + "number": 30, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 72.72000122070312, + "y0": 456.1199951171875, + "x1": 135.0, + "y1": 491.0400085449219, + "width": 62.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 135.72000122070312, + "y0": 456.1199951171875, + "x1": 193.67999267578125, + "y1": 491.0400085449219, + "width": 57.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 194.39999389648438, + "y0": 456.1199951171875, + "x1": 279.0, + "y1": 491.0400085449219, + "width": 84.60000610351562, + "height": 34.920013427734375 + }, { + "x0": 279.7200012207031, + "y0": 456.1199951171875, + "x1": 337.67999267578125, + "y1": 491.0400085449219, + "width": 57.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 338.3999938964844, + "y0": 456.1199951171875, + "x1": 364.67999267578125, + "y1": 491.0400085449219, + "width": 26.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 365.3999938964844, + "y0": 456.1199951171875, + "x1": 423.0, + "y1": 491.0400085449219, + "width": 57.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 423.7200012207031, + "y0": 456.1199951171875, + "x1": 459.0, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 459.7200012207031, + "y0": 456.1199951171875, + "x1": 513.0, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 513.719970703125, + "y0": 456.1199951171875, + "x1": 567.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 567.719970703125, + "y0": 456.1199951171875, + "x1": 621.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 621.719970703125, + "y0": 456.1199951171875, + "x1": 679.6799926757812, + "y1": 491.0400085449219, + "width": 57.96002197265625, + "height": 34.920013427734375 + }, { + "x0": 680.4000244140625, + "y0": 456.1199951171875, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 44.27996826171875, + "height": 34.920013427734375 + }, { + "x0": 72.72000122070312, + "y0": 167.760009765625, + "x1": 135.0, + "y1": 454.67999267578125, + "width": 62.279998779296875, + "height": 286.91998291015625 + }, { + "x0": 135.72000122070312, + "y0": 167.760009765625, + "x1": 193.67999267578125, + "y1": 454.67999267578125, + "width": 57.959991455078125, + "height": 286.91998291015625 + }, { + "x0": 194.39999389648438, + "y0": 434.1600036621094, + "x1": 279.0, + "y1": 454.67999267578125, + "width": 84.60000610351562, + "height": 20.519989013671875 + }, { + "x0": 279.7200012207031, + "y0": 434.1600036621094, + "x1": 337.67999267578125, + "y1": 454.67999267578125, + "width": 57.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 338.3999938964844, + "y0": 434.1600036621094, + "x1": 364.67999267578125, + "y1": 454.67999267578125, + "width": 26.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 434.1600036621094, + "x1": 423.0, + "y1": 454.67999267578125, + "width": 57.600006103515625, + "height": 20.519989013671875 + }, { + "x0": 423.7200012207031, + "y0": 434.1600036621094, + "x1": 459.0, + "y1": 454.67999267578125, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 459.7200012207031, + "y0": 434.1600036621094, + "x1": 513.0, + "y1": 454.67999267578125, + "width": 53.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 513.719970703125, + "y0": 434.1600036621094, + "x1": 567.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 20.519989013671875 + }, { + "x0": 567.719970703125, + "y0": 434.1600036621094, + "x1": 621.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 20.519989013671875 + }, { + "x0": 621.719970703125, + "y0": 434.1600036621094, + "x1": 679.6799926757812, + "y1": 454.67999267578125, + "width": 57.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 680.4000244140625, + "y0": 434.1600036621094, + "x1": 724.6799926757812, + "y1": 454.67999267578125, + "width": 44.27996826171875, + "height": 20.519989013671875 + }, { + "x0": 194.39999389648438, + "y0": 411.8399963378906, + "x1": 279.0, + "y1": 433.44000244140625, + "width": 84.60000610351562, + "height": 21.600006103515625 + }, { + "x0": 279.7200012207031, + "y0": 411.8399963378906, + "x1": 337.67999267578125, + "y1": 433.44000244140625, + "width": 57.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 338.3999938964844, + "y0": 411.8399963378906, + "x1": 364.67999267578125, + "y1": 433.44000244140625, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 365.3999938964844, + "y0": 411.8399963378906, + "x1": 423.0, + "y1": 433.44000244140625, + "width": 57.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 423.7200012207031, + "y0": 411.8399963378906, + "x1": 459.0, + "y1": 433.44000244140625, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 459.7200012207031, + "y0": 411.8399963378906, + "x1": 513.0, + "y1": 433.44000244140625, + "width": 53.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 411.8399963378906, + "x1": 567.0, + "y1": 433.44000244140625, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 411.8399963378906, + "x1": 621.0, + "y1": 433.44000244140625, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 411.8399963378906, + "x1": 679.6799926757812, + "y1": 433.44000244140625, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 411.8399963378906, + "x1": 724.6799926757812, + "y1": 433.44000244140625, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 194.39999389648438, + "y0": 389.52001953125, + "x1": 279.0, + "y1": 411.1199951171875, + "width": 84.60000610351562, + "height": 21.5999755859375 + }, { + "x0": 279.7200012207031, + "y0": 389.52001953125, + "x1": 337.67999267578125, + "y1": 411.1199951171875, + "width": 57.959991455078125, + "height": 21.5999755859375 + }, { + "x0": 338.3999938964844, + "y0": 389.52001953125, + "x1": 364.67999267578125, + "y1": 411.1199951171875, + "width": 26.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 365.3999938964844, + "y0": 389.52001953125, + "x1": 423.0, + "y1": 411.1199951171875, + "width": 57.600006103515625, + "height": 21.5999755859375 + }, { + "x0": 423.7200012207031, + "y0": 389.52001953125, + "x1": 459.0, + "y1": 411.1199951171875, + "width": 35.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 459.7200012207031, + "y0": 389.52001953125, + "x1": 513.0, + "y1": 411.1199951171875, + "width": 53.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 513.719970703125, + "y0": 389.52001953125, + "x1": 567.0, + "y1": 411.1199951171875, + "width": 53.280029296875, + "height": 21.5999755859375 + }, { + "x0": 567.719970703125, + "y0": 389.52001953125, + "x1": 621.0, + "y1": 411.1199951171875, + "width": 53.280029296875, + "height": 21.5999755859375 + }, { + "x0": 621.719970703125, + "y0": 389.52001953125, + "x1": 679.6799926757812, + "y1": 411.1199951171875, + "width": 57.96002197265625, + "height": 21.5999755859375 + }, { + "x0": 680.4000244140625, + "y0": 389.52001953125, + "x1": 724.6799926757812, + "y1": 411.1199951171875, + "width": 44.27996826171875, + "height": 21.5999755859375 + }, { + "x0": 194.39999389648438, + "y0": 367.55999755859375, + "x1": 279.0, + "y1": 388.79998779296875, + "width": 84.60000610351562, + "height": 21.239990234375 + }, { + "x0": 279.7200012207031, + "y0": 367.55999755859375, + "x1": 337.67999267578125, + "y1": 388.79998779296875, + "width": 57.959991455078125, + "height": 21.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 367.55999755859375, + "x1": 364.67999267578125, + "y1": 388.79998779296875, + "width": 26.279998779296875, + "height": 21.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 367.55999755859375, + "x1": 423.0, + "y1": 388.79998779296875, + "width": 57.600006103515625, + "height": 21.239990234375 + }, { + "x0": 423.7200012207031, + "y0": 367.55999755859375, + "x1": 459.0, + "y1": 388.79998779296875, + "width": 35.279998779296875, + "height": 21.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 367.55999755859375, + "x1": 513.0, + "y1": 388.79998779296875, + "width": 53.279998779296875, + "height": 21.239990234375 + }, { + "x0": 513.719970703125, + "y0": 367.55999755859375, + "x1": 567.0, + "y1": 388.79998779296875, + "width": 53.280029296875, + "height": 21.239990234375 + }, { + "x0": 567.719970703125, + "y0": 367.55999755859375, + "x1": 621.0, + "y1": 388.79998779296875, + "width": 53.280029296875, + "height": 21.239990234375 + }, { + "x0": 621.719970703125, + "y0": 367.55999755859375, + "x1": 679.6799926757812, + "y1": 388.79998779296875, + "width": 57.96002197265625, + "height": 21.239990234375 + }, { + "x0": 680.4000244140625, + "y0": 367.55999755859375, + "x1": 724.6799926757812, + "y1": 388.79998779296875, + "width": 44.27996826171875, + "height": 21.239990234375 + }, { + "x0": 194.39999389648438, + "y0": 345.239990234375, + "x1": 279.0, + "y1": 366.8399963378906, + "width": 84.60000610351562, + "height": 21.600006103515625 + }, { + "x0": 279.7200012207031, + "y0": 345.239990234375, + "x1": 337.67999267578125, + "y1": 366.8399963378906, + "width": 57.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 338.3999938964844, + "y0": 345.239990234375, + "x1": 364.67999267578125, + "y1": 366.8399963378906, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 365.3999938964844, + "y0": 345.239990234375, + "x1": 423.0, + "y1": 366.8399963378906, + "width": 57.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 423.7200012207031, + "y0": 345.239990234375, + "x1": 459.0, + "y1": 366.8399963378906, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 459.7200012207031, + "y0": 345.239990234375, + "x1": 513.0, + "y1": 366.8399963378906, + "width": 53.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 345.239990234375, + "x1": 567.0, + "y1": 366.8399963378906, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 345.239990234375, + "x1": 621.0, + "y1": 366.8399963378906, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 345.239990234375, + "x1": 679.6799926757812, + "y1": 366.8399963378906, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 345.239990234375, + "x1": 724.6799926757812, + "y1": 366.8399963378906, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 194.39999389648438, + "y0": 322.9200134277344, + "x1": 279.0, + "y1": 344.5199890136719, + "width": 84.60000610351562, + "height": 21.5999755859375 + }, { + "x0": 279.7200012207031, + "y0": 322.9200134277344, + "x1": 337.67999267578125, + "y1": 344.5199890136719, + "width": 57.959991455078125, + "height": 21.5999755859375 + }, { + "x0": 338.3999938964844, + "y0": 322.9200134277344, + "x1": 364.67999267578125, + "y1": 344.5199890136719, + "width": 26.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 365.3999938964844, + "y0": 322.9200134277344, + "x1": 423.0, + "y1": 344.5199890136719, + "width": 57.600006103515625, + "height": 21.5999755859375 + }, { + "x0": 423.7200012207031, + "y0": 322.9200134277344, + "x1": 459.0, + "y1": 344.5199890136719, + "width": 35.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 459.7200012207031, + "y0": 322.9200134277344, + "x1": 513.0, + "y1": 344.5199890136719, + "width": 53.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 513.719970703125, + "y0": 322.9200134277344, + "x1": 567.0, + "y1": 344.5199890136719, + "width": 53.280029296875, + "height": 21.5999755859375 + }, { + "x0": 567.719970703125, + "y0": 322.9200134277344, + "x1": 621.0, + "y1": 344.5199890136719, + "width": 53.280029296875, + "height": 21.5999755859375 + }, { + "x0": 621.719970703125, + "y0": 322.9200134277344, + "x1": 679.6799926757812, + "y1": 344.5199890136719, + "width": 57.96002197265625, + "height": 21.5999755859375 + }, { + "x0": 680.4000244140625, + "y0": 322.9200134277344, + "x1": 724.6799926757812, + "y1": 344.5199890136719, + "width": 44.27996826171875, + "height": 21.5999755859375 + }, { + "x0": 194.39999389648438, + "y0": 300.9599914550781, + "x1": 279.0, + "y1": 322.20001220703125, + "width": 84.60000610351562, + "height": 21.240020751953125 + }, { + "x0": 279.7200012207031, + "y0": 300.9599914550781, + "x1": 337.67999267578125, + "y1": 322.20001220703125, + "width": 57.959991455078125, + "height": 21.240020751953125 + }, { + "x0": 338.3999938964844, + "y0": 300.9599914550781, + "x1": 364.67999267578125, + "y1": 322.20001220703125, + "width": 26.279998779296875, + "height": 21.240020751953125 + }, { + "x0": 365.3999938964844, + "y0": 300.9599914550781, + "x1": 423.0, + "y1": 322.20001220703125, + "width": 57.600006103515625, + "height": 21.240020751953125 + }, { + "x0": 423.7200012207031, + "y0": 300.9599914550781, + "x1": 459.0, + "y1": 322.20001220703125, + "width": 35.279998779296875, + "height": 21.240020751953125 + }, { + "x0": 459.7200012207031, + "y0": 300.9599914550781, + "x1": 513.0, + "y1": 322.20001220703125, + "width": 53.279998779296875, + "height": 21.240020751953125 + }, { + "x0": 513.719970703125, + "y0": 300.9599914550781, + "x1": 567.0, + "y1": 322.20001220703125, + "width": 53.280029296875, + "height": 21.240020751953125 + }, { + "x0": 567.719970703125, + "y0": 300.9599914550781, + "x1": 621.0, + "y1": 322.20001220703125, + "width": 53.280029296875, + "height": 21.240020751953125 + }, { + "x0": 621.719970703125, + "y0": 300.9599914550781, + "x1": 679.6799926757812, + "y1": 322.20001220703125, + "width": 57.96002197265625, + "height": 21.240020751953125 + }, { + "x0": 680.4000244140625, + "y0": 300.9599914550781, + "x1": 724.6799926757812, + "y1": 322.20001220703125, + "width": 44.27996826171875, + "height": 21.240020751953125 + }, { + "x0": 194.39999389648438, + "y0": 278.6400146484375, + "x1": 279.0, + "y1": 300.239990234375, + "width": 84.60000610351562, + "height": 21.5999755859375 + }, { + "x0": 279.7200012207031, + "y0": 278.6400146484375, + "x1": 337.67999267578125, + "y1": 300.239990234375, + "width": 57.959991455078125, + "height": 21.5999755859375 + }, { + "x0": 338.3999938964844, + "y0": 278.6400146484375, + "x1": 364.67999267578125, + "y1": 300.239990234375, + "width": 26.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 365.3999938964844, + "y0": 278.6400146484375, + "x1": 423.0, + "y1": 300.239990234375, + "width": 57.600006103515625, + "height": 21.5999755859375 + }, { + "x0": 423.7200012207031, + "y0": 278.6400146484375, + "x1": 459.0, + "y1": 300.239990234375, + "width": 35.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 459.7200012207031, + "y0": 278.6400146484375, + "x1": 513.0, + "y1": 300.239990234375, + "width": 53.279998779296875, + "height": 21.5999755859375 + }, { + "x0": 513.719970703125, + "y0": 278.6400146484375, + "x1": 567.0, + "y1": 300.239990234375, + "width": 53.280029296875, + "height": 21.5999755859375 + }, { + "x0": 567.719970703125, + "y0": 278.6400146484375, + "x1": 621.0, + "y1": 300.239990234375, + "width": 53.280029296875, + "height": 21.5999755859375 + }, { + "x0": 621.719970703125, + "y0": 278.6400146484375, + "x1": 679.6799926757812, + "y1": 300.239990234375, + "width": 57.96002197265625, + "height": 21.5999755859375 + }, { + "x0": 680.4000244140625, + "y0": 278.6400146484375, + "x1": 724.6799926757812, + "y1": 300.239990234375, + "width": 44.27996826171875, + "height": 21.5999755859375 + }, { + "x0": 194.39999389648438, + "y0": 256.32000732421875, + "x1": 279.0, + "y1": 277.9200134277344, + "width": 84.60000610351562, + "height": 21.600006103515625 + }, { + "x0": 279.7200012207031, + "y0": 256.32000732421875, + "x1": 337.67999267578125, + "y1": 277.9200134277344, + "width": 57.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 338.3999938964844, + "y0": 256.32000732421875, + "x1": 364.67999267578125, + "y1": 277.9200134277344, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 365.3999938964844, + "y0": 256.32000732421875, + "x1": 423.0, + "y1": 277.9200134277344, + "width": 57.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 423.7200012207031, + "y0": 256.32000732421875, + "x1": 459.0, + "y1": 277.9200134277344, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 459.7200012207031, + "y0": 256.32000732421875, + "x1": 513.0, + "y1": 277.9200134277344, + "width": 53.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 256.32000732421875, + "x1": 567.0, + "y1": 277.9200134277344, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 256.32000732421875, + "x1": 621.0, + "y1": 277.9200134277344, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 256.32000732421875, + "x1": 679.6799926757812, + "y1": 277.9200134277344, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 256.32000732421875, + "x1": 724.6799926757812, + "y1": 277.9200134277344, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 194.39999389648438, + "y0": 234.3599853515625, + "x1": 279.0, + "y1": 255.60000610351562, + "width": 84.60000610351562, + "height": 21.240020751953125 + }, { + "x0": 279.7200012207031, + "y0": 234.3599853515625, + "x1": 337.67999267578125, + "y1": 255.60000610351562, + "width": 57.959991455078125, + "height": 21.240020751953125 + }, { + "x0": 338.3999938964844, + "y0": 234.3599853515625, + "x1": 364.67999267578125, + "y1": 255.60000610351562, + "width": 26.279998779296875, + "height": 21.240020751953125 + }, { + "x0": 365.3999938964844, + "y0": 234.3599853515625, + "x1": 423.0, + "y1": 255.60000610351562, + "width": 57.600006103515625, + "height": 21.240020751953125 + }, { + "x0": 423.7200012207031, + "y0": 234.3599853515625, + "x1": 459.0, + "y1": 255.60000610351562, + "width": 35.279998779296875, + "height": 21.240020751953125 + }, { + "x0": 459.7200012207031, + "y0": 234.3599853515625, + "x1": 513.0, + "y1": 255.60000610351562, + "width": 53.279998779296875, + "height": 21.240020751953125 + }, { + "x0": 513.719970703125, + "y0": 234.3599853515625, + "x1": 567.0, + "y1": 255.60000610351562, + "width": 53.280029296875, + "height": 21.240020751953125 + }, { + "x0": 567.719970703125, + "y0": 234.3599853515625, + "x1": 621.0, + "y1": 255.60000610351562, + "width": 53.280029296875, + "height": 21.240020751953125 + }, { + "x0": 621.719970703125, + "y0": 234.3599853515625, + "x1": 679.6799926757812, + "y1": 255.60000610351562, + "width": 57.96002197265625, + "height": 21.240020751953125 + }, { + "x0": 680.4000244140625, + "y0": 234.3599853515625, + "x1": 724.6799926757812, + "y1": 255.60000610351562, + "width": 44.27996826171875, + "height": 21.240020751953125 + }, { + "x0": 194.39999389648438, + "y0": 212.04000854492188, + "x1": 279.0, + "y1": 233.6400146484375, + "width": 84.60000610351562, + "height": 21.600006103515625 + }, { + "x0": 279.7200012207031, + "y0": 212.04000854492188, + "x1": 337.67999267578125, + "y1": 233.6400146484375, + "width": 57.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 338.3999938964844, + "y0": 212.04000854492188, + "x1": 364.67999267578125, + "y1": 233.6400146484375, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 365.3999938964844, + "y0": 212.04000854492188, + "x1": 423.0, + "y1": 233.6400146484375, + "width": 57.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 423.7200012207031, + "y0": 212.04000854492188, + "x1": 459.0, + "y1": 233.6400146484375, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 459.7200012207031, + "y0": 212.04000854492188, + "x1": 513.0, + "y1": 233.6400146484375, + "width": 53.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 212.04000854492188, + "x1": 567.0, + "y1": 233.6400146484375, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 212.04000854492188, + "x1": 621.0, + "y1": 233.6400146484375, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 212.04000854492188, + "x1": 679.6799926757812, + "y1": 233.6400146484375, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 212.04000854492188, + "x1": 724.6799926757812, + "y1": 233.6400146484375, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 194.39999389648438, + "y0": 189.72000122070312, + "x1": 279.0, + "y1": 211.32000732421875, + "width": 84.60000610351562, + "height": 21.600006103515625 + }, { + "x0": 279.7200012207031, + "y0": 189.72000122070312, + "x1": 337.67999267578125, + "y1": 211.32000732421875, + "width": 57.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 338.3999938964844, + "y0": 189.72000122070312, + "x1": 364.67999267578125, + "y1": 211.32000732421875, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 365.3999938964844, + "y0": 189.72000122070312, + "x1": 423.0, + "y1": 211.32000732421875, + "width": 57.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 423.7200012207031, + "y0": 189.72000122070312, + "x1": 459.0, + "y1": 211.32000732421875, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 459.7200012207031, + "y0": 189.72000122070312, + "x1": 513.0, + "y1": 211.32000732421875, + "width": 53.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 189.72000122070312, + "x1": 567.0, + "y1": 211.32000732421875, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 189.72000122070312, + "x1": 621.0, + "y1": 211.32000732421875, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 189.72000122070312, + "x1": 679.6799926757812, + "y1": 211.32000732421875, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 189.72000122070312, + "x1": 724.6799926757812, + "y1": 211.32000732421875, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 194.39999389648438, + "y0": 167.760009765625, + "x1": 279.0, + "y1": 189.0, + "width": 84.60000610351562, + "height": 21.239990234375 + }, { + "x0": 279.7200012207031, + "y0": 167.760009765625, + "x1": 337.67999267578125, + "y1": 189.0, + "width": 57.959991455078125, + "height": 21.239990234375 + }, { + "x0": 338.3999938964844, + "y0": 167.760009765625, + "x1": 364.67999267578125, + "y1": 189.0, + "width": 26.279998779296875, + "height": 21.239990234375 + }, { + "x0": 365.3999938964844, + "y0": 167.760009765625, + "x1": 423.0, + "y1": 189.0, + "width": 57.600006103515625, + "height": 21.239990234375 + }, { + "x0": 423.7200012207031, + "y0": 167.760009765625, + "x1": 459.0, + "y1": 189.0, + "width": 35.279998779296875, + "height": 21.239990234375 + }, { + "x0": 459.7200012207031, + "y0": 167.760009765625, + "x1": 513.0, + "y1": 189.0, + "width": 53.279998779296875, + "height": 21.239990234375 + }, { + "x0": 513.719970703125, + "y0": 167.760009765625, + "x1": 567.0, + "y1": 189.0, + "width": 53.280029296875, + "height": 21.239990234375 + }, { + "x0": 567.719970703125, + "y0": 167.760009765625, + "x1": 621.0, + "y1": 189.0, + "width": 53.280029296875, + "height": 21.239990234375 + }, { + "x0": 621.719970703125, + "y0": 167.760009765625, + "x1": 679.6799926757812, + "y1": 189.0, + "width": 57.96002197265625, + "height": 21.239990234375 + }, { + "x0": 680.4000244140625, + "y0": 167.760009765625, + "x1": 724.6799926757812, + "y1": 189.0, + "width": 44.27996826171875, + "height": 21.239990234375 + } + ] + }, { + "pageInfo": { + "number": 31, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 72.72000122070312, + "y0": 460.44000244140625, + "x1": 130.67999267578125, + "y1": 491.0400085449219, + "width": 57.959991455078125, + "height": 30.600006103515625 + }, { + "x0": 131.39999389648438, + "y0": 460.44000244140625, + "x1": 184.67999267578125, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 30.600006103515625 + }, { + "x0": 185.39999389648438, + "y0": 460.44000244140625, + "x1": 265.67999267578125, + "y1": 491.0400085449219, + "width": 80.27999877929688, + "height": 30.600006103515625 + }, { + "x0": 266.3999938964844, + "y0": 460.44000244140625, + "x1": 351.0, + "y1": 491.0400085449219, + "width": 84.60000610351562, + "height": 30.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 460.44000244140625, + "x1": 373.67999267578125, + "y1": 491.0400085449219, + "width": 21.959991455078125, + "height": 30.600006103515625 + }, { + "x0": 374.3999938964844, + "y0": 460.44000244140625, + "x1": 427.67999267578125, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 30.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 460.44000244140625, + "x1": 463.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 30.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 460.44000244140625, + "x1": 517.6799926757812, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 30.600006103515625 + }, { + "x0": 518.4000244140625, + "y0": 460.44000244140625, + "x1": 578.8800048828125, + "y1": 491.0400085449219, + "width": 60.47998046875, + "height": 30.600006103515625 + }, { + "x0": 579.5999755859375, + "y0": 460.44000244140625, + "x1": 632.8800048828125, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 30.600006103515625 + }, { + "x0": 633.5999755859375, + "y0": 460.44000244140625, + "x1": 682.2000122070312, + "y1": 491.0400085449219, + "width": 48.60003662109375, + "height": 30.600006103515625 + }, { + "x0": 682.9199829101562, + "y0": 460.44000244140625, + "x1": 736.2000122070312, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 30.600006103515625 + }, { + "x0": 72.72000122070312, + "y0": 129.95999145507812, + "x1": 130.67999267578125, + "y1": 458.6400146484375, + "width": 57.959991455078125, + "height": 328.6800231933594 + }, { + "x0": 131.39999389648438, + "y0": 129.95999145507812, + "x1": 184.67999267578125, + "y1": 458.6400146484375, + "width": 53.279998779296875, + "height": 328.6800231933594 + }, { + "x0": 185.39999389648438, + "y0": 434.8800048828125, + "x1": 265.67999267578125, + "y1": 458.6400146484375, + "width": 80.27999877929688, + "height": 23.760009765625 + }, { + "x0": 266.3999938964844, + "y0": 434.8800048828125, + "x1": 351.0, + "y1": 458.6400146484375, + "width": 84.60000610351562, + "height": 23.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 434.8800048828125, + "x1": 373.67999267578125, + "y1": 458.6400146484375, + "width": 21.959991455078125, + "height": 23.760009765625 + }, { + "x0": 374.3999938964844, + "y0": 434.8800048828125, + "x1": 427.67999267578125, + "y1": 458.6400146484375, + "width": 53.279998779296875, + "height": 23.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 434.8800048828125, + "x1": 463.67999267578125, + "y1": 458.6400146484375, + "width": 35.279998779296875, + "height": 23.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 434.8800048828125, + "x1": 517.6799926757812, + "y1": 458.6400146484375, + "width": 53.279998779296875, + "height": 23.760009765625 + }, { + "x0": 518.4000244140625, + "y0": 434.8800048828125, + "x1": 578.8800048828125, + "y1": 458.6400146484375, + "width": 60.47998046875, + "height": 23.760009765625 + }, { + "x0": 579.5999755859375, + "y0": 434.8800048828125, + "x1": 632.8800048828125, + "y1": 458.6400146484375, + "width": 53.280029296875, + "height": 23.760009765625 + }, { + "x0": 633.5999755859375, + "y0": 434.8800048828125, + "x1": 682.2000122070312, + "y1": 458.6400146484375, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 682.9199829101562, + "y0": 434.8800048828125, + "x1": 736.2000122070312, + "y1": 458.6400146484375, + "width": 53.280029296875, + "height": 23.760009765625 + }, { + "x0": 185.39999389648438, + "y0": 409.32000732421875, + "x1": 265.67999267578125, + "y1": 434.1600036621094, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 266.3999938964844, + "y0": 409.32000732421875, + "x1": 351.0, + "y1": 434.1600036621094, + "width": 84.60000610351562, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 409.32000732421875, + "x1": 373.67999267578125, + "y1": 434.1600036621094, + "width": 21.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 374.3999938964844, + "y0": 409.32000732421875, + "x1": 427.67999267578125, + "y1": 434.1600036621094, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 409.32000732421875, + "x1": 463.67999267578125, + "y1": 434.1600036621094, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 409.32000732421875, + "x1": 517.6799926757812, + "y1": 434.1600036621094, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 518.4000244140625, + "y0": 409.32000732421875, + "x1": 578.8800048828125, + "y1": 434.1600036621094, + "width": 60.47998046875, + "height": 24.839996337890625 + }, { + "x0": 579.5999755859375, + "y0": 409.32000732421875, + "x1": 632.8800048828125, + "y1": 434.1600036621094, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 633.5999755859375, + "y0": 409.32000732421875, + "x1": 682.2000122070312, + "y1": 434.1600036621094, + "width": 48.60003662109375, + "height": 24.839996337890625 + }, { + "x0": 682.9199829101562, + "y0": 409.32000732421875, + "x1": 736.2000122070312, + "y1": 434.1600036621094, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 185.39999389648438, + "y0": 384.1199951171875, + "x1": 265.67999267578125, + "y1": 408.6000061035156, + "width": 80.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 266.3999938964844, + "y0": 384.1199951171875, + "x1": 351.0, + "y1": 408.6000061035156, + "width": 84.60000610351562, + "height": 24.480010986328125 + }, { + "x0": 351.7200012207031, + "y0": 384.1199951171875, + "x1": 373.67999267578125, + "y1": 408.6000061035156, + "width": 21.959991455078125, + "height": 24.480010986328125 + }, { + "x0": 374.3999938964844, + "y0": 384.1199951171875, + "x1": 427.67999267578125, + "y1": 408.6000061035156, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 428.3999938964844, + "y0": 384.1199951171875, + "x1": 463.67999267578125, + "y1": 408.6000061035156, + "width": 35.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 464.3999938964844, + "y0": 384.1199951171875, + "x1": 517.6799926757812, + "y1": 408.6000061035156, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 518.4000244140625, + "y0": 384.1199951171875, + "x1": 578.8800048828125, + "y1": 408.6000061035156, + "width": 60.47998046875, + "height": 24.480010986328125 + }, { + "x0": 579.5999755859375, + "y0": 384.1199951171875, + "x1": 632.8800048828125, + "y1": 408.6000061035156, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 633.5999755859375, + "y0": 384.1199951171875, + "x1": 682.2000122070312, + "y1": 408.6000061035156, + "width": 48.60003662109375, + "height": 24.480010986328125 + }, { + "x0": 682.9199829101562, + "y0": 384.1199951171875, + "x1": 736.2000122070312, + "y1": 408.6000061035156, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 185.39999389648438, + "y0": 358.55999755859375, + "x1": 265.67999267578125, + "y1": 383.3999938964844, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 266.3999938964844, + "y0": 358.55999755859375, + "x1": 351.0, + "y1": 383.3999938964844, + "width": 84.60000610351562, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 358.55999755859375, + "x1": 373.67999267578125, + "y1": 383.3999938964844, + "width": 21.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 374.3999938964844, + "y0": 358.55999755859375, + "x1": 427.67999267578125, + "y1": 383.3999938964844, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 358.55999755859375, + "x1": 463.67999267578125, + "y1": 383.3999938964844, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 358.55999755859375, + "x1": 517.6799926757812, + "y1": 383.3999938964844, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 518.4000244140625, + "y0": 358.55999755859375, + "x1": 578.8800048828125, + "y1": 383.3999938964844, + "width": 60.47998046875, + "height": 24.839996337890625 + }, { + "x0": 579.5999755859375, + "y0": 358.55999755859375, + "x1": 632.8800048828125, + "y1": 383.3999938964844, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 633.5999755859375, + "y0": 358.55999755859375, + "x1": 682.2000122070312, + "y1": 383.3999938964844, + "width": 48.60003662109375, + "height": 24.839996337890625 + }, { + "x0": 682.9199829101562, + "y0": 358.55999755859375, + "x1": 736.2000122070312, + "y1": 383.3999938964844, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 185.39999389648438, + "y0": 333.3599853515625, + "x1": 265.67999267578125, + "y1": 357.8399963378906, + "width": 80.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 266.3999938964844, + "y0": 333.3599853515625, + "x1": 351.0, + "y1": 357.8399963378906, + "width": 84.60000610351562, + "height": 24.480010986328125 + }, { + "x0": 351.7200012207031, + "y0": 333.3599853515625, + "x1": 373.67999267578125, + "y1": 357.8399963378906, + "width": 21.959991455078125, + "height": 24.480010986328125 + }, { + "x0": 374.3999938964844, + "y0": 333.3599853515625, + "x1": 427.67999267578125, + "y1": 357.8399963378906, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 428.3999938964844, + "y0": 333.3599853515625, + "x1": 463.67999267578125, + "y1": 357.8399963378906, + "width": 35.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 464.3999938964844, + "y0": 333.3599853515625, + "x1": 517.6799926757812, + "y1": 357.8399963378906, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 518.4000244140625, + "y0": 333.3599853515625, + "x1": 578.8800048828125, + "y1": 357.8399963378906, + "width": 60.47998046875, + "height": 24.480010986328125 + }, { + "x0": 579.5999755859375, + "y0": 333.3599853515625, + "x1": 632.8800048828125, + "y1": 357.8399963378906, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 633.5999755859375, + "y0": 333.3599853515625, + "x1": 682.2000122070312, + "y1": 357.8399963378906, + "width": 48.60003662109375, + "height": 24.480010986328125 + }, { + "x0": 682.9199829101562, + "y0": 333.3599853515625, + "x1": 736.2000122070312, + "y1": 357.8399963378906, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 185.39999389648438, + "y0": 307.79998779296875, + "x1": 265.67999267578125, + "y1": 332.6400146484375, + "width": 80.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 266.3999938964844, + "y0": 307.79998779296875, + "x1": 351.0, + "y1": 332.6400146484375, + "width": 84.60000610351562, + "height": 24.84002685546875 + }, { + "x0": 351.7200012207031, + "y0": 307.79998779296875, + "x1": 373.67999267578125, + "y1": 332.6400146484375, + "width": 21.959991455078125, + "height": 24.84002685546875 + }, { + "x0": 374.3999938964844, + "y0": 307.79998779296875, + "x1": 427.67999267578125, + "y1": 332.6400146484375, + "width": 53.279998779296875, + "height": 24.84002685546875 + }, { + "x0": 428.3999938964844, + "y0": 307.79998779296875, + "x1": 463.67999267578125, + "y1": 332.6400146484375, + "width": 35.279998779296875, + "height": 24.84002685546875 + }, { + "x0": 464.3999938964844, + "y0": 307.79998779296875, + "x1": 517.6799926757812, + "y1": 332.6400146484375, + "width": 53.279998779296875, + "height": 24.84002685546875 + }, { + "x0": 518.4000244140625, + "y0": 307.79998779296875, + "x1": 578.8800048828125, + "y1": 332.6400146484375, + "width": 60.47998046875, + "height": 24.84002685546875 + }, { + "x0": 579.5999755859375, + "y0": 307.79998779296875, + "x1": 632.8800048828125, + "y1": 332.6400146484375, + "width": 53.280029296875, + "height": 24.84002685546875 + }, { + "x0": 633.5999755859375, + "y0": 307.79998779296875, + "x1": 682.2000122070312, + "y1": 332.6400146484375, + "width": 48.60003662109375, + "height": 24.84002685546875 + }, { + "x0": 682.9199829101562, + "y0": 307.79998779296875, + "x1": 736.2000122070312, + "y1": 332.6400146484375, + "width": 53.280029296875, + "height": 24.84002685546875 + }, { + "x0": 185.39999389648438, + "y0": 282.6000061035156, + "x1": 265.67999267578125, + "y1": 307.0799865722656, + "width": 80.27999877929688, + "height": 24.47998046875 + }, { + "x0": 266.3999938964844, + "y0": 282.6000061035156, + "x1": 351.0, + "y1": 307.0799865722656, + "width": 84.60000610351562, + "height": 24.47998046875 + }, { + "x0": 351.7200012207031, + "y0": 282.6000061035156, + "x1": 373.67999267578125, + "y1": 307.0799865722656, + "width": 21.959991455078125, + "height": 24.47998046875 + }, { + "x0": 374.3999938964844, + "y0": 282.6000061035156, + "x1": 427.67999267578125, + "y1": 307.0799865722656, + "width": 53.279998779296875, + "height": 24.47998046875 + }, { + "x0": 428.3999938964844, + "y0": 282.6000061035156, + "x1": 463.67999267578125, + "y1": 307.0799865722656, + "width": 35.279998779296875, + "height": 24.47998046875 + }, { + "x0": 464.3999938964844, + "y0": 282.6000061035156, + "x1": 517.6799926757812, + "y1": 307.0799865722656, + "width": 53.279998779296875, + "height": 24.47998046875 + }, { + "x0": 518.4000244140625, + "y0": 282.6000061035156, + "x1": 578.8800048828125, + "y1": 307.0799865722656, + "width": 60.47998046875, + "height": 24.47998046875 + }, { + "x0": 579.5999755859375, + "y0": 282.6000061035156, + "x1": 632.8800048828125, + "y1": 307.0799865722656, + "width": 53.280029296875, + "height": 24.47998046875 + }, { + "x0": 633.5999755859375, + "y0": 282.6000061035156, + "x1": 682.2000122070312, + "y1": 307.0799865722656, + "width": 48.60003662109375, + "height": 24.47998046875 + }, { + "x0": 682.9199829101562, + "y0": 282.6000061035156, + "x1": 736.2000122070312, + "y1": 307.0799865722656, + "width": 53.280029296875, + "height": 24.47998046875 + }, { + "x0": 185.39999389648438, + "y0": 257.0400085449219, + "x1": 265.67999267578125, + "y1": 281.8800048828125, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 266.3999938964844, + "y0": 257.0400085449219, + "x1": 351.0, + "y1": 281.8800048828125, + "width": 84.60000610351562, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 257.0400085449219, + "x1": 373.67999267578125, + "y1": 281.8800048828125, + "width": 21.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 374.3999938964844, + "y0": 257.0400085449219, + "x1": 427.67999267578125, + "y1": 281.8800048828125, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 257.0400085449219, + "x1": 463.67999267578125, + "y1": 281.8800048828125, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 257.0400085449219, + "x1": 517.6799926757812, + "y1": 281.8800048828125, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 518.4000244140625, + "y0": 257.0400085449219, + "x1": 578.8800048828125, + "y1": 281.8800048828125, + "width": 60.47998046875, + "height": 24.839996337890625 + }, { + "x0": 579.5999755859375, + "y0": 257.0400085449219, + "x1": 632.8800048828125, + "y1": 281.8800048828125, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 633.5999755859375, + "y0": 257.0400085449219, + "x1": 682.2000122070312, + "y1": 281.8800048828125, + "width": 48.60003662109375, + "height": 24.839996337890625 + }, { + "x0": 682.9199829101562, + "y0": 257.0400085449219, + "x1": 736.2000122070312, + "y1": 281.8800048828125, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 185.39999389648438, + "y0": 231.83999633789062, + "x1": 265.67999267578125, + "y1": 256.32000732421875, + "width": 80.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 266.3999938964844, + "y0": 231.83999633789062, + "x1": 351.0, + "y1": 256.32000732421875, + "width": 84.60000610351562, + "height": 24.480010986328125 + }, { + "x0": 351.7200012207031, + "y0": 231.83999633789062, + "x1": 373.67999267578125, + "y1": 256.32000732421875, + "width": 21.959991455078125, + "height": 24.480010986328125 + }, { + "x0": 374.3999938964844, + "y0": 231.83999633789062, + "x1": 427.67999267578125, + "y1": 256.32000732421875, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 428.3999938964844, + "y0": 231.83999633789062, + "x1": 463.67999267578125, + "y1": 256.32000732421875, + "width": 35.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 464.3999938964844, + "y0": 231.83999633789062, + "x1": 517.6799926757812, + "y1": 256.32000732421875, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 518.4000244140625, + "y0": 231.83999633789062, + "x1": 578.8800048828125, + "y1": 256.32000732421875, + "width": 60.47998046875, + "height": 24.480010986328125 + }, { + "x0": 579.5999755859375, + "y0": 231.83999633789062, + "x1": 632.8800048828125, + "y1": 256.32000732421875, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 633.5999755859375, + "y0": 231.83999633789062, + "x1": 682.2000122070312, + "y1": 256.32000732421875, + "width": 48.60003662109375, + "height": 24.480010986328125 + }, { + "x0": 682.9199829101562, + "y0": 231.83999633789062, + "x1": 736.2000122070312, + "y1": 256.32000732421875, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 185.39999389648438, + "y0": 206.27999877929688, + "x1": 265.67999267578125, + "y1": 231.1199951171875, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 266.3999938964844, + "y0": 206.27999877929688, + "x1": 351.0, + "y1": 231.1199951171875, + "width": 84.60000610351562, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 206.27999877929688, + "x1": 373.67999267578125, + "y1": 231.1199951171875, + "width": 21.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 374.3999938964844, + "y0": 206.27999877929688, + "x1": 427.67999267578125, + "y1": 231.1199951171875, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 206.27999877929688, + "x1": 463.67999267578125, + "y1": 231.1199951171875, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 206.27999877929688, + "x1": 517.6799926757812, + "y1": 231.1199951171875, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 518.4000244140625, + "y0": 206.27999877929688, + "x1": 578.8800048828125, + "y1": 231.1199951171875, + "width": 60.47998046875, + "height": 24.839996337890625 + }, { + "x0": 579.5999755859375, + "y0": 206.27999877929688, + "x1": 632.8800048828125, + "y1": 231.1199951171875, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 633.5999755859375, + "y0": 206.27999877929688, + "x1": 682.2000122070312, + "y1": 231.1199951171875, + "width": 48.60003662109375, + "height": 24.839996337890625 + }, { + "x0": 682.9199829101562, + "y0": 206.27999877929688, + "x1": 736.2000122070312, + "y1": 231.1199951171875, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 185.39999389648438, + "y0": 181.07998657226562, + "x1": 265.67999267578125, + "y1": 205.55999755859375, + "width": 80.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 266.3999938964844, + "y0": 181.07998657226562, + "x1": 351.0, + "y1": 205.55999755859375, + "width": 84.60000610351562, + "height": 24.480010986328125 + }, { + "x0": 351.7200012207031, + "y0": 181.07998657226562, + "x1": 373.67999267578125, + "y1": 205.55999755859375, + "width": 21.959991455078125, + "height": 24.480010986328125 + }, { + "x0": 374.3999938964844, + "y0": 181.07998657226562, + "x1": 427.67999267578125, + "y1": 205.55999755859375, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 428.3999938964844, + "y0": 181.07998657226562, + "x1": 463.67999267578125, + "y1": 205.55999755859375, + "width": 35.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 464.3999938964844, + "y0": 181.07998657226562, + "x1": 517.6799926757812, + "y1": 205.55999755859375, + "width": 53.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 518.4000244140625, + "y0": 181.07998657226562, + "x1": 578.8800048828125, + "y1": 205.55999755859375, + "width": 60.47998046875, + "height": 24.480010986328125 + }, { + "x0": 579.5999755859375, + "y0": 181.07998657226562, + "x1": 632.8800048828125, + "y1": 205.55999755859375, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 633.5999755859375, + "y0": 181.07998657226562, + "x1": 682.2000122070312, + "y1": 205.55999755859375, + "width": 48.60003662109375, + "height": 24.480010986328125 + }, { + "x0": 682.9199829101562, + "y0": 181.07998657226562, + "x1": 736.2000122070312, + "y1": 205.55999755859375, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 185.39999389648438, + "y0": 155.51998901367188, + "x1": 265.67999267578125, + "y1": 180.3599853515625, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 266.3999938964844, + "y0": 155.51998901367188, + "x1": 351.0, + "y1": 180.3599853515625, + "width": 84.60000610351562, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 155.51998901367188, + "x1": 373.67999267578125, + "y1": 180.3599853515625, + "width": 21.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 374.3999938964844, + "y0": 155.51998901367188, + "x1": 427.67999267578125, + "y1": 180.3599853515625, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 155.51998901367188, + "x1": 463.67999267578125, + "y1": 180.3599853515625, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 155.51998901367188, + "x1": 517.6799926757812, + "y1": 180.3599853515625, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 518.4000244140625, + "y0": 155.51998901367188, + "x1": 578.8800048828125, + "y1": 180.3599853515625, + "width": 60.47998046875, + "height": 24.839996337890625 + }, { + "x0": 579.5999755859375, + "y0": 155.51998901367188, + "x1": 632.8800048828125, + "y1": 180.3599853515625, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 633.5999755859375, + "y0": 155.51998901367188, + "x1": 682.2000122070312, + "y1": 180.3599853515625, + "width": 48.60003662109375, + "height": 24.839996337890625 + }, { + "x0": 682.9199829101562, + "y0": 155.51998901367188, + "x1": 736.2000122070312, + "y1": 180.3599853515625, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 185.39999389648438, + "y0": 129.95999145507812, + "x1": 265.67999267578125, + "y1": 154.79998779296875, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 266.3999938964844, + "y0": 129.95999145507812, + "x1": 351.0, + "y1": 154.79998779296875, + "width": 84.60000610351562, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 129.95999145507812, + "x1": 373.67999267578125, + "y1": 154.79998779296875, + "width": 21.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 374.3999938964844, + "y0": 129.95999145507812, + "x1": 427.67999267578125, + "y1": 154.79998779296875, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 129.95999145507812, + "x1": 463.67999267578125, + "y1": 154.79998779296875, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 129.95999145507812, + "x1": 517.6799926757812, + "y1": 154.79998779296875, + "width": 53.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 518.4000244140625, + "y0": 129.95999145507812, + "x1": 578.8800048828125, + "y1": 154.79998779296875, + "width": 60.47998046875, + "height": 24.839996337890625 + }, { + "x0": 579.5999755859375, + "y0": 129.95999145507812, + "x1": 632.8800048828125, + "y1": 154.79998779296875, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 633.5999755859375, + "y0": 129.95999145507812, + "x1": 682.2000122070312, + "y1": 154.79998779296875, + "width": 48.60003662109375, + "height": 24.839996337890625 + }, { + "x0": 682.9199829101562, + "y0": 129.95999145507812, + "x1": 736.2000122070312, + "y1": 154.79998779296875, + "width": 53.280029296875, + "height": 24.839996337890625 + } + ] + }, { + "pageInfo": { + "number": 32, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 72.72000122070312, + "y0": 456.1199951171875, + "x1": 130.67999267578125, + "y1": 491.0400085449219, + "width": 57.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 131.39999389648438, + "y0": 456.1199951171875, + "x1": 180.0, + "y1": 491.0400085449219, + "width": 48.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 180.72000122070312, + "y0": 456.1199951171875, + "x1": 261.0, + "y1": 491.0400085449219, + "width": 80.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 261.7200012207031, + "y0": 456.1199951171875, + "x1": 351.0, + "y1": 491.0400085449219, + "width": 89.27999877929688, + "height": 34.920013427734375 + }, { + "x0": 351.7200012207031, + "y0": 456.1199951171875, + "x1": 378.0, + "y1": 491.0400085449219, + "width": 26.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 378.7200012207031, + "y0": 456.1199951171875, + "x1": 427.67999267578125, + "y1": 491.0400085449219, + "width": 48.959991455078125, + "height": 34.920013427734375 + }, { + "x0": 428.3999938964844, + "y0": 456.1199951171875, + "x1": 463.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 34.920013427734375 + }, { + "x0": 464.3999938964844, + "y0": 456.1199951171875, + "x1": 513.0, + "y1": 491.0400085449219, + "width": 48.600006103515625, + "height": 34.920013427734375 + }, { + "x0": 513.719970703125, + "y0": 456.1199951171875, + "x1": 567.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 567.719970703125, + "y0": 456.1199951171875, + "x1": 621.0, + "y1": 491.0400085449219, + "width": 53.280029296875, + "height": 34.920013427734375 + }, { + "x0": 621.719970703125, + "y0": 456.1199951171875, + "x1": 679.6799926757812, + "y1": 491.0400085449219, + "width": 57.96002197265625, + "height": 34.920013427734375 + }, { + "x0": 680.4000244140625, + "y0": 456.1199951171875, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 44.27996826171875, + "height": 34.920013427734375 + }, { + "x0": 72.72000122070312, + "y0": 145.44000244140625, + "x1": 130.67999267578125, + "y1": 454.67999267578125, + "width": 57.959991455078125, + "height": 309.239990234375 + }, { + "x0": 131.39999389648438, + "y0": 145.44000244140625, + "x1": 180.0, + "y1": 454.67999267578125, + "width": 48.600006103515625, + "height": 309.239990234375 + }, { + "x0": 180.72000122070312, + "y0": 430.91998291015625, + "x1": 261.0, + "y1": 454.67999267578125, + "width": 80.27999877929688, + "height": 23.760009765625 + }, { + "x0": 261.7200012207031, + "y0": 430.91998291015625, + "x1": 351.0, + "y1": 454.67999267578125, + "width": 89.27999877929688, + "height": 23.760009765625 + }, { + "x0": 351.7200012207031, + "y0": 430.91998291015625, + "x1": 378.0, + "y1": 454.67999267578125, + "width": 26.279998779296875, + "height": 23.760009765625 + }, { + "x0": 378.7200012207031, + "y0": 430.91998291015625, + "x1": 427.67999267578125, + "y1": 454.67999267578125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 428.3999938964844, + "y0": 430.91998291015625, + "x1": 463.67999267578125, + "y1": 454.67999267578125, + "width": 35.279998779296875, + "height": 23.760009765625 + }, { + "x0": 464.3999938964844, + "y0": 430.91998291015625, + "x1": 513.0, + "y1": 454.67999267578125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 513.719970703125, + "y0": 430.91998291015625, + "x1": 567.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 23.760009765625 + }, { + "x0": 567.719970703125, + "y0": 430.91998291015625, + "x1": 621.0, + "y1": 454.67999267578125, + "width": 53.280029296875, + "height": 23.760009765625 + }, { + "x0": 621.719970703125, + "y0": 430.91998291015625, + "x1": 679.6799926757812, + "y1": 454.67999267578125, + "width": 57.96002197265625, + "height": 23.760009765625 + }, { + "x0": 680.4000244140625, + "y0": 430.91998291015625, + "x1": 724.6799926757812, + "y1": 454.67999267578125, + "width": 44.27996826171875, + "height": 23.760009765625 + }, { + "x0": 180.72000122070312, + "y0": 405.3599853515625, + "x1": 261.0, + "y1": 430.20001220703125, + "width": 80.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 261.7200012207031, + "y0": 405.3599853515625, + "x1": 351.0, + "y1": 430.20001220703125, + "width": 89.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 351.7200012207031, + "y0": 405.3599853515625, + "x1": 378.0, + "y1": 430.20001220703125, + "width": 26.279998779296875, + "height": 24.84002685546875 + }, { + "x0": 378.7200012207031, + "y0": 405.3599853515625, + "x1": 427.67999267578125, + "y1": 430.20001220703125, + "width": 48.959991455078125, + "height": 24.84002685546875 + }, { + "x0": 428.3999938964844, + "y0": 405.3599853515625, + "x1": 463.67999267578125, + "y1": 430.20001220703125, + "width": 35.279998779296875, + "height": 24.84002685546875 + }, { + "x0": 464.3999938964844, + "y0": 405.3599853515625, + "x1": 513.0, + "y1": 430.20001220703125, + "width": 48.600006103515625, + "height": 24.84002685546875 + }, { + "x0": 513.719970703125, + "y0": 405.3599853515625, + "x1": 567.0, + "y1": 430.20001220703125, + "width": 53.280029296875, + "height": 24.84002685546875 + }, { + "x0": 567.719970703125, + "y0": 405.3599853515625, + "x1": 621.0, + "y1": 430.20001220703125, + "width": 53.280029296875, + "height": 24.84002685546875 + }, { + "x0": 621.719970703125, + "y0": 405.3599853515625, + "x1": 679.6799926757812, + "y1": 430.20001220703125, + "width": 57.96002197265625, + "height": 24.84002685546875 + }, { + "x0": 680.4000244140625, + "y0": 405.3599853515625, + "x1": 724.6799926757812, + "y1": 430.20001220703125, + "width": 44.27996826171875, + "height": 24.84002685546875 + }, { + "x0": 180.72000122070312, + "y0": 380.1600036621094, + "x1": 261.0, + "y1": 404.6400146484375, + "width": 80.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 261.7200012207031, + "y0": 380.1600036621094, + "x1": 351.0, + "y1": 404.6400146484375, + "width": 89.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 351.7200012207031, + "y0": 380.1600036621094, + "x1": 378.0, + "y1": 404.6400146484375, + "width": 26.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 378.7200012207031, + "y0": 380.1600036621094, + "x1": 427.67999267578125, + "y1": 404.6400146484375, + "width": 48.959991455078125, + "height": 24.480010986328125 + }, { + "x0": 428.3999938964844, + "y0": 380.1600036621094, + "x1": 463.67999267578125, + "y1": 404.6400146484375, + "width": 35.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 464.3999938964844, + "y0": 380.1600036621094, + "x1": 513.0, + "y1": 404.6400146484375, + "width": 48.600006103515625, + "height": 24.480010986328125 + }, { + "x0": 513.719970703125, + "y0": 380.1600036621094, + "x1": 567.0, + "y1": 404.6400146484375, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 567.719970703125, + "y0": 380.1600036621094, + "x1": 621.0, + "y1": 404.6400146484375, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 621.719970703125, + "y0": 380.1600036621094, + "x1": 679.6799926757812, + "y1": 404.6400146484375, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 680.4000244140625, + "y0": 380.1600036621094, + "x1": 724.6799926757812, + "y1": 404.6400146484375, + "width": 44.27996826171875, + "height": 24.480010986328125 + }, { + "x0": 180.72000122070312, + "y0": 357.8399963378906, + "x1": 261.0, + "y1": 379.44000244140625, + "width": 80.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 357.8399963378906, + "x1": 351.0, + "y1": 379.44000244140625, + "width": 89.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 357.8399963378906, + "x1": 378.0, + "y1": 379.44000244140625, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 357.8399963378906, + "x1": 427.67999267578125, + "y1": 379.44000244140625, + "width": 48.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 357.8399963378906, + "x1": 463.67999267578125, + "y1": 379.44000244140625, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 357.8399963378906, + "x1": 513.0, + "y1": 379.44000244140625, + "width": 48.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 357.8399963378906, + "x1": 567.0, + "y1": 379.44000244140625, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 357.8399963378906, + "x1": 621.0, + "y1": 379.44000244140625, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 357.8399963378906, + "x1": 679.6799926757812, + "y1": 379.44000244140625, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 357.8399963378906, + "x1": 724.6799926757812, + "y1": 379.44000244140625, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 332.6400146484375, + "x1": 261.0, + "y1": 357.1199951171875, + "width": 80.27999877929688, + "height": 24.47998046875 + }, { + "x0": 261.7200012207031, + "y0": 332.6400146484375, + "x1": 351.0, + "y1": 357.1199951171875, + "width": 89.27999877929688, + "height": 24.47998046875 + }, { + "x0": 351.7200012207031, + "y0": 332.6400146484375, + "x1": 378.0, + "y1": 357.1199951171875, + "width": 26.279998779296875, + "height": 24.47998046875 + }, { + "x0": 378.7200012207031, + "y0": 332.6400146484375, + "x1": 427.67999267578125, + "y1": 357.1199951171875, + "width": 48.959991455078125, + "height": 24.47998046875 + }, { + "x0": 428.3999938964844, + "y0": 332.6400146484375, + "x1": 463.67999267578125, + "y1": 357.1199951171875, + "width": 35.279998779296875, + "height": 24.47998046875 + }, { + "x0": 464.3999938964844, + "y0": 332.6400146484375, + "x1": 513.0, + "y1": 357.1199951171875, + "width": 48.600006103515625, + "height": 24.47998046875 + }, { + "x0": 513.719970703125, + "y0": 332.6400146484375, + "x1": 567.0, + "y1": 357.1199951171875, + "width": 53.280029296875, + "height": 24.47998046875 + }, { + "x0": 567.719970703125, + "y0": 332.6400146484375, + "x1": 621.0, + "y1": 357.1199951171875, + "width": 53.280029296875, + "height": 24.47998046875 + }, { + "x0": 621.719970703125, + "y0": 332.6400146484375, + "x1": 679.6799926757812, + "y1": 357.1199951171875, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 680.4000244140625, + "y0": 332.6400146484375, + "x1": 724.6799926757812, + "y1": 357.1199951171875, + "width": 44.27996826171875, + "height": 24.47998046875 + }, { + "x0": 180.72000122070312, + "y0": 310.32000732421875, + "x1": 261.0, + "y1": 331.9200134277344, + "width": 80.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 310.32000732421875, + "x1": 351.0, + "y1": 331.9200134277344, + "width": 89.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 310.32000732421875, + "x1": 378.0, + "y1": 331.9200134277344, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 310.32000732421875, + "x1": 427.67999267578125, + "y1": 331.9200134277344, + "width": 48.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 310.32000732421875, + "x1": 463.67999267578125, + "y1": 331.9200134277344, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 310.32000732421875, + "x1": 513.0, + "y1": 331.9200134277344, + "width": 48.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 310.32000732421875, + "x1": 567.0, + "y1": 331.9200134277344, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 310.32000732421875, + "x1": 621.0, + "y1": 331.9200134277344, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 310.32000732421875, + "x1": 679.6799926757812, + "y1": 331.9200134277344, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 310.32000732421875, + "x1": 724.6799926757812, + "y1": 331.9200134277344, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 284.760009765625, + "x1": 261.0, + "y1": 309.6000061035156, + "width": 80.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 261.7200012207031, + "y0": 284.760009765625, + "x1": 351.0, + "y1": 309.6000061035156, + "width": 89.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 351.7200012207031, + "y0": 284.760009765625, + "x1": 378.0, + "y1": 309.6000061035156, + "width": 26.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 378.7200012207031, + "y0": 284.760009765625, + "x1": 427.67999267578125, + "y1": 309.6000061035156, + "width": 48.959991455078125, + "height": 24.839996337890625 + }, { + "x0": 428.3999938964844, + "y0": 284.760009765625, + "x1": 463.67999267578125, + "y1": 309.6000061035156, + "width": 35.279998779296875, + "height": 24.839996337890625 + }, { + "x0": 464.3999938964844, + "y0": 284.760009765625, + "x1": 513.0, + "y1": 309.6000061035156, + "width": 48.600006103515625, + "height": 24.839996337890625 + }, { + "x0": 513.719970703125, + "y0": 284.760009765625, + "x1": 567.0, + "y1": 309.6000061035156, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 567.719970703125, + "y0": 284.760009765625, + "x1": 621.0, + "y1": 309.6000061035156, + "width": 53.280029296875, + "height": 24.839996337890625 + }, { + "x0": 621.719970703125, + "y0": 284.760009765625, + "x1": 679.6799926757812, + "y1": 309.6000061035156, + "width": 57.96002197265625, + "height": 24.839996337890625 + }, { + "x0": 680.4000244140625, + "y0": 284.760009765625, + "x1": 724.6799926757812, + "y1": 309.6000061035156, + "width": 44.27996826171875, + "height": 24.839996337890625 + }, { + "x0": 180.72000122070312, + "y0": 259.55999755859375, + "x1": 261.0, + "y1": 284.0400085449219, + "width": 80.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 261.7200012207031, + "y0": 259.55999755859375, + "x1": 351.0, + "y1": 284.0400085449219, + "width": 89.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 351.7200012207031, + "y0": 259.55999755859375, + "x1": 378.0, + "y1": 284.0400085449219, + "width": 26.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 378.7200012207031, + "y0": 259.55999755859375, + "x1": 427.67999267578125, + "y1": 284.0400085449219, + "width": 48.959991455078125, + "height": 24.480010986328125 + }, { + "x0": 428.3999938964844, + "y0": 259.55999755859375, + "x1": 463.67999267578125, + "y1": 284.0400085449219, + "width": 35.279998779296875, + "height": 24.480010986328125 + }, { + "x0": 464.3999938964844, + "y0": 259.55999755859375, + "x1": 513.0, + "y1": 284.0400085449219, + "width": 48.600006103515625, + "height": 24.480010986328125 + }, { + "x0": 513.719970703125, + "y0": 259.55999755859375, + "x1": 567.0, + "y1": 284.0400085449219, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 567.719970703125, + "y0": 259.55999755859375, + "x1": 621.0, + "y1": 284.0400085449219, + "width": 53.280029296875, + "height": 24.480010986328125 + }, { + "x0": 621.719970703125, + "y0": 259.55999755859375, + "x1": 679.6799926757812, + "y1": 284.0400085449219, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 680.4000244140625, + "y0": 259.55999755859375, + "x1": 724.6799926757812, + "y1": 284.0400085449219, + "width": 44.27996826171875, + "height": 24.480010986328125 + }, { + "x0": 180.72000122070312, + "y0": 237.239990234375, + "x1": 261.0, + "y1": 258.8399963378906, + "width": 80.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 237.239990234375, + "x1": 351.0, + "y1": 258.8399963378906, + "width": 89.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 237.239990234375, + "x1": 378.0, + "y1": 258.8399963378906, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 237.239990234375, + "x1": 427.67999267578125, + "y1": 258.8399963378906, + "width": 48.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 237.239990234375, + "x1": 463.67999267578125, + "y1": 258.8399963378906, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 237.239990234375, + "x1": 513.0, + "y1": 258.8399963378906, + "width": 48.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 237.239990234375, + "x1": 567.0, + "y1": 258.8399963378906, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 237.239990234375, + "x1": 621.0, + "y1": 258.8399963378906, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 237.239990234375, + "x1": 679.6799926757812, + "y1": 258.8399963378906, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 237.239990234375, + "x1": 724.6799926757812, + "y1": 258.8399963378906, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 212.04000854492188, + "x1": 261.0, + "y1": 236.51998901367188, + "width": 80.27999877929688, + "height": 24.47998046875 + }, { + "x0": 261.7200012207031, + "y0": 212.04000854492188, + "x1": 351.0, + "y1": 236.51998901367188, + "width": 89.27999877929688, + "height": 24.47998046875 + }, { + "x0": 351.7200012207031, + "y0": 212.04000854492188, + "x1": 378.0, + "y1": 236.51998901367188, + "width": 26.279998779296875, + "height": 24.47998046875 + }, { + "x0": 378.7200012207031, + "y0": 212.04000854492188, + "x1": 427.67999267578125, + "y1": 236.51998901367188, + "width": 48.959991455078125, + "height": 24.47998046875 + }, { + "x0": 428.3999938964844, + "y0": 212.04000854492188, + "x1": 463.67999267578125, + "y1": 236.51998901367188, + "width": 35.279998779296875, + "height": 24.47998046875 + }, { + "x0": 464.3999938964844, + "y0": 212.04000854492188, + "x1": 513.0, + "y1": 236.51998901367188, + "width": 48.600006103515625, + "height": 24.47998046875 + }, { + "x0": 513.719970703125, + "y0": 212.04000854492188, + "x1": 567.0, + "y1": 236.51998901367188, + "width": 53.280029296875, + "height": 24.47998046875 + }, { + "x0": 567.719970703125, + "y0": 212.04000854492188, + "x1": 621.0, + "y1": 236.51998901367188, + "width": 53.280029296875, + "height": 24.47998046875 + }, { + "x0": 621.719970703125, + "y0": 212.04000854492188, + "x1": 679.6799926757812, + "y1": 236.51998901367188, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 680.4000244140625, + "y0": 212.04000854492188, + "x1": 724.6799926757812, + "y1": 236.51998901367188, + "width": 44.27996826171875, + "height": 24.47998046875 + }, { + "x0": 180.72000122070312, + "y0": 189.72000122070312, + "x1": 261.0, + "y1": 211.32000732421875, + "width": 80.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 189.72000122070312, + "x1": 351.0, + "y1": 211.32000732421875, + "width": 89.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 189.72000122070312, + "x1": 378.0, + "y1": 211.32000732421875, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 189.72000122070312, + "x1": 427.67999267578125, + "y1": 211.32000732421875, + "width": 48.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 189.72000122070312, + "x1": 463.67999267578125, + "y1": 211.32000732421875, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 189.72000122070312, + "x1": 513.0, + "y1": 211.32000732421875, + "width": 48.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 189.72000122070312, + "x1": 567.0, + "y1": 211.32000732421875, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 189.72000122070312, + "x1": 621.0, + "y1": 211.32000732421875, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 189.72000122070312, + "x1": 679.6799926757812, + "y1": 211.32000732421875, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 189.72000122070312, + "x1": 724.6799926757812, + "y1": 211.32000732421875, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 167.39999389648438, + "x1": 261.0, + "y1": 189.0, + "width": 80.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 261.7200012207031, + "y0": 167.39999389648438, + "x1": 351.0, + "y1": 189.0, + "width": 89.27999877929688, + "height": 21.600006103515625 + }, { + "x0": 351.7200012207031, + "y0": 167.39999389648438, + "x1": 378.0, + "y1": 189.0, + "width": 26.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 378.7200012207031, + "y0": 167.39999389648438, + "x1": 427.67999267578125, + "y1": 189.0, + "width": 48.959991455078125, + "height": 21.600006103515625 + }, { + "x0": 428.3999938964844, + "y0": 167.39999389648438, + "x1": 463.67999267578125, + "y1": 189.0, + "width": 35.279998779296875, + "height": 21.600006103515625 + }, { + "x0": 464.3999938964844, + "y0": 167.39999389648438, + "x1": 513.0, + "y1": 189.0, + "width": 48.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 513.719970703125, + "y0": 167.39999389648438, + "x1": 567.0, + "y1": 189.0, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 567.719970703125, + "y0": 167.39999389648438, + "x1": 621.0, + "y1": 189.0, + "width": 53.280029296875, + "height": 21.600006103515625 + }, { + "x0": 621.719970703125, + "y0": 167.39999389648438, + "x1": 679.6799926757812, + "y1": 189.0, + "width": 57.96002197265625, + "height": 21.600006103515625 + }, { + "x0": 680.4000244140625, + "y0": 167.39999389648438, + "x1": 724.6799926757812, + "y1": 189.0, + "width": 44.27996826171875, + "height": 21.600006103515625 + }, { + "x0": 180.72000122070312, + "y0": 145.44000244140625, + "x1": 261.0, + "y1": 166.67999267578125, + "width": 80.27999877929688, + "height": 21.239990234375 + }, { + "x0": 261.7200012207031, + "y0": 145.44000244140625, + "x1": 351.0, + "y1": 166.67999267578125, + "width": 89.27999877929688, + "height": 21.239990234375 + }, { + "x0": 351.7200012207031, + "y0": 145.44000244140625, + "x1": 378.0, + "y1": 166.67999267578125, + "width": 26.279998779296875, + "height": 21.239990234375 + }, { + "x0": 378.7200012207031, + "y0": 145.44000244140625, + "x1": 427.67999267578125, + "y1": 166.67999267578125, + "width": 48.959991455078125, + "height": 21.239990234375 + }, { + "x0": 428.3999938964844, + "y0": 145.44000244140625, + "x1": 463.67999267578125, + "y1": 166.67999267578125, + "width": 35.279998779296875, + "height": 21.239990234375 + }, { + "x0": 464.3999938964844, + "y0": 145.44000244140625, + "x1": 513.0, + "y1": 166.67999267578125, + "width": 48.600006103515625, + "height": 21.239990234375 + }, { + "x0": 513.719970703125, + "y0": 145.44000244140625, + "x1": 567.0, + "y1": 166.67999267578125, + "width": 53.280029296875, + "height": 21.239990234375 + }, { + "x0": 567.719970703125, + "y0": 145.44000244140625, + "x1": 621.0, + "y1": 166.67999267578125, + "width": 53.280029296875, + "height": 21.239990234375 + }, { + "x0": 621.719970703125, + "y0": 145.44000244140625, + "x1": 679.6799926757812, + "y1": 166.67999267578125, + "width": 57.96002197265625, + "height": 21.239990234375 + }, { + "x0": 680.4000244140625, + "y0": 145.44000244140625, + "x1": 724.6799926757812, + "y1": 166.67999267578125, + "width": 44.27996826171875, + "height": 21.239990234375 + } + ] + }, { + "pageInfo": { + "number": 33, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 68.04000091552734, + "y0": 453.96002197265625, + "x1": 126.0, + "y1": 493.91998291015625, + "width": 57.959999084472656, + "height": 39.9599609375 + }, { + "x0": 126.72000122070312, + "y0": 453.96002197265625, + "x1": 157.67999267578125, + "y1": 493.91998291015625, + "width": 30.959991455078125, + "height": 39.9599609375 + }, { + "x0": 158.39999389648438, + "y0": 453.96002197265625, + "x1": 211.67999267578125, + "y1": 493.91998291015625, + "width": 53.279998779296875, + "height": 39.9599609375 + }, { + "x0": 212.39999389648438, + "y0": 453.96002197265625, + "x1": 247.67999267578125, + "y1": 493.91998291015625, + "width": 35.279998779296875, + "height": 39.9599609375 + }, { + "x0": 248.39999389648438, + "y0": 453.96002197265625, + "x1": 288.0, + "y1": 493.91998291015625, + "width": 39.600006103515625, + "height": 39.9599609375 + }, { + "x0": 288.7200012207031, + "y0": 453.96002197265625, + "x1": 315.0, + "y1": 493.91998291015625, + "width": 26.279998779296875, + "height": 39.9599609375 + }, { + "x0": 315.7200012207031, + "y0": 453.96002197265625, + "x1": 360.0, + "y1": 493.91998291015625, + "width": 44.279998779296875, + "height": 39.9599609375 + }, { + "x0": 360.7200012207031, + "y0": 453.96002197265625, + "x1": 405.0, + "y1": 493.91998291015625, + "width": 44.279998779296875, + "height": 39.9599609375 + }, { + "x0": 405.7200012207031, + "y0": 478.08001708984375, + "x1": 724.6799926757812, + "y1": 493.91998291015625, + "width": 318.9599914550781, + "height": 15.8399658203125 + }, { + "x0": 405.7200012207031, + "y0": 453.96002197265625, + "x1": 444.9599914550781, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 445.67999267578125, + "y0": 453.96002197265625, + "x1": 484.9200134277344, + "y1": 477.3599853515625, + "width": 39.240020751953125, + "height": 23.39996337890625 + }, { + "x0": 485.6400146484375, + "y0": 453.96002197265625, + "x1": 524.8800048828125, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 525.5999755859375, + "y0": 453.96002197265625, + "x1": 564.8400268554688, + "y1": 477.3599853515625, + "width": 39.24005126953125, + "height": 23.39996337890625 + }, { + "x0": 565.5599975585938, + "y0": 453.96002197265625, + "x1": 604.7999877929688, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 605.52001953125, + "y0": 453.96002197265625, + "x1": 644.760009765625, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 645.47998046875, + "y0": 453.96002197265625, + "x1": 684.719970703125, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 685.4400024414062, + "y0": 453.96002197265625, + "x1": 724.6799926757812, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 68.04000091552734, + "y0": 151.20001220703125, + "x1": 126.0, + "y1": 452.1600036621094, + "width": 57.959999084472656, + "height": 300.9599914550781 + }, { + "x0": 126.72000122070312, + "y0": 151.20001220703125, + "x1": 157.67999267578125, + "y1": 452.1600036621094, + "width": 30.959991455078125, + "height": 300.9599914550781 + }, { + "x0": 158.39999389648438, + "y0": 151.20001220703125, + "x1": 211.67999267578125, + "y1": 452.1600036621094, + "width": 53.279998779296875, + "height": 300.9599914550781 + }, { + "x0": 212.39999389648438, + "y0": 429.8399963378906, + "x1": 247.67999267578125, + "y1": 452.1600036621094, + "width": 35.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 248.39999389648438, + "y0": 429.8399963378906, + "x1": 288.0, + "y1": 452.1600036621094, + "width": 39.600006103515625, + "height": 22.32000732421875 + }, { + "x0": 288.7200012207031, + "y0": 429.8399963378906, + "x1": 315.0, + "y1": 452.1600036621094, + "width": 26.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 315.7200012207031, + "y0": 429.8399963378906, + "x1": 360.0, + "y1": 452.1600036621094, + "width": 44.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 360.7200012207031, + "y0": 429.8399963378906, + "x1": 405.0, + "y1": 452.1600036621094, + "width": 44.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 405.7200012207031, + "y0": 429.8399963378906, + "x1": 444.9599914550781, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 445.67999267578125, + "y0": 429.8399963378906, + "x1": 484.9200134277344, + "y1": 452.1600036621094, + "width": 39.240020751953125, + "height": 22.32000732421875 + }, { + "x0": 485.6400146484375, + "y0": 429.8399963378906, + "x1": 524.8800048828125, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 525.5999755859375, + "y0": 429.8399963378906, + "x1": 564.8400268554688, + "y1": 452.1600036621094, + "width": 39.24005126953125, + "height": 22.32000732421875 + }, { + "x0": 565.5599975585938, + "y0": 429.8399963378906, + "x1": 604.7999877929688, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 605.52001953125, + "y0": 429.8399963378906, + "x1": 644.760009765625, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 645.47998046875, + "y0": 429.8399963378906, + "x1": 684.719970703125, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 685.4400024414062, + "y0": 429.8399963378906, + "x1": 724.6799926757812, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 212.39999389648438, + "y0": 290.5199890136719, + "x1": 247.67999267578125, + "y1": 429.1199951171875, + "width": 35.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 248.39999389648438, + "y0": 290.5199890136719, + "x1": 288.0, + "y1": 429.1199951171875, + "width": 39.600006103515625, + "height": 138.60000610351562 + }, { + "x0": 288.7200012207031, + "y0": 290.5199890136719, + "x1": 315.0, + "y1": 429.1199951171875, + "width": 26.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 315.7200012207031, + "y0": 290.5199890136719, + "x1": 360.0, + "y1": 429.1199951171875, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 360.7200012207031, + "y0": 290.5199890136719, + "x1": 405.0, + "y1": 429.1199951171875, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 405.7200012207031, + "y0": 290.5199890136719, + "x1": 444.9599914550781, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 445.67999267578125, + "y0": 290.5199890136719, + "x1": 484.9200134277344, + "y1": 429.1199951171875, + "width": 39.240020751953125, + "height": 138.60000610351562 + }, { + "x0": 485.6400146484375, + "y0": 290.5199890136719, + "x1": 524.8800048828125, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 525.5999755859375, + "y0": 290.5199890136719, + "x1": 564.8400268554688, + "y1": 429.1199951171875, + "width": 39.24005126953125, + "height": 138.60000610351562 + }, { + "x0": 565.5599975585938, + "y0": 290.5199890136719, + "x1": 604.7999877929688, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 605.52001953125, + "y0": 290.5199890136719, + "x1": 644.760009765625, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 645.47998046875, + "y0": 290.5199890136719, + "x1": 684.719970703125, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 685.4400024414062, + "y0": 290.5199890136719, + "x1": 724.6799926757812, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 212.39999389648438, + "y0": 151.20001220703125, + "x1": 247.67999267578125, + "y1": 289.79998779296875, + "width": 35.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 248.39999389648438, + "y0": 151.20001220703125, + "x1": 288.0, + "y1": 289.79998779296875, + "width": 39.600006103515625, + "height": 138.5999755859375 + }, { + "x0": 288.7200012207031, + "y0": 151.20001220703125, + "x1": 315.0, + "y1": 289.79998779296875, + "width": 26.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 315.7200012207031, + "y0": 151.20001220703125, + "x1": 360.0, + "y1": 289.79998779296875, + "width": 44.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 360.7200012207031, + "y0": 151.20001220703125, + "x1": 405.0, + "y1": 289.79998779296875, + "width": 44.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 405.7200012207031, + "y0": 151.20001220703125, + "x1": 444.9599914550781, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 445.67999267578125, + "y0": 151.20001220703125, + "x1": 484.9200134277344, + "y1": 289.79998779296875, + "width": 39.240020751953125, + "height": 138.5999755859375 + }, { + "x0": 485.6400146484375, + "y0": 151.20001220703125, + "x1": 524.8800048828125, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 525.5999755859375, + "y0": 151.20001220703125, + "x1": 564.8400268554688, + "y1": 289.79998779296875, + "width": 39.24005126953125, + "height": 138.5999755859375 + }, { + "x0": 565.5599975585938, + "y0": 151.20001220703125, + "x1": 604.7999877929688, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 605.52001953125, + "y0": 151.20001220703125, + "x1": 644.760009765625, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 645.47998046875, + "y0": 151.20001220703125, + "x1": 684.719970703125, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 685.4400024414062, + "y0": 151.20001220703125, + "x1": 724.6799926757812, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + } + ] + }, { + "pageInfo": { + "number": 34, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 68.04000091552734, + "y0": 450.7200012207031, + "x1": 126.0, + "y1": 491.0400085449219, + "width": 57.959999084472656, + "height": 40.32000732421875 + }, { + "x0": 126.72000122070312, + "y0": 450.7200012207031, + "x1": 157.67999267578125, + "y1": 491.0400085449219, + "width": 30.959991455078125, + "height": 40.32000732421875 + }, { + "x0": 158.39999389648438, + "y0": 450.7200012207031, + "x1": 211.67999267578125, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 212.39999389648438, + "y0": 450.7200012207031, + "x1": 247.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 248.39999389648438, + "y0": 450.7200012207031, + "x1": 288.0, + "y1": 491.0400085449219, + "width": 39.600006103515625, + "height": 40.32000732421875 + }, { + "x0": 288.7200012207031, + "y0": 450.7200012207031, + "x1": 315.0, + "y1": 491.0400085449219, + "width": 26.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 315.7200012207031, + "y0": 450.7200012207031, + "x1": 360.0, + "y1": 491.0400085449219, + "width": 44.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 360.7200012207031, + "y0": 450.7200012207031, + "x1": 405.0, + "y1": 491.0400085449219, + "width": 44.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 405.7200012207031, + "y0": 475.20001220703125, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 318.9599914550781, + "height": 15.839996337890625 + }, { + "x0": 405.7200012207031, + "y0": 450.7200012207031, + "x1": 444.9599914550781, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 445.67999267578125, + "y0": 450.7200012207031, + "x1": 484.9200134277344, + "y1": 474.47998046875, + "width": 39.240020751953125, + "height": 23.759979248046875 + }, { + "x0": 485.6400146484375, + "y0": 450.7200012207031, + "x1": 524.8800048828125, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 525.5999755859375, + "y0": 450.7200012207031, + "x1": 564.8400268554688, + "y1": 474.47998046875, + "width": 39.24005126953125, + "height": 23.759979248046875 + }, { + "x0": 565.5599975585938, + "y0": 450.7200012207031, + "x1": 604.7999877929688, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 605.52001953125, + "y0": 450.7200012207031, + "x1": 644.760009765625, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 645.47998046875, + "y0": 450.7200012207031, + "x1": 684.719970703125, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 685.4400024414062, + "y0": 450.7200012207031, + "x1": 724.6799926757812, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 68.04000091552734, + "y0": 148.32000732421875, + "x1": 126.0, + "y1": 449.2799987792969, + "width": 57.959999084472656, + "height": 300.9599914550781 + }, { + "x0": 126.72000122070312, + "y0": 148.32000732421875, + "x1": 157.67999267578125, + "y1": 449.2799987792969, + "width": 30.959991455078125, + "height": 300.9599914550781 + }, { + "x0": 158.39999389648438, + "y0": 148.32000732421875, + "x1": 211.67999267578125, + "y1": 449.2799987792969, + "width": 53.279998779296875, + "height": 300.9599914550781 + }, { + "x0": 212.39999389648438, + "y0": 426.6000061035156, + "x1": 247.67999267578125, + "y1": 449.2799987792969, + "width": 35.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 248.39999389648438, + "y0": 426.6000061035156, + "x1": 288.0, + "y1": 449.2799987792969, + "width": 39.600006103515625, + "height": 22.67999267578125 + }, { + "x0": 288.7200012207031, + "y0": 426.6000061035156, + "x1": 315.0, + "y1": 449.2799987792969, + "width": 26.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 315.7200012207031, + "y0": 426.6000061035156, + "x1": 360.0, + "y1": 449.2799987792969, + "width": 44.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 360.7200012207031, + "y0": 426.6000061035156, + "x1": 405.0, + "y1": 449.2799987792969, + "width": 44.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 405.7200012207031, + "y0": 426.6000061035156, + "x1": 444.9599914550781, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 445.67999267578125, + "y0": 426.6000061035156, + "x1": 484.9200134277344, + "y1": 449.2799987792969, + "width": 39.240020751953125, + "height": 22.67999267578125 + }, { + "x0": 485.6400146484375, + "y0": 426.6000061035156, + "x1": 524.8800048828125, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 525.5999755859375, + "y0": 426.6000061035156, + "x1": 564.8400268554688, + "y1": 449.2799987792969, + "width": 39.24005126953125, + "height": 22.67999267578125 + }, { + "x0": 565.5599975585938, + "y0": 426.6000061035156, + "x1": 604.7999877929688, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 605.52001953125, + "y0": 426.6000061035156, + "x1": 644.760009765625, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 645.47998046875, + "y0": 426.6000061035156, + "x1": 684.719970703125, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 685.4400024414062, + "y0": 426.6000061035156, + "x1": 724.6799926757812, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 212.39999389648438, + "y0": 287.6400146484375, + "x1": 247.67999267578125, + "y1": 425.8800048828125, + "width": 35.279998779296875, + "height": 138.239990234375 + }, { + "x0": 248.39999389648438, + "y0": 287.6400146484375, + "x1": 288.0, + "y1": 425.8800048828125, + "width": 39.600006103515625, + "height": 138.239990234375 + }, { + "x0": 288.7200012207031, + "y0": 287.6400146484375, + "x1": 315.0, + "y1": 425.8800048828125, + "width": 26.279998779296875, + "height": 138.239990234375 + }, { + "x0": 315.7200012207031, + "y0": 287.6400146484375, + "x1": 360.0, + "y1": 425.8800048828125, + "width": 44.279998779296875, + "height": 138.239990234375 + }, { + "x0": 360.7200012207031, + "y0": 287.6400146484375, + "x1": 405.0, + "y1": 425.8800048828125, + "width": 44.279998779296875, + "height": 138.239990234375 + }, { + "x0": 405.7200012207031, + "y0": 287.6400146484375, + "x1": 444.9599914550781, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 445.67999267578125, + "y0": 287.6400146484375, + "x1": 484.9200134277344, + "y1": 425.8800048828125, + "width": 39.240020751953125, + "height": 138.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 287.6400146484375, + "x1": 524.8800048828125, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 525.5999755859375, + "y0": 287.6400146484375, + "x1": 564.8400268554688, + "y1": 425.8800048828125, + "width": 39.24005126953125, + "height": 138.239990234375 + }, { + "x0": 565.5599975585938, + "y0": 287.6400146484375, + "x1": 604.7999877929688, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 605.52001953125, + "y0": 287.6400146484375, + "x1": 644.760009765625, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 645.47998046875, + "y0": 287.6400146484375, + "x1": 684.719970703125, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 685.4400024414062, + "y0": 287.6400146484375, + "x1": 724.6799926757812, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 212.39999389648438, + "y0": 148.32000732421875, + "x1": 247.67999267578125, + "y1": 286.9200134277344, + "width": 35.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 248.39999389648438, + "y0": 148.32000732421875, + "x1": 288.0, + "y1": 286.9200134277344, + "width": 39.600006103515625, + "height": 138.60000610351562 + }, { + "x0": 288.7200012207031, + "y0": 148.32000732421875, + "x1": 315.0, + "y1": 286.9200134277344, + "width": 26.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 315.7200012207031, + "y0": 148.32000732421875, + "x1": 360.0, + "y1": 286.9200134277344, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 360.7200012207031, + "y0": 148.32000732421875, + "x1": 405.0, + "y1": 286.9200134277344, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 405.7200012207031, + "y0": 148.32000732421875, + "x1": 444.9599914550781, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 445.67999267578125, + "y0": 148.32000732421875, + "x1": 484.9200134277344, + "y1": 286.9200134277344, + "width": 39.240020751953125, + "height": 138.60000610351562 + }, { + "x0": 485.6400146484375, + "y0": 148.32000732421875, + "x1": 524.8800048828125, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 525.5999755859375, + "y0": 148.32000732421875, + "x1": 564.8400268554688, + "y1": 286.9200134277344, + "width": 39.24005126953125, + "height": 138.60000610351562 + }, { + "x0": 565.5599975585938, + "y0": 148.32000732421875, + "x1": 604.7999877929688, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 605.52001953125, + "y0": 148.32000732421875, + "x1": 644.760009765625, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 645.47998046875, + "y0": 148.32000732421875, + "x1": 684.719970703125, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 685.4400024414062, + "y0": 148.32000732421875, + "x1": 724.6799926757812, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + } + ] + }, { + "pageInfo": { + "number": 35, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 68.04000091552734, + "y0": 453.96002197265625, + "x1": 126.0, + "y1": 493.91998291015625, + "width": 57.959999084472656, + "height": 39.9599609375 + }, { + "x0": 126.72000122070312, + "y0": 453.96002197265625, + "x1": 157.67999267578125, + "y1": 493.91998291015625, + "width": 30.959991455078125, + "height": 39.9599609375 + }, { + "x0": 158.39999389648438, + "y0": 453.96002197265625, + "x1": 211.67999267578125, + "y1": 493.91998291015625, + "width": 53.279998779296875, + "height": 39.9599609375 + }, { + "x0": 212.39999389648438, + "y0": 453.96002197265625, + "x1": 247.67999267578125, + "y1": 493.91998291015625, + "width": 35.279998779296875, + "height": 39.9599609375 + }, { + "x0": 248.39999389648438, + "y0": 453.96002197265625, + "x1": 288.0, + "y1": 493.91998291015625, + "width": 39.600006103515625, + "height": 39.9599609375 + }, { + "x0": 288.7200012207031, + "y0": 453.96002197265625, + "x1": 315.0, + "y1": 493.91998291015625, + "width": 26.279998779296875, + "height": 39.9599609375 + }, { + "x0": 315.7200012207031, + "y0": 453.96002197265625, + "x1": 360.0, + "y1": 493.91998291015625, + "width": 44.279998779296875, + "height": 39.9599609375 + }, { + "x0": 360.7200012207031, + "y0": 453.96002197265625, + "x1": 405.0, + "y1": 493.91998291015625, + "width": 44.279998779296875, + "height": 39.9599609375 + }, { + "x0": 405.7200012207031, + "y0": 478.08001708984375, + "x1": 724.6799926757812, + "y1": 493.91998291015625, + "width": 318.9599914550781, + "height": 15.8399658203125 + }, { + "x0": 405.7200012207031, + "y0": 453.96002197265625, + "x1": 444.9599914550781, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 445.67999267578125, + "y0": 453.96002197265625, + "x1": 484.9200134277344, + "y1": 477.3599853515625, + "width": 39.240020751953125, + "height": 23.39996337890625 + }, { + "x0": 485.6400146484375, + "y0": 453.96002197265625, + "x1": 524.8800048828125, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 525.5999755859375, + "y0": 453.96002197265625, + "x1": 564.8400268554688, + "y1": 477.3599853515625, + "width": 39.24005126953125, + "height": 23.39996337890625 + }, { + "x0": 565.5599975585938, + "y0": 453.96002197265625, + "x1": 604.7999877929688, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 605.52001953125, + "y0": 453.96002197265625, + "x1": 644.760009765625, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 645.47998046875, + "y0": 453.96002197265625, + "x1": 684.719970703125, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 685.4400024414062, + "y0": 453.96002197265625, + "x1": 724.6799926757812, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 68.04000091552734, + "y0": 151.20001220703125, + "x1": 126.0, + "y1": 452.1600036621094, + "width": 57.959999084472656, + "height": 300.9599914550781 + }, { + "x0": 126.72000122070312, + "y0": 151.20001220703125, + "x1": 157.67999267578125, + "y1": 452.1600036621094, + "width": 30.959991455078125, + "height": 300.9599914550781 + }, { + "x0": 158.39999389648438, + "y0": 151.20001220703125, + "x1": 211.67999267578125, + "y1": 452.1600036621094, + "width": 53.279998779296875, + "height": 300.9599914550781 + }, { + "x0": 212.39999389648438, + "y0": 429.8399963378906, + "x1": 247.67999267578125, + "y1": 452.1600036621094, + "width": 35.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 248.39999389648438, + "y0": 429.8399963378906, + "x1": 288.0, + "y1": 452.1600036621094, + "width": 39.600006103515625, + "height": 22.32000732421875 + }, { + "x0": 288.7200012207031, + "y0": 429.8399963378906, + "x1": 315.0, + "y1": 452.1600036621094, + "width": 26.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 315.7200012207031, + "y0": 429.8399963378906, + "x1": 360.0, + "y1": 452.1600036621094, + "width": 44.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 360.7200012207031, + "y0": 429.8399963378906, + "x1": 405.0, + "y1": 452.1600036621094, + "width": 44.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 405.7200012207031, + "y0": 429.8399963378906, + "x1": 444.9599914550781, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 445.67999267578125, + "y0": 429.8399963378906, + "x1": 484.9200134277344, + "y1": 452.1600036621094, + "width": 39.240020751953125, + "height": 22.32000732421875 + }, { + "x0": 485.6400146484375, + "y0": 429.8399963378906, + "x1": 524.8800048828125, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 525.5999755859375, + "y0": 429.8399963378906, + "x1": 564.8400268554688, + "y1": 452.1600036621094, + "width": 39.24005126953125, + "height": 22.32000732421875 + }, { + "x0": 565.5599975585938, + "y0": 429.8399963378906, + "x1": 604.7999877929688, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 605.52001953125, + "y0": 429.8399963378906, + "x1": 644.760009765625, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 645.47998046875, + "y0": 429.8399963378906, + "x1": 684.719970703125, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 685.4400024414062, + "y0": 429.8399963378906, + "x1": 724.6799926757812, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 212.39999389648438, + "y0": 290.5199890136719, + "x1": 247.67999267578125, + "y1": 429.1199951171875, + "width": 35.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 248.39999389648438, + "y0": 290.5199890136719, + "x1": 288.0, + "y1": 429.1199951171875, + "width": 39.600006103515625, + "height": 138.60000610351562 + }, { + "x0": 288.7200012207031, + "y0": 290.5199890136719, + "x1": 315.0, + "y1": 429.1199951171875, + "width": 26.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 315.7200012207031, + "y0": 290.5199890136719, + "x1": 360.0, + "y1": 429.1199951171875, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 360.7200012207031, + "y0": 290.5199890136719, + "x1": 405.0, + "y1": 429.1199951171875, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 405.7200012207031, + "y0": 290.5199890136719, + "x1": 444.9599914550781, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 445.67999267578125, + "y0": 290.5199890136719, + "x1": 484.9200134277344, + "y1": 429.1199951171875, + "width": 39.240020751953125, + "height": 138.60000610351562 + }, { + "x0": 485.6400146484375, + "y0": 290.5199890136719, + "x1": 524.8800048828125, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 525.5999755859375, + "y0": 290.5199890136719, + "x1": 564.8400268554688, + "y1": 429.1199951171875, + "width": 39.24005126953125, + "height": 138.60000610351562 + }, { + "x0": 565.5599975585938, + "y0": 290.5199890136719, + "x1": 604.7999877929688, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 605.52001953125, + "y0": 290.5199890136719, + "x1": 644.760009765625, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 645.47998046875, + "y0": 290.5199890136719, + "x1": 684.719970703125, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 685.4400024414062, + "y0": 290.5199890136719, + "x1": 724.6799926757812, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 212.39999389648438, + "y0": 151.20001220703125, + "x1": 247.67999267578125, + "y1": 289.79998779296875, + "width": 35.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 248.39999389648438, + "y0": 151.20001220703125, + "x1": 288.0, + "y1": 289.79998779296875, + "width": 39.600006103515625, + "height": 138.5999755859375 + }, { + "x0": 288.7200012207031, + "y0": 151.20001220703125, + "x1": 315.0, + "y1": 289.79998779296875, + "width": 26.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 315.7200012207031, + "y0": 151.20001220703125, + "x1": 360.0, + "y1": 289.79998779296875, + "width": 44.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 360.7200012207031, + "y0": 151.20001220703125, + "x1": 405.0, + "y1": 289.79998779296875, + "width": 44.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 405.7200012207031, + "y0": 151.20001220703125, + "x1": 444.9599914550781, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 445.67999267578125, + "y0": 151.20001220703125, + "x1": 484.9200134277344, + "y1": 289.79998779296875, + "width": 39.240020751953125, + "height": 138.5999755859375 + }, { + "x0": 485.6400146484375, + "y0": 151.20001220703125, + "x1": 524.8800048828125, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 525.5999755859375, + "y0": 151.20001220703125, + "x1": 564.8400268554688, + "y1": 289.79998779296875, + "width": 39.24005126953125, + "height": 138.5999755859375 + }, { + "x0": 565.5599975585938, + "y0": 151.20001220703125, + "x1": 604.7999877929688, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 605.52001953125, + "y0": 151.20001220703125, + "x1": 644.760009765625, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 645.47998046875, + "y0": 151.20001220703125, + "x1": 684.719970703125, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 685.4400024414062, + "y0": 151.20001220703125, + "x1": 724.6799926757812, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + } + ] + }, { + "pageInfo": { + "number": 36, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 68.04000091552734, + "y0": 453.96002197265625, + "x1": 126.0, + "y1": 493.91998291015625, + "width": 57.959999084472656, + "height": 39.9599609375 + }, { + "x0": 126.72000122070312, + "y0": 453.96002197265625, + "x1": 157.67999267578125, + "y1": 493.91998291015625, + "width": 30.959991455078125, + "height": 39.9599609375 + }, { + "x0": 158.39999389648438, + "y0": 453.96002197265625, + "x1": 211.67999267578125, + "y1": 493.91998291015625, + "width": 53.279998779296875, + "height": 39.9599609375 + }, { + "x0": 212.39999389648438, + "y0": 453.96002197265625, + "x1": 247.67999267578125, + "y1": 493.91998291015625, + "width": 35.279998779296875, + "height": 39.9599609375 + }, { + "x0": 248.39999389648438, + "y0": 453.96002197265625, + "x1": 288.0, + "y1": 493.91998291015625, + "width": 39.600006103515625, + "height": 39.9599609375 + }, { + "x0": 288.7200012207031, + "y0": 453.96002197265625, + "x1": 315.0, + "y1": 493.91998291015625, + "width": 26.279998779296875, + "height": 39.9599609375 + }, { + "x0": 315.7200012207031, + "y0": 453.96002197265625, + "x1": 360.0, + "y1": 493.91998291015625, + "width": 44.279998779296875, + "height": 39.9599609375 + }, { + "x0": 360.7200012207031, + "y0": 453.96002197265625, + "x1": 405.0, + "y1": 493.91998291015625, + "width": 44.279998779296875, + "height": 39.9599609375 + }, { + "x0": 405.7200012207031, + "y0": 478.08001708984375, + "x1": 724.6799926757812, + "y1": 493.91998291015625, + "width": 318.9599914550781, + "height": 15.8399658203125 + }, { + "x0": 405.7200012207031, + "y0": 453.96002197265625, + "x1": 444.9599914550781, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 445.67999267578125, + "y0": 453.96002197265625, + "x1": 484.9200134277344, + "y1": 477.3599853515625, + "width": 39.240020751953125, + "height": 23.39996337890625 + }, { + "x0": 485.6400146484375, + "y0": 453.96002197265625, + "x1": 524.8800048828125, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 525.5999755859375, + "y0": 453.96002197265625, + "x1": 564.8400268554688, + "y1": 477.3599853515625, + "width": 39.24005126953125, + "height": 23.39996337890625 + }, { + "x0": 565.5599975585938, + "y0": 453.96002197265625, + "x1": 604.7999877929688, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 605.52001953125, + "y0": 453.96002197265625, + "x1": 644.760009765625, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 645.47998046875, + "y0": 453.96002197265625, + "x1": 684.719970703125, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 685.4400024414062, + "y0": 453.96002197265625, + "x1": 724.6799926757812, + "y1": 477.3599853515625, + "width": 39.239990234375, + "height": 23.39996337890625 + }, { + "x0": 68.04000091552734, + "y0": 151.20001220703125, + "x1": 126.0, + "y1": 452.1600036621094, + "width": 57.959999084472656, + "height": 300.9599914550781 + }, { + "x0": 126.72000122070312, + "y0": 151.20001220703125, + "x1": 157.67999267578125, + "y1": 452.1600036621094, + "width": 30.959991455078125, + "height": 300.9599914550781 + }, { + "x0": 158.39999389648438, + "y0": 151.20001220703125, + "x1": 211.67999267578125, + "y1": 452.1600036621094, + "width": 53.279998779296875, + "height": 300.9599914550781 + }, { + "x0": 212.39999389648438, + "y0": 429.8399963378906, + "x1": 247.67999267578125, + "y1": 452.1600036621094, + "width": 35.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 248.39999389648438, + "y0": 429.8399963378906, + "x1": 288.0, + "y1": 452.1600036621094, + "width": 39.600006103515625, + "height": 22.32000732421875 + }, { + "x0": 288.7200012207031, + "y0": 429.8399963378906, + "x1": 315.0, + "y1": 452.1600036621094, + "width": 26.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 315.7200012207031, + "y0": 429.8399963378906, + "x1": 360.0, + "y1": 452.1600036621094, + "width": 44.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 360.7200012207031, + "y0": 429.8399963378906, + "x1": 405.0, + "y1": 452.1600036621094, + "width": 44.279998779296875, + "height": 22.32000732421875 + }, { + "x0": 405.7200012207031, + "y0": 429.8399963378906, + "x1": 444.9599914550781, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 445.67999267578125, + "y0": 429.8399963378906, + "x1": 484.9200134277344, + "y1": 452.1600036621094, + "width": 39.240020751953125, + "height": 22.32000732421875 + }, { + "x0": 485.6400146484375, + "y0": 429.8399963378906, + "x1": 524.8800048828125, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 525.5999755859375, + "y0": 429.8399963378906, + "x1": 564.8400268554688, + "y1": 452.1600036621094, + "width": 39.24005126953125, + "height": 22.32000732421875 + }, { + "x0": 565.5599975585938, + "y0": 429.8399963378906, + "x1": 604.7999877929688, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 605.52001953125, + "y0": 429.8399963378906, + "x1": 644.760009765625, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 645.47998046875, + "y0": 429.8399963378906, + "x1": 684.719970703125, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 685.4400024414062, + "y0": 429.8399963378906, + "x1": 724.6799926757812, + "y1": 452.1600036621094, + "width": 39.239990234375, + "height": 22.32000732421875 + }, { + "x0": 212.39999389648438, + "y0": 290.5199890136719, + "x1": 247.67999267578125, + "y1": 429.1199951171875, + "width": 35.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 248.39999389648438, + "y0": 290.5199890136719, + "x1": 288.0, + "y1": 429.1199951171875, + "width": 39.600006103515625, + "height": 138.60000610351562 + }, { + "x0": 288.7200012207031, + "y0": 290.5199890136719, + "x1": 315.0, + "y1": 429.1199951171875, + "width": 26.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 315.7200012207031, + "y0": 290.5199890136719, + "x1": 360.0, + "y1": 429.1199951171875, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 360.7200012207031, + "y0": 290.5199890136719, + "x1": 405.0, + "y1": 429.1199951171875, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 405.7200012207031, + "y0": 290.5199890136719, + "x1": 444.9599914550781, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 445.67999267578125, + "y0": 290.5199890136719, + "x1": 484.9200134277344, + "y1": 429.1199951171875, + "width": 39.240020751953125, + "height": 138.60000610351562 + }, { + "x0": 485.6400146484375, + "y0": 290.5199890136719, + "x1": 524.8800048828125, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 525.5999755859375, + "y0": 290.5199890136719, + "x1": 564.8400268554688, + "y1": 429.1199951171875, + "width": 39.24005126953125, + "height": 138.60000610351562 + }, { + "x0": 565.5599975585938, + "y0": 290.5199890136719, + "x1": 604.7999877929688, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 605.52001953125, + "y0": 290.5199890136719, + "x1": 644.760009765625, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 645.47998046875, + "y0": 290.5199890136719, + "x1": 684.719970703125, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 685.4400024414062, + "y0": 290.5199890136719, + "x1": 724.6799926757812, + "y1": 429.1199951171875, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 212.39999389648438, + "y0": 151.20001220703125, + "x1": 247.67999267578125, + "y1": 289.79998779296875, + "width": 35.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 248.39999389648438, + "y0": 151.20001220703125, + "x1": 288.0, + "y1": 289.79998779296875, + "width": 39.600006103515625, + "height": 138.5999755859375 + }, { + "x0": 288.7200012207031, + "y0": 151.20001220703125, + "x1": 315.0, + "y1": 289.79998779296875, + "width": 26.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 315.7200012207031, + "y0": 151.20001220703125, + "x1": 360.0, + "y1": 289.79998779296875, + "width": 44.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 360.7200012207031, + "y0": 151.20001220703125, + "x1": 405.0, + "y1": 289.79998779296875, + "width": 44.279998779296875, + "height": 138.5999755859375 + }, { + "x0": 405.7200012207031, + "y0": 151.20001220703125, + "x1": 444.9599914550781, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 445.67999267578125, + "y0": 151.20001220703125, + "x1": 484.9200134277344, + "y1": 289.79998779296875, + "width": 39.240020751953125, + "height": 138.5999755859375 + }, { + "x0": 485.6400146484375, + "y0": 151.20001220703125, + "x1": 524.8800048828125, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 525.5999755859375, + "y0": 151.20001220703125, + "x1": 564.8400268554688, + "y1": 289.79998779296875, + "width": 39.24005126953125, + "height": 138.5999755859375 + }, { + "x0": 565.5599975585938, + "y0": 151.20001220703125, + "x1": 604.7999877929688, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 605.52001953125, + "y0": 151.20001220703125, + "x1": 644.760009765625, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 645.47998046875, + "y0": 151.20001220703125, + "x1": 684.719970703125, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + }, { + "x0": 685.4400024414062, + "y0": 151.20001220703125, + "x1": 724.6799926757812, + "y1": 289.79998779296875, + "width": 39.239990234375, + "height": 138.5999755859375 + } + ] + }, { + "pageInfo": { + "number": 37, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 68.04000091552734, + "y0": 450.7200012207031, + "x1": 126.0, + "y1": 491.0400085449219, + "width": 57.959999084472656, + "height": 40.32000732421875 + }, { + "x0": 126.72000122070312, + "y0": 450.7200012207031, + "x1": 157.67999267578125, + "y1": 491.0400085449219, + "width": 30.959991455078125, + "height": 40.32000732421875 + }, { + "x0": 158.39999389648438, + "y0": 450.7200012207031, + "x1": 211.67999267578125, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 212.39999389648438, + "y0": 450.7200012207031, + "x1": 247.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 248.39999389648438, + "y0": 450.7200012207031, + "x1": 288.0, + "y1": 491.0400085449219, + "width": 39.600006103515625, + "height": 40.32000732421875 + }, { + "x0": 288.7200012207031, + "y0": 450.7200012207031, + "x1": 315.0, + "y1": 491.0400085449219, + "width": 26.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 315.7200012207031, + "y0": 450.7200012207031, + "x1": 360.0, + "y1": 491.0400085449219, + "width": 44.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 360.7200012207031, + "y0": 450.7200012207031, + "x1": 405.0, + "y1": 491.0400085449219, + "width": 44.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 405.7200012207031, + "y0": 475.20001220703125, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 318.9599914550781, + "height": 15.839996337890625 + }, { + "x0": 405.7200012207031, + "y0": 450.7200012207031, + "x1": 444.9599914550781, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 445.67999267578125, + "y0": 450.7200012207031, + "x1": 484.9200134277344, + "y1": 474.47998046875, + "width": 39.240020751953125, + "height": 23.759979248046875 + }, { + "x0": 485.6400146484375, + "y0": 450.7200012207031, + "x1": 524.8800048828125, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 525.5999755859375, + "y0": 450.7200012207031, + "x1": 564.8400268554688, + "y1": 474.47998046875, + "width": 39.24005126953125, + "height": 23.759979248046875 + }, { + "x0": 565.5599975585938, + "y0": 450.7200012207031, + "x1": 604.7999877929688, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 605.52001953125, + "y0": 450.7200012207031, + "x1": 644.760009765625, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 645.47998046875, + "y0": 450.7200012207031, + "x1": 684.719970703125, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 685.4400024414062, + "y0": 450.7200012207031, + "x1": 724.6799926757812, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 68.04000091552734, + "y0": 148.32000732421875, + "x1": 126.0, + "y1": 449.2799987792969, + "width": 57.959999084472656, + "height": 300.9599914550781 + }, { + "x0": 126.72000122070312, + "y0": 148.32000732421875, + "x1": 157.67999267578125, + "y1": 449.2799987792969, + "width": 30.959991455078125, + "height": 300.9599914550781 + }, { + "x0": 158.39999389648438, + "y0": 148.32000732421875, + "x1": 211.67999267578125, + "y1": 449.2799987792969, + "width": 53.279998779296875, + "height": 300.9599914550781 + }, { + "x0": 212.39999389648438, + "y0": 426.6000061035156, + "x1": 247.67999267578125, + "y1": 449.2799987792969, + "width": 35.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 248.39999389648438, + "y0": 426.6000061035156, + "x1": 288.0, + "y1": 449.2799987792969, + "width": 39.600006103515625, + "height": 22.67999267578125 + }, { + "x0": 288.7200012207031, + "y0": 426.6000061035156, + "x1": 315.0, + "y1": 449.2799987792969, + "width": 26.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 315.7200012207031, + "y0": 426.6000061035156, + "x1": 360.0, + "y1": 449.2799987792969, + "width": 44.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 360.7200012207031, + "y0": 426.6000061035156, + "x1": 405.0, + "y1": 449.2799987792969, + "width": 44.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 405.7200012207031, + "y0": 426.6000061035156, + "x1": 444.9599914550781, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 445.67999267578125, + "y0": 426.6000061035156, + "x1": 484.9200134277344, + "y1": 449.2799987792969, + "width": 39.240020751953125, + "height": 22.67999267578125 + }, { + "x0": 485.6400146484375, + "y0": 426.6000061035156, + "x1": 524.8800048828125, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 525.5999755859375, + "y0": 426.6000061035156, + "x1": 564.8400268554688, + "y1": 449.2799987792969, + "width": 39.24005126953125, + "height": 22.67999267578125 + }, { + "x0": 565.5599975585938, + "y0": 426.6000061035156, + "x1": 604.7999877929688, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 605.52001953125, + "y0": 426.6000061035156, + "x1": 644.760009765625, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 645.47998046875, + "y0": 426.6000061035156, + "x1": 684.719970703125, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 685.4400024414062, + "y0": 426.6000061035156, + "x1": 724.6799926757812, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 212.39999389648438, + "y0": 287.6400146484375, + "x1": 247.67999267578125, + "y1": 425.8800048828125, + "width": 35.279998779296875, + "height": 138.239990234375 + }, { + "x0": 248.39999389648438, + "y0": 287.6400146484375, + "x1": 288.0, + "y1": 425.8800048828125, + "width": 39.600006103515625, + "height": 138.239990234375 + }, { + "x0": 288.7200012207031, + "y0": 287.6400146484375, + "x1": 315.0, + "y1": 425.8800048828125, + "width": 26.279998779296875, + "height": 138.239990234375 + }, { + "x0": 315.7200012207031, + "y0": 287.6400146484375, + "x1": 360.0, + "y1": 425.8800048828125, + "width": 44.279998779296875, + "height": 138.239990234375 + }, { + "x0": 360.7200012207031, + "y0": 287.6400146484375, + "x1": 405.0, + "y1": 425.8800048828125, + "width": 44.279998779296875, + "height": 138.239990234375 + }, { + "x0": 405.7200012207031, + "y0": 287.6400146484375, + "x1": 444.9599914550781, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 445.67999267578125, + "y0": 287.6400146484375, + "x1": 484.9200134277344, + "y1": 425.8800048828125, + "width": 39.240020751953125, + "height": 138.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 287.6400146484375, + "x1": 524.8800048828125, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 525.5999755859375, + "y0": 287.6400146484375, + "x1": 564.8400268554688, + "y1": 425.8800048828125, + "width": 39.24005126953125, + "height": 138.239990234375 + }, { + "x0": 565.5599975585938, + "y0": 287.6400146484375, + "x1": 604.7999877929688, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 605.52001953125, + "y0": 287.6400146484375, + "x1": 644.760009765625, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 645.47998046875, + "y0": 287.6400146484375, + "x1": 684.719970703125, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 685.4400024414062, + "y0": 287.6400146484375, + "x1": 724.6799926757812, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 212.39999389648438, + "y0": 148.32000732421875, + "x1": 247.67999267578125, + "y1": 286.9200134277344, + "width": 35.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 248.39999389648438, + "y0": 148.32000732421875, + "x1": 288.0, + "y1": 286.9200134277344, + "width": 39.600006103515625, + "height": 138.60000610351562 + }, { + "x0": 288.7200012207031, + "y0": 148.32000732421875, + "x1": 315.0, + "y1": 286.9200134277344, + "width": 26.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 315.7200012207031, + "y0": 148.32000732421875, + "x1": 360.0, + "y1": 286.9200134277344, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 360.7200012207031, + "y0": 148.32000732421875, + "x1": 405.0, + "y1": 286.9200134277344, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 405.7200012207031, + "y0": 148.32000732421875, + "x1": 444.9599914550781, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 445.67999267578125, + "y0": 148.32000732421875, + "x1": 484.9200134277344, + "y1": 286.9200134277344, + "width": 39.240020751953125, + "height": 138.60000610351562 + }, { + "x0": 485.6400146484375, + "y0": 148.32000732421875, + "x1": 524.8800048828125, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 525.5999755859375, + "y0": 148.32000732421875, + "x1": 564.8400268554688, + "y1": 286.9200134277344, + "width": 39.24005126953125, + "height": 138.60000610351562 + }, { + "x0": 565.5599975585938, + "y0": 148.32000732421875, + "x1": 604.7999877929688, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 605.52001953125, + "y0": 148.32000732421875, + "x1": 644.760009765625, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 645.47998046875, + "y0": 148.32000732421875, + "x1": 684.719970703125, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 685.4400024414062, + "y0": 148.32000732421875, + "x1": 724.6799926757812, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + } + ] + }, { + "pageInfo": { + "number": 38, + "rotation": 0, + "width": 792.0, + "height": 612.0 + }, + "tableCells": [{ + "x0": 68.04000091552734, + "y0": 450.7200012207031, + "x1": 126.0, + "y1": 491.0400085449219, + "width": 57.959999084472656, + "height": 40.32000732421875 + }, { + "x0": 126.72000122070312, + "y0": 450.7200012207031, + "x1": 157.67999267578125, + "y1": 491.0400085449219, + "width": 30.959991455078125, + "height": 40.32000732421875 + }, { + "x0": 158.39999389648438, + "y0": 450.7200012207031, + "x1": 211.67999267578125, + "y1": 491.0400085449219, + "width": 53.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 212.39999389648438, + "y0": 450.7200012207031, + "x1": 247.67999267578125, + "y1": 491.0400085449219, + "width": 35.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 248.39999389648438, + "y0": 450.7200012207031, + "x1": 288.0, + "y1": 491.0400085449219, + "width": 39.600006103515625, + "height": 40.32000732421875 + }, { + "x0": 288.7200012207031, + "y0": 450.7200012207031, + "x1": 315.0, + "y1": 491.0400085449219, + "width": 26.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 315.7200012207031, + "y0": 450.7200012207031, + "x1": 360.0, + "y1": 491.0400085449219, + "width": 44.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 360.7200012207031, + "y0": 450.7200012207031, + "x1": 405.0, + "y1": 491.0400085449219, + "width": 44.279998779296875, + "height": 40.32000732421875 + }, { + "x0": 405.7200012207031, + "y0": 475.20001220703125, + "x1": 724.6799926757812, + "y1": 491.0400085449219, + "width": 318.9599914550781, + "height": 15.839996337890625 + }, { + "x0": 405.7200012207031, + "y0": 450.7200012207031, + "x1": 444.9599914550781, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 445.67999267578125, + "y0": 450.7200012207031, + "x1": 484.9200134277344, + "y1": 474.47998046875, + "width": 39.240020751953125, + "height": 23.759979248046875 + }, { + "x0": 485.6400146484375, + "y0": 450.7200012207031, + "x1": 524.8800048828125, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 525.5999755859375, + "y0": 450.7200012207031, + "x1": 564.8400268554688, + "y1": 474.47998046875, + "width": 39.24005126953125, + "height": 23.759979248046875 + }, { + "x0": 565.5599975585938, + "y0": 450.7200012207031, + "x1": 604.7999877929688, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 605.52001953125, + "y0": 450.7200012207031, + "x1": 644.760009765625, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 645.47998046875, + "y0": 450.7200012207031, + "x1": 684.719970703125, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 685.4400024414062, + "y0": 450.7200012207031, + "x1": 724.6799926757812, + "y1": 474.47998046875, + "width": 39.239990234375, + "height": 23.759979248046875 + }, { + "x0": 68.04000091552734, + "y0": 148.32000732421875, + "x1": 126.0, + "y1": 449.2799987792969, + "width": 57.959999084472656, + "height": 300.9599914550781 + }, { + "x0": 126.72000122070312, + "y0": 148.32000732421875, + "x1": 157.67999267578125, + "y1": 449.2799987792969, + "width": 30.959991455078125, + "height": 300.9599914550781 + }, { + "x0": 158.39999389648438, + "y0": 148.32000732421875, + "x1": 211.67999267578125, + "y1": 449.2799987792969, + "width": 53.279998779296875, + "height": 300.9599914550781 + }, { + "x0": 212.39999389648438, + "y0": 426.6000061035156, + "x1": 247.67999267578125, + "y1": 449.2799987792969, + "width": 35.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 248.39999389648438, + "y0": 426.6000061035156, + "x1": 288.0, + "y1": 449.2799987792969, + "width": 39.600006103515625, + "height": 22.67999267578125 + }, { + "x0": 288.7200012207031, + "y0": 426.6000061035156, + "x1": 315.0, + "y1": 449.2799987792969, + "width": 26.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 315.7200012207031, + "y0": 426.6000061035156, + "x1": 360.0, + "y1": 449.2799987792969, + "width": 44.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 360.7200012207031, + "y0": 426.6000061035156, + "x1": 405.0, + "y1": 449.2799987792969, + "width": 44.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 405.7200012207031, + "y0": 426.6000061035156, + "x1": 444.9599914550781, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 445.67999267578125, + "y0": 426.6000061035156, + "x1": 484.9200134277344, + "y1": 449.2799987792969, + "width": 39.240020751953125, + "height": 22.67999267578125 + }, { + "x0": 485.6400146484375, + "y0": 426.6000061035156, + "x1": 524.8800048828125, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 525.5999755859375, + "y0": 426.6000061035156, + "x1": 564.8400268554688, + "y1": 449.2799987792969, + "width": 39.24005126953125, + "height": 22.67999267578125 + }, { + "x0": 565.5599975585938, + "y0": 426.6000061035156, + "x1": 604.7999877929688, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 605.52001953125, + "y0": 426.6000061035156, + "x1": 644.760009765625, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 645.47998046875, + "y0": 426.6000061035156, + "x1": 684.719970703125, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 685.4400024414062, + "y0": 426.6000061035156, + "x1": 724.6799926757812, + "y1": 449.2799987792969, + "width": 39.239990234375, + "height": 22.67999267578125 + }, { + "x0": 212.39999389648438, + "y0": 287.6400146484375, + "x1": 247.67999267578125, + "y1": 425.8800048828125, + "width": 35.279998779296875, + "height": 138.239990234375 + }, { + "x0": 248.39999389648438, + "y0": 287.6400146484375, + "x1": 288.0, + "y1": 425.8800048828125, + "width": 39.600006103515625, + "height": 138.239990234375 + }, { + "x0": 288.7200012207031, + "y0": 287.6400146484375, + "x1": 315.0, + "y1": 425.8800048828125, + "width": 26.279998779296875, + "height": 138.239990234375 + }, { + "x0": 315.7200012207031, + "y0": 287.6400146484375, + "x1": 360.0, + "y1": 425.8800048828125, + "width": 44.279998779296875, + "height": 138.239990234375 + }, { + "x0": 360.7200012207031, + "y0": 287.6400146484375, + "x1": 405.0, + "y1": 425.8800048828125, + "width": 44.279998779296875, + "height": 138.239990234375 + }, { + "x0": 405.7200012207031, + "y0": 287.6400146484375, + "x1": 444.9599914550781, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 445.67999267578125, + "y0": 287.6400146484375, + "x1": 484.9200134277344, + "y1": 425.8800048828125, + "width": 39.240020751953125, + "height": 138.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 287.6400146484375, + "x1": 524.8800048828125, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 525.5999755859375, + "y0": 287.6400146484375, + "x1": 564.8400268554688, + "y1": 425.8800048828125, + "width": 39.24005126953125, + "height": 138.239990234375 + }, { + "x0": 565.5599975585938, + "y0": 287.6400146484375, + "x1": 604.7999877929688, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 605.52001953125, + "y0": 287.6400146484375, + "x1": 644.760009765625, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 645.47998046875, + "y0": 287.6400146484375, + "x1": 684.719970703125, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 685.4400024414062, + "y0": 287.6400146484375, + "x1": 724.6799926757812, + "y1": 425.8800048828125, + "width": 39.239990234375, + "height": 138.239990234375 + }, { + "x0": 212.39999389648438, + "y0": 148.32000732421875, + "x1": 247.67999267578125, + "y1": 286.9200134277344, + "width": 35.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 248.39999389648438, + "y0": 148.32000732421875, + "x1": 288.0, + "y1": 286.9200134277344, + "width": 39.600006103515625, + "height": 138.60000610351562 + }, { + "x0": 288.7200012207031, + "y0": 148.32000732421875, + "x1": 315.0, + "y1": 286.9200134277344, + "width": 26.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 315.7200012207031, + "y0": 148.32000732421875, + "x1": 360.0, + "y1": 286.9200134277344, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 360.7200012207031, + "y0": 148.32000732421875, + "x1": 405.0, + "y1": 286.9200134277344, + "width": 44.279998779296875, + "height": 138.60000610351562 + }, { + "x0": 405.7200012207031, + "y0": 148.32000732421875, + "x1": 444.9599914550781, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 445.67999267578125, + "y0": 148.32000732421875, + "x1": 484.9200134277344, + "y1": 286.9200134277344, + "width": 39.240020751953125, + "height": 138.60000610351562 + }, { + "x0": 485.6400146484375, + "y0": 148.32000732421875, + "x1": 524.8800048828125, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 525.5999755859375, + "y0": 148.32000732421875, + "x1": 564.8400268554688, + "y1": 286.9200134277344, + "width": 39.24005126953125, + "height": 138.60000610351562 + }, { + "x0": 565.5599975585938, + "y0": 148.32000732421875, + "x1": 604.7999877929688, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 605.52001953125, + "y0": 148.32000732421875, + "x1": 644.760009765625, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 645.47998046875, + "y0": 148.32000732421875, + "x1": 684.719970703125, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + }, { + "x0": 685.4400024414062, + "y0": 148.32000732421875, + "x1": 724.6799926757812, + "y1": 286.9200134277344, + "width": 39.239990234375, + "height": 138.60000610351562 + } + ] + }, { + "pageInfo": { + "number": 41, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 641.1600341796875, + "x1": 299.8800048828125, + "y1": 667.4400024414062, + "width": 209.16000366210938, + "height": 26.27996826171875 + }, { + "x0": 300.6000061035156, + "y0": 641.1600341796875, + "x1": 522.0, + "y1": 667.4400024414062, + "width": 221.39999389648438, + "height": 26.27996826171875 + }, { + "x0": 90.72000122070312, + "y0": 615.5999755859375, + "x1": 299.8800048828125, + "y1": 640.4400024414062, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 615.5999755859375, + "x1": 522.0, + "y1": 640.4400024414062, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 588.239990234375, + "x1": 299.8800048828125, + "y1": 614.8800048828125, + "width": 209.16000366210938, + "height": 26.6400146484375 + }, { + "x0": 300.6000061035156, + "y0": 588.239990234375, + "x1": 522.0, + "y1": 614.8800048828125, + "width": 221.39999389648438, + "height": 26.6400146484375 + }, { + "x0": 90.72000122070312, + "y0": 562.6799926757812, + "x1": 299.8800048828125, + "y1": 587.52001953125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 562.6799926757812, + "x1": 522.0, + "y1": 587.52001953125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 537.47998046875, + "x1": 299.8800048828125, + "y1": 561.9600219726562, + "width": 209.16000366210938, + "height": 24.48004150390625 + }, { + "x0": 300.6000061035156, + "y0": 537.47998046875, + "x1": 522.0, + "y1": 561.9600219726562, + "width": 221.39999389648438, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 511.9200134277344, + "x1": 299.8800048828125, + "y1": 536.760009765625, + "width": 209.16000366210938, + "height": 24.839996337890625 + }, { + "x0": 300.6000061035156, + "y0": 511.9200134277344, + "x1": 522.0, + "y1": 536.760009765625, + "width": 221.39999389648438, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 486.3599853515625, + "x1": 299.8800048828125, + "y1": 511.20001220703125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 486.3599853515625, + "x1": 522.0, + "y1": 511.20001220703125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 460.79998779296875, + "x1": 299.8800048828125, + "y1": 485.6400146484375, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 460.79998779296875, + "x1": 522.0, + "y1": 485.6400146484375, + "width": 221.39999389648438, + "height": 24.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 42, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 656.280029296875, + "x1": 220.67999267578125, + "y1": 670.3200073242188, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 656.280029296875, + "x1": 380.1600036621094, + "y1": 670.3200073242188, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 656.280029296875, + "x1": 540.0, + "y1": 670.3200073242188, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 641.52001953125, + "x1": 220.67999267578125, + "y1": 655.5599975585938, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 641.52001953125, + "x1": 380.1600036621094, + "y1": 655.5599975585938, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 641.52001953125, + "x1": 540.0, + "y1": 655.5599975585938, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 626.760009765625, + "x1": 220.67999267578125, + "y1": 640.7999877929688, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 626.760009765625, + "x1": 380.1600036621094, + "y1": 640.7999877929688, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 626.760009765625, + "x1": 540.0, + "y1": 640.7999877929688, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 611.6400146484375, + "x1": 220.67999267578125, + "y1": 626.0399780273438, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 611.6400146484375, + "x1": 380.1600036621094, + "y1": 626.0399780273438, + "width": 158.760009765625, + "height": 14.39996337890625 + }, { + "x0": 380.8800048828125, + "y0": 611.6400146484375, + "x1": 540.0, + "y1": 626.0399780273438, + "width": 159.1199951171875, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 596.8800048828125, + "x1": 220.67999267578125, + "y1": 610.9199829101562, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 596.8800048828125, + "x1": 380.1600036621094, + "y1": 610.9199829101562, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 596.8800048828125, + "x1": 540.0, + "y1": 610.9199829101562, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 582.1199951171875, + "x1": 220.67999267578125, + "y1": 596.1600341796875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 582.1199951171875, + "x1": 380.1600036621094, + "y1": 596.1600341796875, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 582.1199951171875, + "x1": 540.0, + "y1": 596.1600341796875, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 567.3599853515625, + "x1": 220.67999267578125, + "y1": 581.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 567.3599853515625, + "x1": 380.1600036621094, + "y1": 581.4000244140625, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 567.3599853515625, + "x1": 540.0, + "y1": 581.4000244140625, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 552.5999755859375, + "x1": 220.67999267578125, + "y1": 566.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 552.5999755859375, + "x1": 380.1600036621094, + "y1": 566.6400146484375, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 552.5999755859375, + "x1": 540.0, + "y1": 566.6400146484375, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 537.47998046875, + "x1": 220.67999267578125, + "y1": 551.8800048828125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 537.47998046875, + "x1": 380.1600036621094, + "y1": 551.8800048828125, + "width": 158.760009765625, + "height": 14.4000244140625 + }, { + "x0": 380.8800048828125, + "y0": 537.47998046875, + "x1": 540.0, + "y1": 551.8800048828125, + "width": 159.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 522.719970703125, + "x1": 220.67999267578125, + "y1": 536.760009765625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 522.719970703125, + "x1": 380.1600036621094, + "y1": 536.760009765625, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 522.719970703125, + "x1": 540.0, + "y1": 536.760009765625, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 491.0400085449219, + "x1": 220.67999267578125, + "y1": 522.0, + "width": 129.95999145507812, + "height": 30.959991455078125 + }, { + "x0": 221.39999389648438, + "y0": 491.0400085449219, + "x1": 380.1600036621094, + "y1": 522.0, + "width": 158.760009765625, + "height": 30.959991455078125 + }, { + "x0": 380.8800048828125, + "y0": 491.0400085449219, + "x1": 540.0, + "y1": 522.0, + "width": 159.1199951171875, + "height": 30.959991455078125 + }, { + "x0": 90.72000122070312, + "y0": 475.55999755859375, + "x1": 220.67999267578125, + "y1": 490.32000732421875, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 475.55999755859375, + "x1": 380.1600036621094, + "y1": 490.32000732421875, + "width": 158.760009765625, + "height": 14.760009765625 + }, { + "x0": 380.8800048828125, + "y0": 475.55999755859375, + "x1": 540.0, + "y1": 490.32000732421875, + "width": 159.1199951171875, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 460.79998779296875, + "x1": 220.67999267578125, + "y1": 474.8399963378906, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 460.79998779296875, + "x1": 380.1600036621094, + "y1": 474.8399963378906, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 460.79998779296875, + "x1": 540.0, + "y1": 474.8399963378906, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 446.0400085449219, + "x1": 220.67999267578125, + "y1": 460.0799865722656, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 446.0400085449219, + "x1": 380.1600036621094, + "y1": 460.0799865722656, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 446.0400085449219, + "x1": 540.0, + "y1": 460.0799865722656, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 431.2799987792969, + "x1": 220.67999267578125, + "y1": 445.32000732421875, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 431.2799987792969, + "x1": 380.1600036621094, + "y1": 445.32000732421875, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 431.2799987792969, + "x1": 540.0, + "y1": 445.32000732421875, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 416.1600036621094, + "x1": 220.67999267578125, + "y1": 430.55999755859375, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 416.1600036621094, + "x1": 380.1600036621094, + "y1": 430.55999755859375, + "width": 158.760009765625, + "height": 14.399993896484375 + }, { + "x0": 380.8800048828125, + "y0": 416.1600036621094, + "x1": 540.0, + "y1": 430.55999755859375, + "width": 159.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 401.3999938964844, + "x1": 220.67999267578125, + "y1": 415.44000244140625, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 401.3999938964844, + "x1": 380.1600036621094, + "y1": 415.44000244140625, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 401.3999938964844, + "x1": 540.0, + "y1": 415.44000244140625, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 386.6400146484375, + "x1": 220.67999267578125, + "y1": 400.67999267578125, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 386.6400146484375, + "x1": 380.1600036621094, + "y1": 400.67999267578125, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 386.6400146484375, + "x1": 540.0, + "y1": 400.67999267578125, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 359.6400146484375, + "x1": 220.67999267578125, + "y1": 385.55999755859375, + "width": 129.95999145507812, + "height": 25.91998291015625 + }, { + "x0": 221.39999389648438, + "y0": 359.6400146484375, + "x1": 540.0, + "y1": 385.55999755859375, + "width": 318.6000061035156, + "height": 25.91998291015625 + }, { + "x0": 90.72000122070312, + "y0": 344.5199890136719, + "x1": 220.67999267578125, + "y1": 358.55999755859375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 344.5199890136719, + "x1": 378.0, + "y1": 358.55999755859375, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 378.7200012207031, + "y0": 344.5199890136719, + "x1": 540.0, + "y1": 358.55999755859375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 329.760009765625, + "x1": 220.67999267578125, + "y1": 343.79998779296875, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 329.760009765625, + "x1": 378.0, + "y1": 343.79998779296875, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 378.7200012207031, + "y0": 329.760009765625, + "x1": 540.0, + "y1": 343.79998779296875, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 315.0, + "x1": 220.67999267578125, + "y1": 329.0400085449219, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 315.0, + "x1": 378.0, + "y1": 329.0400085449219, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 378.7200012207031, + "y0": 315.0, + "x1": 540.0, + "y1": 329.0400085449219, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 299.8800048828125, + "x1": 220.67999267578125, + "y1": 314.2799987792969, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 299.8800048828125, + "x1": 378.0, + "y1": 314.2799987792969, + "width": 156.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 378.7200012207031, + "y0": 299.8800048828125, + "x1": 540.0, + "y1": 314.2799987792969, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 285.1199951171875, + "x1": 220.67999267578125, + "y1": 299.1600036621094, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 285.1199951171875, + "x1": 378.0, + "y1": 299.1600036621094, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 378.7200012207031, + "y0": 285.1199951171875, + "x1": 540.0, + "y1": 299.1600036621094, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 270.3599853515625, + "x1": 220.67999267578125, + "y1": 284.3999938964844, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 270.3599853515625, + "x1": 378.0, + "y1": 284.3999938964844, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 378.7200012207031, + "y0": 270.3599853515625, + "x1": 540.0, + "y1": 284.3999938964844, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 255.5999755859375, + "x1": 220.67999267578125, + "y1": 269.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 255.5999755859375, + "x1": 378.0, + "y1": 269.6400146484375, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 378.7200012207031, + "y0": 255.5999755859375, + "x1": 540.0, + "y1": 269.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 240.47998046875, + "x1": 220.67999267578125, + "y1": 254.8800048828125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 240.47998046875, + "x1": 378.0, + "y1": 254.8800048828125, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 378.7200012207031, + "y0": 240.47998046875, + "x1": 540.0, + "y1": 254.8800048828125, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 225.719970703125, + "x1": 220.67999267578125, + "y1": 239.760009765625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 225.719970703125, + "x1": 378.0, + "y1": 239.760009765625, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 378.7200012207031, + "y0": 225.719970703125, + "x1": 540.0, + "y1": 239.760009765625, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 210.96002197265625, + "x1": 220.67999267578125, + "y1": 225.0, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 210.96002197265625, + "x1": 378.0, + "y1": 225.0, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 378.7200012207031, + "y0": 210.96002197265625, + "x1": 540.0, + "y1": 225.0, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 179.280029296875, + "x1": 220.67999267578125, + "y1": 210.239990234375, + "width": 129.95999145507812, + "height": 30.9599609375 + }, { + "x0": 221.39999389648438, + "y0": 179.280029296875, + "x1": 378.0, + "y1": 210.239990234375, + "width": 156.60000610351562, + "height": 30.9599609375 + }, { + "x0": 378.7200012207031, + "y0": 179.280029296875, + "x1": 540.0, + "y1": 210.239990234375, + "width": 161.27999877929688, + "height": 30.9599609375 + }, { + "x0": 90.72000122070312, + "y0": 163.79998779296875, + "x1": 220.67999267578125, + "y1": 178.55999755859375, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 163.79998779296875, + "x1": 378.0, + "y1": 178.55999755859375, + "width": 156.60000610351562, + "height": 14.760009765625 + }, { + "x0": 378.7200012207031, + "y0": 163.79998779296875, + "x1": 540.0, + "y1": 178.55999755859375, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 149.03997802734375, + "x1": 220.67999267578125, + "y1": 163.08001708984375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 149.03997802734375, + "x1": 378.0, + "y1": 163.08001708984375, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 378.7200012207031, + "y0": 149.03997802734375, + "x1": 540.0, + "y1": 163.08001708984375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 134.280029296875, + "x1": 220.67999267578125, + "y1": 148.32000732421875, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 134.280029296875, + "x1": 378.0, + "y1": 148.32000732421875, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 378.7200012207031, + "y0": 134.280029296875, + "x1": 540.0, + "y1": 148.32000732421875, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 119.15997314453125, + "x1": 220.67999267578125, + "y1": 133.55999755859375, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 119.15997314453125, + "x1": 378.0, + "y1": 133.55999755859375, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 378.7200012207031, + "y0": 119.15997314453125, + "x1": 540.0, + "y1": 133.55999755859375, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 104.4000244140625, + "x1": 220.67999267578125, + "y1": 118.44000244140625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 104.4000244140625, + "x1": 378.0, + "y1": 118.44000244140625, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 378.7200012207031, + "y0": 104.4000244140625, + "x1": 540.0, + "y1": 118.44000244140625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 89.6400146484375, + "x1": 220.67999267578125, + "y1": 103.67999267578125, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 89.6400146484375, + "x1": 378.0, + "y1": 103.67999267578125, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 378.7200012207031, + "y0": 89.6400146484375, + "x1": 540.0, + "y1": 103.67999267578125, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 74.8800048828125, + "x1": 220.67999267578125, + "y1": 88.91998291015625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 74.8800048828125, + "x1": 378.0, + "y1": 88.91998291015625, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 378.7200012207031, + "y0": 74.8800048828125, + "x1": 540.0, + "y1": 88.91998291015625, + "width": 161.27999877929688, + "height": 14.03997802734375 + } + ] + }, { + "pageInfo": { + "number": 45, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 641.1600341796875, + "x1": 299.8800048828125, + "y1": 667.4400024414062, + "width": 209.16000366210938, + "height": 26.27996826171875 + }, { + "x0": 300.6000061035156, + "y0": 641.1600341796875, + "x1": 522.0, + "y1": 667.4400024414062, + "width": 221.39999389648438, + "height": 26.27996826171875 + }, { + "x0": 90.72000122070312, + "y0": 615.5999755859375, + "x1": 299.8800048828125, + "y1": 640.4400024414062, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 615.5999755859375, + "x1": 522.0, + "y1": 640.4400024414062, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 588.239990234375, + "x1": 299.8800048828125, + "y1": 614.8800048828125, + "width": 209.16000366210938, + "height": 26.6400146484375 + }, { + "x0": 300.6000061035156, + "y0": 588.239990234375, + "x1": 522.0, + "y1": 614.8800048828125, + "width": 221.39999389648438, + "height": 26.6400146484375 + }, { + "x0": 90.72000122070312, + "y0": 562.6799926757812, + "x1": 299.8800048828125, + "y1": 587.52001953125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 562.6799926757812, + "x1": 522.0, + "y1": 587.52001953125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 537.47998046875, + "x1": 299.8800048828125, + "y1": 561.9600219726562, + "width": 209.16000366210938, + "height": 24.48004150390625 + }, { + "x0": 300.6000061035156, + "y0": 537.47998046875, + "x1": 522.0, + "y1": 561.9600219726562, + "width": 221.39999389648438, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 511.9200134277344, + "x1": 299.8800048828125, + "y1": 536.760009765625, + "width": 209.16000366210938, + "height": 24.839996337890625 + }, { + "x0": 300.6000061035156, + "y0": 511.9200134277344, + "x1": 522.0, + "y1": 536.760009765625, + "width": 221.39999389648438, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 486.3599853515625, + "x1": 299.8800048828125, + "y1": 511.20001220703125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 486.3599853515625, + "x1": 522.0, + "y1": 511.20001220703125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 460.79998779296875, + "x1": 299.8800048828125, + "y1": 485.6400146484375, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 460.79998779296875, + "x1": 522.0, + "y1": 485.6400146484375, + "width": 221.39999389648438, + "height": 24.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 46, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 656.280029296875, + "x1": 220.67999267578125, + "y1": 670.3200073242188, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 656.280029296875, + "x1": 380.1600036621094, + "y1": 670.3200073242188, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 656.280029296875, + "x1": 540.0, + "y1": 670.3200073242188, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 641.52001953125, + "x1": 220.67999267578125, + "y1": 655.5599975585938, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 641.52001953125, + "x1": 380.1600036621094, + "y1": 655.5599975585938, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 641.52001953125, + "x1": 540.0, + "y1": 655.5599975585938, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 626.760009765625, + "x1": 220.67999267578125, + "y1": 640.7999877929688, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 626.760009765625, + "x1": 380.1600036621094, + "y1": 640.7999877929688, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 626.760009765625, + "x1": 540.0, + "y1": 640.7999877929688, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 611.6400146484375, + "x1": 220.67999267578125, + "y1": 626.0399780273438, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 611.6400146484375, + "x1": 380.1600036621094, + "y1": 626.0399780273438, + "width": 158.760009765625, + "height": 14.39996337890625 + }, { + "x0": 380.8800048828125, + "y0": 611.6400146484375, + "x1": 540.0, + "y1": 626.0399780273438, + "width": 159.1199951171875, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 596.8800048828125, + "x1": 220.67999267578125, + "y1": 610.9199829101562, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 596.8800048828125, + "x1": 380.1600036621094, + "y1": 610.9199829101562, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 596.8800048828125, + "x1": 540.0, + "y1": 610.9199829101562, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 582.1199951171875, + "x1": 220.67999267578125, + "y1": 596.1600341796875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 582.1199951171875, + "x1": 380.1600036621094, + "y1": 596.1600341796875, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 582.1199951171875, + "x1": 540.0, + "y1": 596.1600341796875, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 567.3599853515625, + "x1": 220.67999267578125, + "y1": 581.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 567.3599853515625, + "x1": 380.1600036621094, + "y1": 581.4000244140625, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 567.3599853515625, + "x1": 540.0, + "y1": 581.4000244140625, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 552.5999755859375, + "x1": 220.67999267578125, + "y1": 566.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 552.5999755859375, + "x1": 380.1600036621094, + "y1": 566.6400146484375, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 552.5999755859375, + "x1": 540.0, + "y1": 566.6400146484375, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 537.47998046875, + "x1": 220.67999267578125, + "y1": 551.8800048828125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 537.47998046875, + "x1": 380.1600036621094, + "y1": 551.8800048828125, + "width": 158.760009765625, + "height": 14.4000244140625 + }, { + "x0": 380.8800048828125, + "y0": 537.47998046875, + "x1": 540.0, + "y1": 551.8800048828125, + "width": 159.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 522.719970703125, + "x1": 220.67999267578125, + "y1": 536.760009765625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 522.719970703125, + "x1": 380.1600036621094, + "y1": 536.760009765625, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 522.719970703125, + "x1": 540.0, + "y1": 536.760009765625, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 491.0400085449219, + "x1": 220.67999267578125, + "y1": 522.0, + "width": 129.95999145507812, + "height": 30.959991455078125 + }, { + "x0": 221.39999389648438, + "y0": 491.0400085449219, + "x1": 380.1600036621094, + "y1": 522.0, + "width": 158.760009765625, + "height": 30.959991455078125 + }, { + "x0": 380.8800048828125, + "y0": 491.0400085449219, + "x1": 540.0, + "y1": 522.0, + "width": 159.1199951171875, + "height": 30.959991455078125 + }, { + "x0": 90.72000122070312, + "y0": 475.55999755859375, + "x1": 220.67999267578125, + "y1": 490.32000732421875, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 475.55999755859375, + "x1": 380.1600036621094, + "y1": 490.32000732421875, + "width": 158.760009765625, + "height": 14.760009765625 + }, { + "x0": 380.8800048828125, + "y0": 475.55999755859375, + "x1": 540.0, + "y1": 490.32000732421875, + "width": 159.1199951171875, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 460.79998779296875, + "x1": 220.67999267578125, + "y1": 474.8399963378906, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 460.79998779296875, + "x1": 380.1600036621094, + "y1": 474.8399963378906, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 460.79998779296875, + "x1": 540.0, + "y1": 474.8399963378906, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 446.0400085449219, + "x1": 220.67999267578125, + "y1": 460.0799865722656, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 446.0400085449219, + "x1": 380.1600036621094, + "y1": 460.0799865722656, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 446.0400085449219, + "x1": 540.0, + "y1": 460.0799865722656, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 431.2799987792969, + "x1": 220.67999267578125, + "y1": 445.32000732421875, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 431.2799987792969, + "x1": 380.1600036621094, + "y1": 445.32000732421875, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 431.2799987792969, + "x1": 540.0, + "y1": 445.32000732421875, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 416.1600036621094, + "x1": 220.67999267578125, + "y1": 430.55999755859375, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 416.1600036621094, + "x1": 380.1600036621094, + "y1": 430.55999755859375, + "width": 158.760009765625, + "height": 14.399993896484375 + }, { + "x0": 380.8800048828125, + "y0": 416.1600036621094, + "x1": 540.0, + "y1": 430.55999755859375, + "width": 159.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 401.3999938964844, + "x1": 220.67999267578125, + "y1": 415.44000244140625, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 401.3999938964844, + "x1": 380.1600036621094, + "y1": 415.44000244140625, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 401.3999938964844, + "x1": 540.0, + "y1": 415.44000244140625, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 386.6400146484375, + "x1": 220.67999267578125, + "y1": 400.67999267578125, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 386.6400146484375, + "x1": 380.1600036621094, + "y1": 400.67999267578125, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 386.6400146484375, + "x1": 540.0, + "y1": 400.67999267578125, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 359.6400146484375, + "x1": 220.67999267578125, + "y1": 385.55999755859375, + "width": 129.95999145507812, + "height": 25.91998291015625 + }, { + "x0": 221.39999389648438, + "y0": 359.6400146484375, + "x1": 540.0, + "y1": 385.55999755859375, + "width": 318.6000061035156, + "height": 25.91998291015625 + }, { + "x0": 90.72000122070312, + "y0": 344.5199890136719, + "x1": 220.67999267578125, + "y1": 358.55999755859375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 344.5199890136719, + "x1": 382.67999267578125, + "y1": 358.55999755859375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 344.5199890136719, + "x1": 540.0, + "y1": 358.55999755859375, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 329.760009765625, + "x1": 220.67999267578125, + "y1": 343.79998779296875, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 329.760009765625, + "x1": 382.67999267578125, + "y1": 343.79998779296875, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 329.760009765625, + "x1": 540.0, + "y1": 343.79998779296875, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 315.0, + "x1": 220.67999267578125, + "y1": 329.0400085449219, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 315.0, + "x1": 382.67999267578125, + "y1": 329.0400085449219, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 315.0, + "x1": 540.0, + "y1": 329.0400085449219, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 299.8800048828125, + "x1": 220.67999267578125, + "y1": 314.2799987792969, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 299.8800048828125, + "x1": 382.67999267578125, + "y1": 314.2799987792969, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 299.8800048828125, + "x1": 540.0, + "y1": 314.2799987792969, + "width": 156.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 285.1199951171875, + "x1": 220.67999267578125, + "y1": 299.1600036621094, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 285.1199951171875, + "x1": 382.67999267578125, + "y1": 299.1600036621094, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 285.1199951171875, + "x1": 540.0, + "y1": 299.1600036621094, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 270.3599853515625, + "x1": 220.67999267578125, + "y1": 284.3999938964844, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 270.3599853515625, + "x1": 382.67999267578125, + "y1": 284.3999938964844, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 270.3599853515625, + "x1": 540.0, + "y1": 284.3999938964844, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 255.5999755859375, + "x1": 220.67999267578125, + "y1": 269.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 255.5999755859375, + "x1": 382.67999267578125, + "y1": 269.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 255.5999755859375, + "x1": 540.0, + "y1": 269.6400146484375, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 240.47998046875, + "x1": 220.67999267578125, + "y1": 254.8800048828125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 240.47998046875, + "x1": 382.67999267578125, + "y1": 254.8800048828125, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 240.47998046875, + "x1": 540.0, + "y1": 254.8800048828125, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 225.719970703125, + "x1": 220.67999267578125, + "y1": 239.760009765625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 225.719970703125, + "x1": 382.67999267578125, + "y1": 239.760009765625, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 225.719970703125, + "x1": 540.0, + "y1": 239.760009765625, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 210.96002197265625, + "x1": 220.67999267578125, + "y1": 225.0, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 210.96002197265625, + "x1": 382.67999267578125, + "y1": 225.0, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 210.96002197265625, + "x1": 540.0, + "y1": 225.0, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 179.280029296875, + "x1": 220.67999267578125, + "y1": 210.239990234375, + "width": 129.95999145507812, + "height": 30.9599609375 + }, { + "x0": 221.39999389648438, + "y0": 179.280029296875, + "x1": 382.67999267578125, + "y1": 210.239990234375, + "width": 161.27999877929688, + "height": 30.9599609375 + }, { + "x0": 383.3999938964844, + "y0": 179.280029296875, + "x1": 540.0, + "y1": 210.239990234375, + "width": 156.60000610351562, + "height": 30.9599609375 + }, { + "x0": 90.72000122070312, + "y0": 163.79998779296875, + "x1": 220.67999267578125, + "y1": 178.55999755859375, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 163.79998779296875, + "x1": 382.67999267578125, + "y1": 178.55999755859375, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 163.79998779296875, + "x1": 540.0, + "y1": 178.55999755859375, + "width": 156.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 149.03997802734375, + "x1": 220.67999267578125, + "y1": 163.08001708984375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 149.03997802734375, + "x1": 382.67999267578125, + "y1": 163.08001708984375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 149.03997802734375, + "x1": 540.0, + "y1": 163.08001708984375, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 134.280029296875, + "x1": 220.67999267578125, + "y1": 148.32000732421875, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 134.280029296875, + "x1": 382.67999267578125, + "y1": 148.32000732421875, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 134.280029296875, + "x1": 540.0, + "y1": 148.32000732421875, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 119.15997314453125, + "x1": 220.67999267578125, + "y1": 133.55999755859375, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 119.15997314453125, + "x1": 382.67999267578125, + "y1": 133.55999755859375, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 119.15997314453125, + "x1": 540.0, + "y1": 133.55999755859375, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 104.4000244140625, + "x1": 220.67999267578125, + "y1": 118.44000244140625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 104.4000244140625, + "x1": 382.67999267578125, + "y1": 118.44000244140625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 104.4000244140625, + "x1": 540.0, + "y1": 118.44000244140625, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 89.6400146484375, + "x1": 220.67999267578125, + "y1": 103.67999267578125, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 89.6400146484375, + "x1": 382.67999267578125, + "y1": 103.67999267578125, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 89.6400146484375, + "x1": 540.0, + "y1": 103.67999267578125, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 74.8800048828125, + "x1": 220.67999267578125, + "y1": 88.91998291015625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 74.8800048828125, + "x1": 382.67999267578125, + "y1": 88.91998291015625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 74.8800048828125, + "x1": 540.0, + "y1": 88.91998291015625, + "width": 156.60000610351562, + "height": 14.03997802734375 + } + ] + }, { + "pageInfo": { + "number": 49, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 641.1600341796875, + "x1": 299.8800048828125, + "y1": 667.4400024414062, + "width": 209.16000366210938, + "height": 26.27996826171875 + }, { + "x0": 300.6000061035156, + "y0": 641.1600341796875, + "x1": 522.0, + "y1": 667.4400024414062, + "width": 221.39999389648438, + "height": 26.27996826171875 + }, { + "x0": 90.72000122070312, + "y0": 615.5999755859375, + "x1": 299.8800048828125, + "y1": 640.4400024414062, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 615.5999755859375, + "x1": 522.0, + "y1": 640.4400024414062, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 588.239990234375, + "x1": 299.8800048828125, + "y1": 614.8800048828125, + "width": 209.16000366210938, + "height": 26.6400146484375 + }, { + "x0": 300.6000061035156, + "y0": 588.239990234375, + "x1": 522.0, + "y1": 614.8800048828125, + "width": 221.39999389648438, + "height": 26.6400146484375 + }, { + "x0": 90.72000122070312, + "y0": 562.6799926757812, + "x1": 299.8800048828125, + "y1": 587.52001953125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 562.6799926757812, + "x1": 522.0, + "y1": 587.52001953125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 537.47998046875, + "x1": 299.8800048828125, + "y1": 561.9600219726562, + "width": 209.16000366210938, + "height": 24.48004150390625 + }, { + "x0": 300.6000061035156, + "y0": 537.47998046875, + "x1": 522.0, + "y1": 561.9600219726562, + "width": 221.39999389648438, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 511.9200134277344, + "x1": 299.8800048828125, + "y1": 536.760009765625, + "width": 209.16000366210938, + "height": 24.839996337890625 + }, { + "x0": 300.6000061035156, + "y0": 511.9200134277344, + "x1": 522.0, + "y1": 536.760009765625, + "width": 221.39999389648438, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 486.3599853515625, + "x1": 299.8800048828125, + "y1": 511.20001220703125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 486.3599853515625, + "x1": 522.0, + "y1": 511.20001220703125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 460.79998779296875, + "x1": 299.8800048828125, + "y1": 485.6400146484375, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 460.79998779296875, + "x1": 522.0, + "y1": 485.6400146484375, + "width": 221.39999389648438, + "height": 24.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 50, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 663.1199951171875, + "x1": 220.67999267578125, + "y1": 677.52001953125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 663.1199951171875, + "x1": 380.1600036621094, + "y1": 677.52001953125, + "width": 158.760009765625, + "height": 14.4000244140625 + }, { + "x0": 380.8800048828125, + "y0": 663.1199951171875, + "x1": 540.0, + "y1": 677.52001953125, + "width": 159.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 648.3599853515625, + "x1": 220.67999267578125, + "y1": 662.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 648.3599853515625, + "x1": 380.1600036621094, + "y1": 662.4000244140625, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 648.3599853515625, + "x1": 540.0, + "y1": 662.4000244140625, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 633.5999755859375, + "x1": 220.67999267578125, + "y1": 647.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 633.5999755859375, + "x1": 380.1600036621094, + "y1": 647.6400146484375, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 633.5999755859375, + "x1": 540.0, + "y1": 647.6400146484375, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 618.8399658203125, + "x1": 220.67999267578125, + "y1": 632.8800048828125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 618.8399658203125, + "x1": 380.1600036621094, + "y1": 632.8800048828125, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 618.8399658203125, + "x1": 540.0, + "y1": 632.8800048828125, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 603.719970703125, + "x1": 220.67999267578125, + "y1": 618.1199951171875, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 603.719970703125, + "x1": 380.1600036621094, + "y1": 618.1199951171875, + "width": 158.760009765625, + "height": 14.4000244140625 + }, { + "x0": 380.8800048828125, + "y0": 603.719970703125, + "x1": 540.0, + "y1": 618.1199951171875, + "width": 159.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 588.9600219726562, + "x1": 220.67999267578125, + "y1": 603.0, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 588.9600219726562, + "x1": 380.1600036621094, + "y1": 603.0, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 588.9600219726562, + "x1": 540.0, + "y1": 603.0, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 574.2000122070312, + "x1": 220.67999267578125, + "y1": 588.239990234375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 574.2000122070312, + "x1": 380.1600036621094, + "y1": 588.239990234375, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 574.2000122070312, + "x1": 540.0, + "y1": 588.239990234375, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 559.4400024414062, + "x1": 220.67999267578125, + "y1": 573.47998046875, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 559.4400024414062, + "x1": 380.1600036621094, + "y1": 573.47998046875, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 559.4400024414062, + "x1": 540.0, + "y1": 573.47998046875, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 544.3200073242188, + "x1": 220.67999267578125, + "y1": 558.719970703125, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 544.3200073242188, + "x1": 380.1600036621094, + "y1": 558.719970703125, + "width": 158.760009765625, + "height": 14.39996337890625 + }, { + "x0": 380.8800048828125, + "y0": 544.3200073242188, + "x1": 540.0, + "y1": 558.719970703125, + "width": 159.1199951171875, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 529.5599975585938, + "x1": 220.67999267578125, + "y1": 543.5999755859375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 529.5599975585938, + "x1": 380.1600036621094, + "y1": 543.5999755859375, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 529.5599975585938, + "x1": 540.0, + "y1": 543.5999755859375, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 498.239990234375, + "x1": 220.67999267578125, + "y1": 528.8399658203125, + "width": 129.95999145507812, + "height": 30.5999755859375 + }, { + "x0": 221.39999389648438, + "y0": 498.239990234375, + "x1": 380.1600036621094, + "y1": 528.8399658203125, + "width": 158.760009765625, + "height": 30.5999755859375 + }, { + "x0": 380.8800048828125, + "y0": 498.239990234375, + "x1": 540.0, + "y1": 528.8399658203125, + "width": 159.1199951171875, + "height": 30.5999755859375 + }, { + "x0": 90.72000122070312, + "y0": 482.3999938964844, + "x1": 220.67999267578125, + "y1": 497.5199890136719, + "width": 129.95999145507812, + "height": 15.1199951171875 + }, { + "x0": 221.39999389648438, + "y0": 482.3999938964844, + "x1": 380.1600036621094, + "y1": 497.5199890136719, + "width": 158.760009765625, + "height": 15.1199951171875 + }, { + "x0": 380.8800048828125, + "y0": 482.3999938964844, + "x1": 540.0, + "y1": 497.5199890136719, + "width": 159.1199951171875, + "height": 15.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 467.6400146484375, + "x1": 220.67999267578125, + "y1": 481.67999267578125, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 467.6400146484375, + "x1": 380.1600036621094, + "y1": 481.67999267578125, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 467.6400146484375, + "x1": 540.0, + "y1": 481.67999267578125, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 452.8800048828125, + "x1": 220.67999267578125, + "y1": 466.9200134277344, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 452.8800048828125, + "x1": 380.1600036621094, + "y1": 466.9200134277344, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 452.8800048828125, + "x1": 540.0, + "y1": 466.9200134277344, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 438.1199951171875, + "x1": 220.67999267578125, + "y1": 452.1600036621094, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 438.1199951171875, + "x1": 380.1600036621094, + "y1": 452.1600036621094, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 438.1199951171875, + "x1": 540.0, + "y1": 452.1600036621094, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 423.0, + "x1": 220.67999267578125, + "y1": 437.3999938964844, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 423.0, + "x1": 380.1600036621094, + "y1": 437.3999938964844, + "width": 158.760009765625, + "height": 14.399993896484375 + }, { + "x0": 380.8800048828125, + "y0": 423.0, + "x1": 540.0, + "y1": 437.3999938964844, + "width": 159.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 408.239990234375, + "x1": 220.67999267578125, + "y1": 422.2799987792969, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 408.239990234375, + "x1": 380.1600036621094, + "y1": 422.2799987792969, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 408.239990234375, + "x1": 540.0, + "y1": 422.2799987792969, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 393.4800109863281, + "x1": 220.67999267578125, + "y1": 407.5199890136719, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 393.4800109863281, + "x1": 380.1600036621094, + "y1": 407.5199890136719, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 393.4800109863281, + "x1": 540.0, + "y1": 407.5199890136719, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 366.4800109863281, + "x1": 220.67999267578125, + "y1": 392.3999938964844, + "width": 129.95999145507812, + "height": 25.91998291015625 + }, { + "x0": 221.39999389648438, + "y0": 366.4800109863281, + "x1": 540.0, + "y1": 392.3999938964844, + "width": 318.6000061035156, + "height": 25.91998291015625 + }, { + "x0": 90.72000122070312, + "y0": 351.3599853515625, + "x1": 220.67999267578125, + "y1": 365.3999938964844, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 351.3599853515625, + "x1": 382.67999267578125, + "y1": 365.3999938964844, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 351.3599853515625, + "x1": 540.0, + "y1": 365.3999938964844, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 336.6000061035156, + "x1": 220.67999267578125, + "y1": 350.6400146484375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 336.6000061035156, + "x1": 382.67999267578125, + "y1": 350.6400146484375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 336.6000061035156, + "x1": 540.0, + "y1": 350.6400146484375, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 321.8399963378906, + "x1": 220.67999267578125, + "y1": 335.8800048828125, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 321.8399963378906, + "x1": 382.67999267578125, + "y1": 335.8800048828125, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 321.8399963378906, + "x1": 540.0, + "y1": 335.8800048828125, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 306.7200012207031, + "x1": 220.67999267578125, + "y1": 321.1199951171875, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 306.7200012207031, + "x1": 382.67999267578125, + "y1": 321.1199951171875, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 306.7200012207031, + "x1": 540.0, + "y1": 321.1199951171875, + "width": 156.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 291.9599914550781, + "x1": 220.67999267578125, + "y1": 306.0, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 291.9599914550781, + "x1": 382.67999267578125, + "y1": 306.0, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 291.9599914550781, + "x1": 540.0, + "y1": 306.0, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 277.20001220703125, + "x1": 220.67999267578125, + "y1": 291.239990234375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 277.20001220703125, + "x1": 382.67999267578125, + "y1": 291.239990234375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 277.20001220703125, + "x1": 540.0, + "y1": 291.239990234375, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 262.44000244140625, + "x1": 220.67999267578125, + "y1": 276.47998046875, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 262.44000244140625, + "x1": 382.67999267578125, + "y1": 276.47998046875, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 262.44000244140625, + "x1": 540.0, + "y1": 276.47998046875, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 247.32000732421875, + "x1": 220.67999267578125, + "y1": 261.719970703125, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 247.32000732421875, + "x1": 382.67999267578125, + "y1": 261.719970703125, + "width": 161.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 383.3999938964844, + "y0": 247.32000732421875, + "x1": 540.0, + "y1": 261.719970703125, + "width": 156.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 232.55999755859375, + "x1": 220.67999267578125, + "y1": 246.5999755859375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 232.55999755859375, + "x1": 382.67999267578125, + "y1": 246.5999755859375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 232.55999755859375, + "x1": 540.0, + "y1": 246.5999755859375, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 217.79998779296875, + "x1": 220.67999267578125, + "y1": 231.84002685546875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 217.79998779296875, + "x1": 382.67999267578125, + "y1": 231.84002685546875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 217.79998779296875, + "x1": 540.0, + "y1": 231.84002685546875, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 186.1199951171875, + "x1": 220.67999267578125, + "y1": 217.08001708984375, + "width": 129.95999145507812, + "height": 30.96002197265625 + }, { + "x0": 221.39999389648438, + "y0": 186.1199951171875, + "x1": 382.67999267578125, + "y1": 217.08001708984375, + "width": 161.27999877929688, + "height": 30.96002197265625 + }, { + "x0": 383.3999938964844, + "y0": 186.1199951171875, + "x1": 540.0, + "y1": 217.08001708984375, + "width": 156.60000610351562, + "height": 30.96002197265625 + }, { + "x0": 90.72000122070312, + "y0": 170.6400146484375, + "x1": 220.67999267578125, + "y1": 185.4000244140625, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 170.6400146484375, + "x1": 382.67999267578125, + "y1": 185.4000244140625, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 170.6400146484375, + "x1": 540.0, + "y1": 185.4000244140625, + "width": 156.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 155.8800048828125, + "x1": 220.67999267578125, + "y1": 169.91998291015625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 155.8800048828125, + "x1": 382.67999267578125, + "y1": 169.91998291015625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 155.8800048828125, + "x1": 540.0, + "y1": 169.91998291015625, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 141.1199951171875, + "x1": 220.67999267578125, + "y1": 155.15997314453125, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 141.1199951171875, + "x1": 382.67999267578125, + "y1": 155.15997314453125, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 141.1199951171875, + "x1": 540.0, + "y1": 155.15997314453125, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 126.3599853515625, + "x1": 220.67999267578125, + "y1": 140.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 126.3599853515625, + "x1": 382.67999267578125, + "y1": 140.4000244140625, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 126.3599853515625, + "x1": 540.0, + "y1": 140.4000244140625, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 111.239990234375, + "x1": 220.67999267578125, + "y1": 125.6400146484375, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 111.239990234375, + "x1": 382.67999267578125, + "y1": 125.6400146484375, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 111.239990234375, + "x1": 540.0, + "y1": 125.6400146484375, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 96.47998046875, + "x1": 220.67999267578125, + "y1": 110.52001953125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 96.47998046875, + "x1": 382.67999267578125, + "y1": 110.52001953125, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 96.47998046875, + "x1": 540.0, + "y1": 110.52001953125, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 81.719970703125, + "x1": 220.67999267578125, + "y1": 95.760009765625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 81.719970703125, + "x1": 382.67999267578125, + "y1": 95.760009765625, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 81.719970703125, + "x1": 540.0, + "y1": 95.760009765625, + "width": 156.60000610351562, + "height": 14.0400390625 + } + ] + }, { + "pageInfo": { + "number": 53, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 637.9199829101562, + "x1": 306.0, + "y1": 662.760009765625, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 306.7200012207031, + "y0": 637.9199829101562, + "x1": 522.0, + "y1": 662.760009765625, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 612.3599853515625, + "x1": 306.0, + "y1": 637.2000122070312, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 306.7200012207031, + "y0": 612.3599853515625, + "x1": 522.0, + "y1": 637.2000122070312, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 586.7999877929688, + "x1": 306.0, + "y1": 611.6400146484375, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 306.7200012207031, + "y0": 586.7999877929688, + "x1": 522.0, + "y1": 611.6400146484375, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 561.239990234375, + "x1": 306.0, + "y1": 586.0800170898438, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 306.7200012207031, + "y0": 561.239990234375, + "x1": 522.0, + "y1": 586.0800170898438, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 536.0399780273438, + "x1": 306.0, + "y1": 560.52001953125, + "width": 215.27999877929688, + "height": 24.48004150390625 + }, { + "x0": 306.7200012207031, + "y0": 536.0399780273438, + "x1": 522.0, + "y1": 560.52001953125, + "width": 215.27999877929688, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 510.4800109863281, + "x1": 306.0, + "y1": 535.3200073242188, + "width": 215.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 306.7200012207031, + "y0": 510.4800109863281, + "x1": 522.0, + "y1": 535.3200073242188, + "width": 215.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 484.9200134277344, + "x1": 306.0, + "y1": 509.760009765625, + "width": 215.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 306.7200012207031, + "y0": 484.9200134277344, + "x1": 522.0, + "y1": 509.760009765625, + "width": 215.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 459.3599853515625, + "x1": 306.0, + "y1": 484.20001220703125, + "width": 215.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 306.7200012207031, + "y0": 459.3599853515625, + "x1": 522.0, + "y1": 484.20001220703125, + "width": 215.27999877929688, + "height": 24.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 54, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 220.67999267578125, + "y1": 667.4400024414062, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 653.4000244140625, + "x1": 380.1600036621094, + "y1": 667.4400024414062, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 667.4400024414062, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 638.6400146484375, + "x1": 220.67999267578125, + "y1": 652.6799926757812, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 638.6400146484375, + "x1": 380.1600036621094, + "y1": 652.6799926757812, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 638.6400146484375, + "x1": 540.0, + "y1": 652.6799926757812, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 623.52001953125, + "x1": 220.67999267578125, + "y1": 637.9199829101562, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 623.52001953125, + "x1": 380.1600036621094, + "y1": 637.9199829101562, + "width": 158.760009765625, + "height": 14.39996337890625 + }, { + "x0": 380.8800048828125, + "y0": 623.52001953125, + "x1": 540.0, + "y1": 637.9199829101562, + "width": 159.1199951171875, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 608.760009765625, + "x1": 220.67999267578125, + "y1": 622.7999877929688, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 608.760009765625, + "x1": 380.1600036621094, + "y1": 622.7999877929688, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 608.760009765625, + "x1": 540.0, + "y1": 622.7999877929688, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 594.0, + "x1": 220.67999267578125, + "y1": 608.0399780273438, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 594.0, + "x1": 380.1600036621094, + "y1": 608.0399780273438, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 594.0, + "x1": 540.0, + "y1": 608.0399780273438, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 579.239990234375, + "x1": 220.67999267578125, + "y1": 593.280029296875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 579.239990234375, + "x1": 380.1600036621094, + "y1": 593.280029296875, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 579.239990234375, + "x1": 540.0, + "y1": 593.280029296875, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 564.1199951171875, + "x1": 220.67999267578125, + "y1": 578.52001953125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 564.1199951171875, + "x1": 380.1600036621094, + "y1": 578.52001953125, + "width": 158.760009765625, + "height": 14.4000244140625 + }, { + "x0": 380.8800048828125, + "y0": 564.1199951171875, + "x1": 540.0, + "y1": 578.52001953125, + "width": 159.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 549.3599853515625, + "x1": 220.67999267578125, + "y1": 563.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 549.3599853515625, + "x1": 380.1600036621094, + "y1": 563.4000244140625, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 549.3599853515625, + "x1": 540.0, + "y1": 563.4000244140625, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 534.5999755859375, + "x1": 220.67999267578125, + "y1": 548.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 534.5999755859375, + "x1": 380.1600036621094, + "y1": 548.6400146484375, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 534.5999755859375, + "x1": 540.0, + "y1": 548.6400146484375, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 519.8399658203125, + "x1": 220.67999267578125, + "y1": 533.8800048828125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 519.8399658203125, + "x1": 380.1600036621094, + "y1": 533.8800048828125, + "width": 158.760009765625, + "height": 14.0400390625 + }, { + "x0": 380.8800048828125, + "y0": 519.8399658203125, + "x1": 540.0, + "y1": 533.8800048828125, + "width": 159.1199951171875, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 488.1600036621094, + "x1": 220.67999267578125, + "y1": 519.1199951171875, + "width": 129.95999145507812, + "height": 30.959991455078125 + }, { + "x0": 221.39999389648438, + "y0": 488.1600036621094, + "x1": 380.1600036621094, + "y1": 519.1199951171875, + "width": 158.760009765625, + "height": 30.959991455078125 + }, { + "x0": 380.8800048828125, + "y0": 488.1600036621094, + "x1": 540.0, + "y1": 519.1199951171875, + "width": 159.1199951171875, + "height": 30.959991455078125 + }, { + "x0": 90.72000122070312, + "y0": 472.67999267578125, + "x1": 220.67999267578125, + "y1": 487.44000244140625, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 472.67999267578125, + "x1": 380.1600036621094, + "y1": 487.44000244140625, + "width": 158.760009765625, + "height": 14.760009765625 + }, { + "x0": 380.8800048828125, + "y0": 472.67999267578125, + "x1": 540.0, + "y1": 487.44000244140625, + "width": 159.1199951171875, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 457.9200134277344, + "x1": 220.67999267578125, + "y1": 471.9599914550781, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 457.9200134277344, + "x1": 380.1600036621094, + "y1": 471.9599914550781, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 457.9200134277344, + "x1": 540.0, + "y1": 471.9599914550781, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 442.79998779296875, + "x1": 220.67999267578125, + "y1": 457.20001220703125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 442.79998779296875, + "x1": 380.1600036621094, + "y1": 457.20001220703125, + "width": 158.760009765625, + "height": 14.4000244140625 + }, { + "x0": 380.8800048828125, + "y0": 442.79998779296875, + "x1": 540.0, + "y1": 457.20001220703125, + "width": 159.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 428.0400085449219, + "x1": 220.67999267578125, + "y1": 442.0799865722656, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 428.0400085449219, + "x1": 380.1600036621094, + "y1": 442.0799865722656, + "width": 158.760009765625, + "height": 14.03997802734375 + }, { + "x0": 380.8800048828125, + "y0": 428.0400085449219, + "x1": 540.0, + "y1": 442.0799865722656, + "width": 159.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 413.2799987792969, + "x1": 220.67999267578125, + "y1": 427.32000732421875, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 413.2799987792969, + "x1": 380.1600036621094, + "y1": 427.32000732421875, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 413.2799987792969, + "x1": 540.0, + "y1": 427.32000732421875, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 398.5199890136719, + "x1": 220.67999267578125, + "y1": 412.55999755859375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 398.5199890136719, + "x1": 380.1600036621094, + "y1": 412.55999755859375, + "width": 158.760009765625, + "height": 14.040008544921875 + }, { + "x0": 380.8800048828125, + "y0": 398.5199890136719, + "x1": 540.0, + "y1": 412.55999755859375, + "width": 159.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 383.3999938964844, + "x1": 220.67999267578125, + "y1": 397.79998779296875, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 383.3999938964844, + "x1": 380.1600036621094, + "y1": 397.79998779296875, + "width": 158.760009765625, + "height": 14.399993896484375 + }, { + "x0": 380.8800048828125, + "y0": 383.3999938964844, + "x1": 540.0, + "y1": 397.79998779296875, + "width": 159.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 369.7200012207031, + "x1": 220.67999267578125, + "y1": 382.32000732421875, + "width": 129.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 221.39999389648438, + "y0": 369.7200012207031, + "x1": 540.0, + "y1": 382.32000732421875, + "width": 318.6000061035156, + "height": 12.600006103515625 + }, { + "x0": 90.72000122070312, + "y0": 354.6000061035156, + "x1": 220.67999267578125, + "y1": 368.6400146484375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 354.6000061035156, + "x1": 382.67999267578125, + "y1": 368.6400146484375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 354.6000061035156, + "x1": 540.0, + "y1": 368.6400146484375, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 339.4800109863281, + "x1": 220.67999267578125, + "y1": 353.8800048828125, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 339.4800109863281, + "x1": 382.67999267578125, + "y1": 353.8800048828125, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 339.4800109863281, + "x1": 540.0, + "y1": 353.8800048828125, + "width": 156.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 324.7200012207031, + "x1": 220.67999267578125, + "y1": 338.760009765625, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 324.7200012207031, + "x1": 382.67999267578125, + "y1": 338.760009765625, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 324.7200012207031, + "x1": 540.0, + "y1": 338.760009765625, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 309.9599914550781, + "x1": 220.67999267578125, + "y1": 324.0, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 309.9599914550781, + "x1": 382.67999267578125, + "y1": 324.0, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 309.9599914550781, + "x1": 540.0, + "y1": 324.0, + "width": 156.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 295.20001220703125, + "x1": 220.67999267578125, + "y1": 309.239990234375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 295.20001220703125, + "x1": 382.67999267578125, + "y1": 309.239990234375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 295.20001220703125, + "x1": 540.0, + "y1": 309.239990234375, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 280.0799865722656, + "x1": 220.67999267578125, + "y1": 294.4800109863281, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 280.0799865722656, + "x1": 382.67999267578125, + "y1": 294.4800109863281, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 280.0799865722656, + "x1": 540.0, + "y1": 294.4800109863281, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 265.32000732421875, + "x1": 220.67999267578125, + "y1": 279.3599853515625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 265.32000732421875, + "x1": 382.67999267578125, + "y1": 279.3599853515625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 265.32000732421875, + "x1": 540.0, + "y1": 279.3599853515625, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 250.55999755859375, + "x1": 220.67999267578125, + "y1": 264.5999755859375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 250.55999755859375, + "x1": 382.67999267578125, + "y1": 264.5999755859375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 250.55999755859375, + "x1": 540.0, + "y1": 264.5999755859375, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 235.79998779296875, + "x1": 220.67999267578125, + "y1": 249.84002685546875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 235.79998779296875, + "x1": 382.67999267578125, + "y1": 249.84002685546875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 235.79998779296875, + "x1": 540.0, + "y1": 249.84002685546875, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 220.67999267578125, + "x1": 220.67999267578125, + "y1": 235.08001708984375, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 220.67999267578125, + "x1": 382.67999267578125, + "y1": 235.08001708984375, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 220.67999267578125, + "x1": 540.0, + "y1": 235.08001708984375, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 189.3599853515625, + "x1": 220.67999267578125, + "y1": 219.96002197265625, + "width": 129.95999145507812, + "height": 30.60003662109375 + }, { + "x0": 221.39999389648438, + "y0": 189.3599853515625, + "x1": 382.67999267578125, + "y1": 219.96002197265625, + "width": 161.27999877929688, + "height": 30.60003662109375 + }, { + "x0": 383.3999938964844, + "y0": 189.3599853515625, + "x1": 540.0, + "y1": 219.96002197265625, + "width": 156.60000610351562, + "height": 30.60003662109375 + }, { + "x0": 90.72000122070312, + "y0": 173.8800048828125, + "x1": 220.67999267578125, + "y1": 188.6400146484375, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 173.8800048828125, + "x1": 382.67999267578125, + "y1": 188.6400146484375, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 173.8800048828125, + "x1": 540.0, + "y1": 188.6400146484375, + "width": 156.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 158.760009765625, + "x1": 220.67999267578125, + "y1": 173.15997314453125, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 158.760009765625, + "x1": 382.67999267578125, + "y1": 173.15997314453125, + "width": 161.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 383.3999938964844, + "y0": 158.760009765625, + "x1": 540.0, + "y1": 173.15997314453125, + "width": 156.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 144.0, + "x1": 220.67999267578125, + "y1": 158.03997802734375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 144.0, + "x1": 382.67999267578125, + "y1": 158.03997802734375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 144.0, + "x1": 540.0, + "y1": 158.03997802734375, + "width": 156.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 129.239990234375, + "x1": 220.67999267578125, + "y1": 143.280029296875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 129.239990234375, + "x1": 382.67999267578125, + "y1": 143.280029296875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 129.239990234375, + "x1": 540.0, + "y1": 143.280029296875, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 114.47998046875, + "x1": 220.67999267578125, + "y1": 128.52001953125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 114.47998046875, + "x1": 382.67999267578125, + "y1": 128.52001953125, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 114.47998046875, + "x1": 540.0, + "y1": 128.52001953125, + "width": 156.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 99.3599853515625, + "x1": 220.67999267578125, + "y1": 113.760009765625, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 99.3599853515625, + "x1": 382.67999267578125, + "y1": 113.760009765625, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 99.3599853515625, + "x1": 540.0, + "y1": 113.760009765625, + "width": 156.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 84.5999755859375, + "x1": 220.67999267578125, + "y1": 98.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 84.5999755859375, + "x1": 382.67999267578125, + "y1": 98.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 84.5999755859375, + "x1": 540.0, + "y1": 98.6400146484375, + "width": 156.60000610351562, + "height": 14.0400390625 + } + ] + }, { + "pageInfo": { + "number": 57, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 641.1600341796875, + "x1": 288.0, + "y1": 667.4400024414062, + "width": 197.27999877929688, + "height": 26.27996826171875 + }, { + "x0": 288.7200012207031, + "y0": 641.1600341796875, + "x1": 522.0, + "y1": 667.4400024414062, + "width": 233.27999877929688, + "height": 26.27996826171875 + }, { + "x0": 90.72000122070312, + "y0": 613.7999877929688, + "x1": 288.0, + "y1": 640.4400024414062, + "width": 197.27999877929688, + "height": 26.6400146484375 + }, { + "x0": 288.7200012207031, + "y0": 613.7999877929688, + "x1": 522.0, + "y1": 640.4400024414062, + "width": 233.27999877929688, + "height": 26.6400146484375 + }, { + "x0": 90.72000122070312, + "y0": 586.4400024414062, + "x1": 288.0, + "y1": 613.0800170898438, + "width": 197.27999877929688, + "height": 26.6400146484375 + }, { + "x0": 288.7200012207031, + "y0": 586.4400024414062, + "x1": 522.0, + "y1": 613.0800170898438, + "width": 233.27999877929688, + "height": 26.6400146484375 + }, { + "x0": 90.72000122070312, + "y0": 559.4400024414062, + "x1": 288.0, + "y1": 585.719970703125, + "width": 197.27999877929688, + "height": 26.27996826171875 + }, { + "x0": 288.7200012207031, + "y0": 559.4400024414062, + "x1": 522.0, + "y1": 585.719970703125, + "width": 233.27999877929688, + "height": 26.27996826171875 + }, { + "x0": 90.72000122070312, + "y0": 533.8800048828125, + "x1": 288.0, + "y1": 558.719970703125, + "width": 197.27999877929688, + "height": 24.8399658203125 + }, { + "x0": 288.7200012207031, + "y0": 533.8800048828125, + "x1": 522.0, + "y1": 558.719970703125, + "width": 233.27999877929688, + "height": 24.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 508.32000732421875, + "x1": 288.0, + "y1": 533.1600341796875, + "width": 197.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 288.7200012207031, + "y0": 508.32000732421875, + "x1": 522.0, + "y1": 533.1600341796875, + "width": 233.27999877929688, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 482.760009765625, + "x1": 288.0, + "y1": 507.6000061035156, + "width": 197.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 288.7200012207031, + "y0": 482.760009765625, + "x1": 522.0, + "y1": 507.6000061035156, + "width": 233.27999877929688, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 434.8800048828125, + "x1": 288.0, + "y1": 482.0400085449219, + "width": 197.27999877929688, + "height": 47.160003662109375 + }, { + "x0": 288.7200012207031, + "y0": 434.8800048828125, + "x1": 522.0, + "y1": 482.0400085449219, + "width": 233.27999877929688, + "height": 47.160003662109375 + } + ] + }, { + "pageInfo": { + "number": 59, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 220.67999267578125, + "y1": 667.4400024414062, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 653.4000244140625, + "x1": 382.67999267578125, + "y1": 667.4400024414062, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 653.4000244140625, + "x1": 558.0, + "y1": 667.4400024414062, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 638.6400146484375, + "x1": 220.67999267578125, + "y1": 652.6799926757812, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 638.6400146484375, + "x1": 382.67999267578125, + "y1": 652.6799926757812, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 638.6400146484375, + "x1": 558.0, + "y1": 652.6799926757812, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 623.52001953125, + "x1": 220.67999267578125, + "y1": 637.9199829101562, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 623.52001953125, + "x1": 382.67999267578125, + "y1": 637.9199829101562, + "width": 161.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 383.3999938964844, + "y0": 623.52001953125, + "x1": 558.0, + "y1": 637.9199829101562, + "width": 174.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 608.760009765625, + "x1": 220.67999267578125, + "y1": 622.7999877929688, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 608.760009765625, + "x1": 382.67999267578125, + "y1": 622.7999877929688, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 608.760009765625, + "x1": 558.0, + "y1": 622.7999877929688, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 594.0, + "x1": 220.67999267578125, + "y1": 608.0399780273438, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 594.0, + "x1": 382.67999267578125, + "y1": 608.0399780273438, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 594.0, + "x1": 558.0, + "y1": 608.0399780273438, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 579.239990234375, + "x1": 220.67999267578125, + "y1": 593.280029296875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 579.239990234375, + "x1": 382.67999267578125, + "y1": 593.280029296875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 579.239990234375, + "x1": 558.0, + "y1": 593.280029296875, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 564.1199951171875, + "x1": 220.67999267578125, + "y1": 578.52001953125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 564.1199951171875, + "x1": 382.67999267578125, + "y1": 578.52001953125, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 564.1199951171875, + "x1": 558.0, + "y1": 578.52001953125, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 549.3599853515625, + "x1": 220.67999267578125, + "y1": 563.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 549.3599853515625, + "x1": 382.67999267578125, + "y1": 563.4000244140625, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 549.3599853515625, + "x1": 558.0, + "y1": 563.4000244140625, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 534.5999755859375, + "x1": 220.67999267578125, + "y1": 548.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 534.5999755859375, + "x1": 382.67999267578125, + "y1": 548.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 534.5999755859375, + "x1": 558.0, + "y1": 548.6400146484375, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 519.8399658203125, + "x1": 220.67999267578125, + "y1": 533.8800048828125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 519.8399658203125, + "x1": 382.67999267578125, + "y1": 533.8800048828125, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 519.8399658203125, + "x1": 558.0, + "y1": 533.8800048828125, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 488.1600036621094, + "x1": 220.67999267578125, + "y1": 519.1199951171875, + "width": 129.95999145507812, + "height": 30.959991455078125 + }, { + "x0": 221.39999389648438, + "y0": 488.1600036621094, + "x1": 382.67999267578125, + "y1": 519.1199951171875, + "width": 161.27999877929688, + "height": 30.959991455078125 + }, { + "x0": 383.3999938964844, + "y0": 488.1600036621094, + "x1": 558.0, + "y1": 519.1199951171875, + "width": 174.60000610351562, + "height": 30.959991455078125 + }, { + "x0": 90.72000122070312, + "y0": 472.67999267578125, + "x1": 220.67999267578125, + "y1": 487.44000244140625, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 472.67999267578125, + "x1": 382.67999267578125, + "y1": 487.44000244140625, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 472.67999267578125, + "x1": 558.0, + "y1": 487.44000244140625, + "width": 174.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 457.9200134277344, + "x1": 220.67999267578125, + "y1": 471.9599914550781, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 457.9200134277344, + "x1": 382.67999267578125, + "y1": 471.9599914550781, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 457.9200134277344, + "x1": 558.0, + "y1": 471.9599914550781, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 442.79998779296875, + "x1": 220.67999267578125, + "y1": 457.20001220703125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 442.79998779296875, + "x1": 382.67999267578125, + "y1": 457.20001220703125, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 442.79998779296875, + "x1": 558.0, + "y1": 457.20001220703125, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 428.0400085449219, + "x1": 220.67999267578125, + "y1": 442.0799865722656, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 428.0400085449219, + "x1": 382.67999267578125, + "y1": 442.0799865722656, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 428.0400085449219, + "x1": 558.0, + "y1": 442.0799865722656, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 413.2799987792969, + "x1": 220.67999267578125, + "y1": 427.32000732421875, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 413.2799987792969, + "x1": 382.67999267578125, + "y1": 427.32000732421875, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 413.2799987792969, + "x1": 558.0, + "y1": 427.32000732421875, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 398.5199890136719, + "x1": 220.67999267578125, + "y1": 412.55999755859375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 398.5199890136719, + "x1": 382.67999267578125, + "y1": 412.55999755859375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 398.5199890136719, + "x1": 558.0, + "y1": 412.55999755859375, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 383.3999938964844, + "x1": 220.67999267578125, + "y1": 397.79998779296875, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 383.3999938964844, + "x1": 382.67999267578125, + "y1": 397.79998779296875, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 383.3999938964844, + "x1": 558.0, + "y1": 397.79998779296875, + "width": 174.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 369.7200012207031, + "x1": 220.67999267578125, + "y1": 382.32000732421875, + "width": 129.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 221.39999389648438, + "y0": 369.7200012207031, + "x1": 382.67999267578125, + "y1": 382.32000732421875, + "width": 161.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 383.3999938964844, + "y0": 369.7200012207031, + "x1": 558.0, + "y1": 382.32000732421875, + "width": 174.60000610351562, + "height": 12.600006103515625 + }, { + "x0": 90.72000122070312, + "y0": 354.6000061035156, + "x1": 220.67999267578125, + "y1": 368.6400146484375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 354.6000061035156, + "x1": 382.67999267578125, + "y1": 368.6400146484375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 354.6000061035156, + "x1": 558.0, + "y1": 368.6400146484375, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 339.4800109863281, + "x1": 220.67999267578125, + "y1": 353.8800048828125, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 339.4800109863281, + "x1": 382.67999267578125, + "y1": 353.8800048828125, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 339.4800109863281, + "x1": 558.0, + "y1": 353.8800048828125, + "width": 174.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 324.7200012207031, + "x1": 220.67999267578125, + "y1": 338.760009765625, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 324.7200012207031, + "x1": 382.67999267578125, + "y1": 338.760009765625, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 324.7200012207031, + "x1": 558.0, + "y1": 338.760009765625, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 309.9599914550781, + "x1": 220.67999267578125, + "y1": 324.0, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 309.9599914550781, + "x1": 382.67999267578125, + "y1": 324.0, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 309.9599914550781, + "x1": 558.0, + "y1": 324.0, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 295.20001220703125, + "x1": 220.67999267578125, + "y1": 309.239990234375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 295.20001220703125, + "x1": 382.67999267578125, + "y1": 309.239990234375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 295.20001220703125, + "x1": 558.0, + "y1": 309.239990234375, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 280.0799865722656, + "x1": 220.67999267578125, + "y1": 294.4800109863281, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 280.0799865722656, + "x1": 382.67999267578125, + "y1": 294.4800109863281, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 280.0799865722656, + "x1": 558.0, + "y1": 294.4800109863281, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 265.32000732421875, + "x1": 220.67999267578125, + "y1": 279.3599853515625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 265.32000732421875, + "x1": 382.67999267578125, + "y1": 279.3599853515625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 265.32000732421875, + "x1": 558.0, + "y1": 279.3599853515625, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 250.55999755859375, + "x1": 220.67999267578125, + "y1": 264.5999755859375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 250.55999755859375, + "x1": 382.67999267578125, + "y1": 264.5999755859375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 250.55999755859375, + "x1": 558.0, + "y1": 264.5999755859375, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 235.79998779296875, + "x1": 220.67999267578125, + "y1": 249.84002685546875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 235.79998779296875, + "x1": 382.67999267578125, + "y1": 249.84002685546875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 235.79998779296875, + "x1": 558.0, + "y1": 249.84002685546875, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 220.67999267578125, + "x1": 220.67999267578125, + "y1": 235.08001708984375, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 220.67999267578125, + "x1": 382.67999267578125, + "y1": 235.08001708984375, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 220.67999267578125, + "x1": 558.0, + "y1": 235.08001708984375, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 189.3599853515625, + "x1": 220.67999267578125, + "y1": 219.96002197265625, + "width": 129.95999145507812, + "height": 30.60003662109375 + }, { + "x0": 221.39999389648438, + "y0": 189.3599853515625, + "x1": 382.67999267578125, + "y1": 219.96002197265625, + "width": 161.27999877929688, + "height": 30.60003662109375 + }, { + "x0": 383.3999938964844, + "y0": 189.3599853515625, + "x1": 558.0, + "y1": 219.96002197265625, + "width": 174.60000610351562, + "height": 30.60003662109375 + }, { + "x0": 90.72000122070312, + "y0": 173.8800048828125, + "x1": 220.67999267578125, + "y1": 188.6400146484375, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 173.8800048828125, + "x1": 382.67999267578125, + "y1": 188.6400146484375, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 173.8800048828125, + "x1": 558.0, + "y1": 188.6400146484375, + "width": 174.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 158.760009765625, + "x1": 220.67999267578125, + "y1": 173.15997314453125, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 158.760009765625, + "x1": 382.67999267578125, + "y1": 173.15997314453125, + "width": 161.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 383.3999938964844, + "y0": 158.760009765625, + "x1": 558.0, + "y1": 173.15997314453125, + "width": 174.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 144.0, + "x1": 220.67999267578125, + "y1": 158.03997802734375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 144.0, + "x1": 382.67999267578125, + "y1": 158.03997802734375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 144.0, + "x1": 558.0, + "y1": 158.03997802734375, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 129.239990234375, + "x1": 220.67999267578125, + "y1": 143.280029296875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 129.239990234375, + "x1": 382.67999267578125, + "y1": 143.280029296875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 129.239990234375, + "x1": 558.0, + "y1": 143.280029296875, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 114.47998046875, + "x1": 220.67999267578125, + "y1": 128.52001953125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 114.47998046875, + "x1": 382.67999267578125, + "y1": 128.52001953125, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 114.47998046875, + "x1": 558.0, + "y1": 128.52001953125, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 99.3599853515625, + "x1": 220.67999267578125, + "y1": 113.760009765625, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 99.3599853515625, + "x1": 382.67999267578125, + "y1": 113.760009765625, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 99.3599853515625, + "x1": 558.0, + "y1": 113.760009765625, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 84.5999755859375, + "x1": 220.67999267578125, + "y1": 98.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 84.5999755859375, + "x1": 382.67999267578125, + "y1": 98.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 84.5999755859375, + "x1": 558.0, + "y1": 98.6400146484375, + "width": 174.60000610351562, + "height": 14.0400390625 + } + ] + }, { + "pageInfo": { + "number": 62, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 641.1600341796875, + "x1": 299.8800048828125, + "y1": 667.4400024414062, + "width": 209.16000366210938, + "height": 26.27996826171875 + }, { + "x0": 300.6000061035156, + "y0": 641.1600341796875, + "x1": 522.0, + "y1": 667.4400024414062, + "width": 221.39999389648438, + "height": 26.27996826171875 + }, { + "x0": 90.72000122070312, + "y0": 615.5999755859375, + "x1": 299.8800048828125, + "y1": 640.4400024414062, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 615.5999755859375, + "x1": 522.0, + "y1": 640.4400024414062, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 588.239990234375, + "x1": 299.8800048828125, + "y1": 614.8800048828125, + "width": 209.16000366210938, + "height": 26.6400146484375 + }, { + "x0": 300.6000061035156, + "y0": 588.239990234375, + "x1": 522.0, + "y1": 614.8800048828125, + "width": 221.39999389648438, + "height": 26.6400146484375 + }, { + "x0": 90.72000122070312, + "y0": 562.6799926757812, + "x1": 299.8800048828125, + "y1": 587.52001953125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 562.6799926757812, + "x1": 522.0, + "y1": 587.52001953125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 537.47998046875, + "x1": 299.8800048828125, + "y1": 561.9600219726562, + "width": 209.16000366210938, + "height": 24.48004150390625 + }, { + "x0": 300.6000061035156, + "y0": 537.47998046875, + "x1": 522.0, + "y1": 561.9600219726562, + "width": 221.39999389648438, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 511.9200134277344, + "x1": 299.8800048828125, + "y1": 536.760009765625, + "width": 209.16000366210938, + "height": 24.839996337890625 + }, { + "x0": 300.6000061035156, + "y0": 511.9200134277344, + "x1": 522.0, + "y1": 536.760009765625, + "width": 221.39999389648438, + "height": 24.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 486.3599853515625, + "x1": 299.8800048828125, + "y1": 511.20001220703125, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 486.3599853515625, + "x1": 522.0, + "y1": 511.20001220703125, + "width": 221.39999389648438, + "height": 24.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 460.79998779296875, + "x1": 299.8800048828125, + "y1": 485.6400146484375, + "width": 209.16000366210938, + "height": 24.84002685546875 + }, { + "x0": 300.6000061035156, + "y0": 460.79998779296875, + "x1": 522.0, + "y1": 485.6400146484375, + "width": 221.39999389648438, + "height": 24.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 63, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 220.67999267578125, + "y1": 667.4400024414062, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 653.4000244140625, + "x1": 382.67999267578125, + "y1": 667.4400024414062, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 653.4000244140625, + "x1": 558.0, + "y1": 667.4400024414062, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 638.6400146484375, + "x1": 220.67999267578125, + "y1": 652.6799926757812, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 638.6400146484375, + "x1": 382.67999267578125, + "y1": 652.6799926757812, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 638.6400146484375, + "x1": 558.0, + "y1": 652.6799926757812, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 623.52001953125, + "x1": 220.67999267578125, + "y1": 637.9199829101562, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 623.52001953125, + "x1": 382.67999267578125, + "y1": 637.9199829101562, + "width": 161.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 383.3999938964844, + "y0": 623.52001953125, + "x1": 558.0, + "y1": 637.9199829101562, + "width": 174.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 608.760009765625, + "x1": 220.67999267578125, + "y1": 622.7999877929688, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 608.760009765625, + "x1": 382.67999267578125, + "y1": 622.7999877929688, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 608.760009765625, + "x1": 558.0, + "y1": 622.7999877929688, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 594.0, + "x1": 220.67999267578125, + "y1": 608.0399780273438, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 594.0, + "x1": 382.67999267578125, + "y1": 608.0399780273438, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 594.0, + "x1": 558.0, + "y1": 608.0399780273438, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 579.239990234375, + "x1": 220.67999267578125, + "y1": 593.280029296875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 579.239990234375, + "x1": 382.67999267578125, + "y1": 593.280029296875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 579.239990234375, + "x1": 558.0, + "y1": 593.280029296875, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 564.1199951171875, + "x1": 220.67999267578125, + "y1": 578.52001953125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 564.1199951171875, + "x1": 382.67999267578125, + "y1": 578.52001953125, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 564.1199951171875, + "x1": 558.0, + "y1": 578.52001953125, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 549.3599853515625, + "x1": 220.67999267578125, + "y1": 563.4000244140625, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 549.3599853515625, + "x1": 382.67999267578125, + "y1": 563.4000244140625, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 549.3599853515625, + "x1": 558.0, + "y1": 563.4000244140625, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 534.5999755859375, + "x1": 220.67999267578125, + "y1": 548.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 534.5999755859375, + "x1": 382.67999267578125, + "y1": 548.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 534.5999755859375, + "x1": 558.0, + "y1": 548.6400146484375, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 519.8399658203125, + "x1": 220.67999267578125, + "y1": 533.8800048828125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 519.8399658203125, + "x1": 382.67999267578125, + "y1": 533.8800048828125, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 519.8399658203125, + "x1": 558.0, + "y1": 533.8800048828125, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 488.1600036621094, + "x1": 220.67999267578125, + "y1": 519.1199951171875, + "width": 129.95999145507812, + "height": 30.959991455078125 + }, { + "x0": 221.39999389648438, + "y0": 488.1600036621094, + "x1": 382.67999267578125, + "y1": 519.1199951171875, + "width": 161.27999877929688, + "height": 30.959991455078125 + }, { + "x0": 383.3999938964844, + "y0": 488.1600036621094, + "x1": 558.0, + "y1": 519.1199951171875, + "width": 174.60000610351562, + "height": 30.959991455078125 + }, { + "x0": 90.72000122070312, + "y0": 472.67999267578125, + "x1": 220.67999267578125, + "y1": 487.44000244140625, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 472.67999267578125, + "x1": 382.67999267578125, + "y1": 487.44000244140625, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 472.67999267578125, + "x1": 558.0, + "y1": 487.44000244140625, + "width": 174.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 457.9200134277344, + "x1": 220.67999267578125, + "y1": 471.9599914550781, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 457.9200134277344, + "x1": 382.67999267578125, + "y1": 471.9599914550781, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 457.9200134277344, + "x1": 558.0, + "y1": 471.9599914550781, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 442.79998779296875, + "x1": 220.67999267578125, + "y1": 457.20001220703125, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 442.79998779296875, + "x1": 382.67999267578125, + "y1": 457.20001220703125, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 442.79998779296875, + "x1": 558.0, + "y1": 457.20001220703125, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 428.0400085449219, + "x1": 220.67999267578125, + "y1": 442.0799865722656, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 428.0400085449219, + "x1": 382.67999267578125, + "y1": 442.0799865722656, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 428.0400085449219, + "x1": 558.0, + "y1": 442.0799865722656, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 413.2799987792969, + "x1": 220.67999267578125, + "y1": 427.32000732421875, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 413.2799987792969, + "x1": 382.67999267578125, + "y1": 427.32000732421875, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 413.2799987792969, + "x1": 558.0, + "y1": 427.32000732421875, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 398.5199890136719, + "x1": 220.67999267578125, + "y1": 412.55999755859375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 398.5199890136719, + "x1": 382.67999267578125, + "y1": 412.55999755859375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 398.5199890136719, + "x1": 558.0, + "y1": 412.55999755859375, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 383.3999938964844, + "x1": 220.67999267578125, + "y1": 397.79998779296875, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 383.3999938964844, + "x1": 382.67999267578125, + "y1": 397.79998779296875, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 383.3999938964844, + "x1": 558.0, + "y1": 397.79998779296875, + "width": 174.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 369.7200012207031, + "x1": 220.67999267578125, + "y1": 382.32000732421875, + "width": 129.95999145507812, + "height": 12.600006103515625 + }, { + "x0": 221.39999389648438, + "y0": 369.7200012207031, + "x1": 382.67999267578125, + "y1": 382.32000732421875, + "width": 161.27999877929688, + "height": 12.600006103515625 + }, { + "x0": 383.3999938964844, + "y0": 369.7200012207031, + "x1": 558.0, + "y1": 382.32000732421875, + "width": 174.60000610351562, + "height": 12.600006103515625 + }, { + "x0": 90.72000122070312, + "y0": 354.6000061035156, + "x1": 220.67999267578125, + "y1": 368.6400146484375, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 354.6000061035156, + "x1": 382.67999267578125, + "y1": 368.6400146484375, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 354.6000061035156, + "x1": 558.0, + "y1": 368.6400146484375, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 339.4800109863281, + "x1": 220.67999267578125, + "y1": 353.8800048828125, + "width": 129.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 221.39999389648438, + "y0": 339.4800109863281, + "x1": 382.67999267578125, + "y1": 353.8800048828125, + "width": 161.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 383.3999938964844, + "y0": 339.4800109863281, + "x1": 558.0, + "y1": 353.8800048828125, + "width": 174.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 90.72000122070312, + "y0": 324.7200012207031, + "x1": 220.67999267578125, + "y1": 338.760009765625, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 324.7200012207031, + "x1": 382.67999267578125, + "y1": 338.760009765625, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 324.7200012207031, + "x1": 558.0, + "y1": 338.760009765625, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 309.9599914550781, + "x1": 220.67999267578125, + "y1": 324.0, + "width": 129.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 221.39999389648438, + "y0": 309.9599914550781, + "x1": 382.67999267578125, + "y1": 324.0, + "width": 161.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 383.3999938964844, + "y0": 309.9599914550781, + "x1": 558.0, + "y1": 324.0, + "width": 174.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 90.72000122070312, + "y0": 295.20001220703125, + "x1": 220.67999267578125, + "y1": 309.239990234375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 295.20001220703125, + "x1": 382.67999267578125, + "y1": 309.239990234375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 295.20001220703125, + "x1": 558.0, + "y1": 309.239990234375, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 280.0799865722656, + "x1": 220.67999267578125, + "y1": 294.4800109863281, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 280.0799865722656, + "x1": 382.67999267578125, + "y1": 294.4800109863281, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 280.0799865722656, + "x1": 558.0, + "y1": 294.4800109863281, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 265.32000732421875, + "x1": 220.67999267578125, + "y1": 279.3599853515625, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 265.32000732421875, + "x1": 382.67999267578125, + "y1": 279.3599853515625, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 265.32000732421875, + "x1": 558.0, + "y1": 279.3599853515625, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 250.55999755859375, + "x1": 220.67999267578125, + "y1": 264.5999755859375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 250.55999755859375, + "x1": 382.67999267578125, + "y1": 264.5999755859375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 250.55999755859375, + "x1": 558.0, + "y1": 264.5999755859375, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 235.79998779296875, + "x1": 220.67999267578125, + "y1": 249.84002685546875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 235.79998779296875, + "x1": 382.67999267578125, + "y1": 249.84002685546875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 235.79998779296875, + "x1": 558.0, + "y1": 249.84002685546875, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 220.67999267578125, + "x1": 220.67999267578125, + "y1": 235.08001708984375, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 220.67999267578125, + "x1": 382.67999267578125, + "y1": 235.08001708984375, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 220.67999267578125, + "x1": 558.0, + "y1": 235.08001708984375, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 189.3599853515625, + "x1": 220.67999267578125, + "y1": 219.96002197265625, + "width": 129.95999145507812, + "height": 30.60003662109375 + }, { + "x0": 221.39999389648438, + "y0": 189.3599853515625, + "x1": 382.67999267578125, + "y1": 219.96002197265625, + "width": 161.27999877929688, + "height": 30.60003662109375 + }, { + "x0": 383.3999938964844, + "y0": 189.3599853515625, + "x1": 558.0, + "y1": 219.96002197265625, + "width": 174.60000610351562, + "height": 30.60003662109375 + }, { + "x0": 90.72000122070312, + "y0": 173.8800048828125, + "x1": 220.67999267578125, + "y1": 188.6400146484375, + "width": 129.95999145507812, + "height": 14.760009765625 + }, { + "x0": 221.39999389648438, + "y0": 173.8800048828125, + "x1": 382.67999267578125, + "y1": 188.6400146484375, + "width": 161.27999877929688, + "height": 14.760009765625 + }, { + "x0": 383.3999938964844, + "y0": 173.8800048828125, + "x1": 558.0, + "y1": 188.6400146484375, + "width": 174.60000610351562, + "height": 14.760009765625 + }, { + "x0": 90.72000122070312, + "y0": 158.760009765625, + "x1": 220.67999267578125, + "y1": 173.15997314453125, + "width": 129.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 221.39999389648438, + "y0": 158.760009765625, + "x1": 382.67999267578125, + "y1": 173.15997314453125, + "width": 161.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 383.3999938964844, + "y0": 158.760009765625, + "x1": 558.0, + "y1": 173.15997314453125, + "width": 174.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 90.72000122070312, + "y0": 144.0, + "x1": 220.67999267578125, + "y1": 158.03997802734375, + "width": 129.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 221.39999389648438, + "y0": 144.0, + "x1": 382.67999267578125, + "y1": 158.03997802734375, + "width": 161.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 383.3999938964844, + "y0": 144.0, + "x1": 558.0, + "y1": 158.03997802734375, + "width": 174.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 129.239990234375, + "x1": 220.67999267578125, + "y1": 143.280029296875, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 129.239990234375, + "x1": 382.67999267578125, + "y1": 143.280029296875, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 129.239990234375, + "x1": 558.0, + "y1": 143.280029296875, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 114.47998046875, + "x1": 220.67999267578125, + "y1": 128.52001953125, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 114.47998046875, + "x1": 382.67999267578125, + "y1": 128.52001953125, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 114.47998046875, + "x1": 558.0, + "y1": 128.52001953125, + "width": 174.60000610351562, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 99.3599853515625, + "x1": 220.67999267578125, + "y1": 113.760009765625, + "width": 129.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 221.39999389648438, + "y0": 99.3599853515625, + "x1": 382.67999267578125, + "y1": 113.760009765625, + "width": 161.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 383.3999938964844, + "y0": 99.3599853515625, + "x1": 558.0, + "y1": 113.760009765625, + "width": 174.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 90.72000122070312, + "y0": 84.5999755859375, + "x1": 220.67999267578125, + "y1": 98.6400146484375, + "width": 129.95999145507812, + "height": 14.0400390625 + }, { + "x0": 221.39999389648438, + "y0": 84.5999755859375, + "x1": 382.67999267578125, + "y1": 98.6400146484375, + "width": 161.27999877929688, + "height": 14.0400390625 + }, { + "x0": 383.3999938964844, + "y0": 84.5999755859375, + "x1": 558.0, + "y1": 98.6400146484375, + "width": 174.60000610351562, + "height": 14.0400390625 + } + ] + }, { + "pageInfo": { + "number": 67, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 89.63999938964844, + "y0": 475.55999755859375, + "x1": 113.04000091552734, + "y1": 493.55999755859375, + "width": 23.400001525878906, + "height": 18.0 + }, { + "x0": 114.4800033569336, + "y0": 475.55999755859375, + "x1": 190.0800018310547, + "y1": 493.55999755859375, + "width": 75.5999984741211, + "height": 18.0 + }, { + "x0": 191.52000427246094, + "y0": 475.9200134277344, + "x1": 306.0, + "y1": 493.55999755859375, + "width": 114.47999572753906, + "height": 17.639984130859375 + }, { + "x0": 350.6400146484375, + "y0": 475.9200134277344, + "x1": 372.239990234375, + "y1": 491.760009765625, + "width": 21.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 372.9599914550781, + "y0": 475.9200134277344, + "x1": 467.6400146484375, + "y1": 491.760009765625, + "width": 94.68002319335938, + "height": 15.839996337890625 + } + ] + }, { + "pageInfo": { + "number": 68, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 105.4800033569336, + "y0": 506.1600036621094, + "x1": 220.32000732421875, + "y1": 531.719970703125, + "width": 114.84000396728516, + "height": 25.559967041015625 + }, { + "x0": 221.0399932861328, + "y0": 506.1600036621094, + "x1": 396.7200012207031, + "y1": 531.719970703125, + "width": 175.6800079345703, + "height": 25.559967041015625 + }, { + "x0": 397.79998779296875, + "y0": 507.6000061035156, + "x1": 468.3599853515625, + "y1": 531.719970703125, + "width": 70.55999755859375, + "height": 24.119964599609375 + }, { + "x0": 469.44000244140625, + "y0": 507.239990234375, + "x1": 523.7999877929688, + "y1": 531.719970703125, + "width": 54.3599853515625, + "height": 24.47998046875 + }, { + "x0": 105.4800033569336, + "y0": 492.4800109863281, + "x1": 220.32000732421875, + "y1": 505.44000244140625, + "width": 114.84000396728516, + "height": 12.959991455078125 + }, { + "x0": 221.0399932861328, + "y0": 492.4800109863281, + "x1": 396.7200012207031, + "y1": 505.44000244140625, + "width": 175.6800079345703, + "height": 12.959991455078125 + }, { + "x0": 397.79998779296875, + "y0": 492.4800109863281, + "x1": 468.3599853515625, + "y1": 505.44000244140625, + "width": 70.55999755859375, + "height": 12.959991455078125 + }, { + "x0": 469.44000244140625, + "y0": 492.4800109863281, + "x1": 523.7999877929688, + "y1": 505.0799865722656, + "width": 54.3599853515625, + "height": 12.5999755859375 + }, { + "x0": 105.4800033569336, + "y0": 466.20001220703125, + "x1": 220.32000732421875, + "y1": 491.760009765625, + "width": 114.84000396728516, + "height": 25.55999755859375 + }, { + "x0": 221.0399932861328, + "y0": 466.20001220703125, + "x1": 396.7200012207031, + "y1": 491.760009765625, + "width": 175.6800079345703, + "height": 25.55999755859375 + }, { + "x0": 397.79998779296875, + "y0": 466.20001220703125, + "x1": 468.3599853515625, + "y1": 491.760009765625, + "width": 70.55999755859375, + "height": 25.55999755859375 + }, { + "x0": 469.44000244140625, + "y0": 465.8399963378906, + "x1": 523.7999877929688, + "y1": 491.760009765625, + "width": 54.3599853515625, + "height": 25.920013427734375 + }, { + "x0": 105.4800033569336, + "y0": 452.5199890136719, + "x1": 220.32000732421875, + "y1": 465.1199951171875, + "width": 114.84000396728516, + "height": 12.600006103515625 + }, { + "x0": 221.0399932861328, + "y0": 452.5199890136719, + "x1": 396.7200012207031, + "y1": 465.1199951171875, + "width": 175.6800079345703, + "height": 12.600006103515625 + }, { + "x0": 397.79998779296875, + "y0": 452.5199890136719, + "x1": 468.3599853515625, + "y1": 465.1199951171875, + "width": 70.55999755859375, + "height": 12.600006103515625 + }, { + "x0": 469.44000244140625, + "y0": 452.5199890136719, + "x1": 523.7999877929688, + "y1": 465.1199951171875, + "width": 54.3599853515625, + "height": 12.600006103515625 + }, { + "x0": 105.4800033569336, + "y0": 439.20001220703125, + "x1": 220.32000732421875, + "y1": 451.79998779296875, + "width": 114.84000396728516, + "height": 12.5999755859375 + }, { + "x0": 221.0399932861328, + "y0": 439.20001220703125, + "x1": 396.7200012207031, + "y1": 451.79998779296875, + "width": 175.6800079345703, + "height": 12.5999755859375 + }, { + "x0": 397.79998779296875, + "y0": 438.8399963378906, + "x1": 468.3599853515625, + "y1": 451.79998779296875, + "width": 70.55999755859375, + "height": 12.959991455078125 + }, { + "x0": 469.44000244140625, + "y0": 438.8399963378906, + "x1": 523.7999877929688, + "y1": 451.44000244140625, + "width": 54.3599853515625, + "height": 12.600006103515625 + }, { + "x0": 105.4800033569336, + "y0": 425.5199890136719, + "x1": 220.32000732421875, + "y1": 438.1199951171875, + "width": 114.84000396728516, + "height": 12.600006103515625 + }, { + "x0": 221.0399932861328, + "y0": 425.5199890136719, + "x1": 396.7200012207031, + "y1": 438.1199951171875, + "width": 175.6800079345703, + "height": 12.600006103515625 + }, { + "x0": 397.79998779296875, + "y0": 425.5199890136719, + "x1": 468.3599853515625, + "y1": 438.1199951171875, + "width": 70.55999755859375, + "height": 12.600006103515625 + }, { + "x0": 469.44000244140625, + "y0": 425.5199890136719, + "x1": 523.7999877929688, + "y1": 438.1199951171875, + "width": 54.3599853515625, + "height": 12.600006103515625 + }, { + "x0": 105.4800033569336, + "y0": 399.239990234375, + "x1": 220.32000732421875, + "y1": 424.79998779296875, + "width": 114.84000396728516, + "height": 25.55999755859375 + }, { + "x0": 221.0399932861328, + "y0": 399.239990234375, + "x1": 396.7200012207031, + "y1": 424.79998779296875, + "width": 175.6800079345703, + "height": 25.55999755859375 + }, { + "x0": 397.79998779296875, + "y0": 399.239990234375, + "x1": 468.3599853515625, + "y1": 424.79998779296875, + "width": 70.55999755859375, + "height": 25.55999755859375 + }, { + "x0": 469.44000244140625, + "y0": 399.239990234375, + "x1": 523.7999877929688, + "y1": 424.79998779296875, + "width": 54.3599853515625, + "height": 25.55999755859375 + }, { + "x0": 105.4800033569336, + "y0": 385.9200134277344, + "x1": 220.32000732421875, + "y1": 398.5199890136719, + "width": 114.84000396728516, + "height": 12.5999755859375 + }, { + "x0": 221.0399932861328, + "y0": 385.9200134277344, + "x1": 396.7200012207031, + "y1": 398.5199890136719, + "width": 175.6800079345703, + "height": 12.5999755859375 + }, { + "x0": 397.79998779296875, + "y0": 385.9200134277344, + "x1": 468.3599853515625, + "y1": 398.5199890136719, + "width": 70.55999755859375, + "height": 12.5999755859375 + }, { + "x0": 469.44000244140625, + "y0": 385.9200134277344, + "x1": 523.7999877929688, + "y1": 398.5199890136719, + "width": 54.3599853515625, + "height": 12.5999755859375 + }, { + "x0": 105.4800033569336, + "y0": 359.2799987792969, + "x1": 220.32000732421875, + "y1": 385.20001220703125, + "width": 114.84000396728516, + "height": 25.920013427734375 + }, { + "x0": 221.0399932861328, + "y0": 359.2799987792969, + "x1": 396.7200012207031, + "y1": 385.20001220703125, + "width": 175.6800079345703, + "height": 25.920013427734375 + }, { + "x0": 397.79998779296875, + "y0": 359.2799987792969, + "x1": 468.3599853515625, + "y1": 385.20001220703125, + "width": 70.55999755859375, + "height": 25.920013427734375 + }, { + "x0": 469.44000244140625, + "y0": 359.2799987792969, + "x1": 523.7999877929688, + "y1": 385.20001220703125, + "width": 54.3599853515625, + "height": 25.920013427734375 + }, { + "x0": 105.4800033569336, + "y0": 345.9599914550781, + "x1": 220.32000732421875, + "y1": 358.55999755859375, + "width": 114.84000396728516, + "height": 12.600006103515625 + }, { + "x0": 221.0399932861328, + "y0": 345.9599914550781, + "x1": 396.7200012207031, + "y1": 358.55999755859375, + "width": 175.6800079345703, + "height": 12.600006103515625 + }, { + "x0": 397.79998779296875, + "y0": 345.9599914550781, + "x1": 468.3599853515625, + "y1": 358.55999755859375, + "width": 70.55999755859375, + "height": 12.600006103515625 + }, { + "x0": 469.44000244140625, + "y0": 345.9599914550781, + "x1": 523.7999877929688, + "y1": 358.55999755859375, + "width": 54.3599853515625, + "height": 12.600006103515625 + }, { + "x0": 105.4800033569336, + "y0": 319.67999267578125, + "x1": 220.32000732421875, + "y1": 345.239990234375, + "width": 114.84000396728516, + "height": 25.55999755859375 + }, { + "x0": 221.0399932861328, + "y0": 319.67999267578125, + "x1": 396.7200012207031, + "y1": 345.239990234375, + "width": 175.6800079345703, + "height": 25.55999755859375 + }, { + "x0": 397.79998779296875, + "y0": 319.67999267578125, + "x1": 468.3599853515625, + "y1": 345.239990234375, + "width": 70.55999755859375, + "height": 25.55999755859375 + }, { + "x0": 469.44000244140625, + "y0": 319.67999267578125, + "x1": 523.7999877929688, + "y1": 345.239990234375, + "width": 54.3599853515625, + "height": 25.55999755859375 + } + ] + }, { + "pageInfo": { + "number": 74, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 442.0799865722656, + "x1": 490.67999267578125, + "y1": 464.760009765625, + "width": 399.9599914550781, + "height": 22.680023193359375 + }, { + "x0": 90.72000122070312, + "y0": 406.79998779296875, + "x1": 192.9600067138672, + "y1": 441.3599853515625, + "width": 102.24000549316406, + "height": 34.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 406.79998779296875, + "x1": 264.9599914550781, + "y1": 441.3599853515625, + "width": 71.27999877929688, + "height": 34.55999755859375 + }, { + "x0": 265.67999267578125, + "y0": 406.79998779296875, + "x1": 323.6400146484375, + "y1": 441.3599853515625, + "width": 57.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 324.3599853515625, + "y0": 406.79998779296875, + "x1": 409.32000732421875, + "y1": 441.3599853515625, + "width": 84.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 409.67999267578125, + "y0": 406.79998779296875, + "x1": 490.67999267578125, + "y1": 441.3599853515625, + "width": 81.0, + "height": 34.55999755859375 + }, { + "x0": 90.72000122070312, + "y0": 390.9599914550781, + "x1": 192.9600067138672, + "y1": 406.0799865722656, + "width": 102.24000549316406, + "height": 15.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 390.9599914550781, + "x1": 264.9599914550781, + "y1": 406.0799865722656, + "width": 71.27999877929688, + "height": 15.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 390.9599914550781, + "x1": 323.6400146484375, + "y1": 406.0799865722656, + "width": 57.96002197265625, + "height": 15.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 390.9599914550781, + "x1": 409.32000732421875, + "y1": 406.0799865722656, + "width": 84.96002197265625, + "height": 15.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 390.9599914550781, + "x1": 490.67999267578125, + "y1": 406.0799865722656, + "width": 81.0, + "height": 15.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 366.1199951171875, + "x1": 192.9600067138672, + "y1": 390.239990234375, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 366.1199951171875, + "x1": 264.9599914550781, + "y1": 390.239990234375, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 366.1199951171875, + "x1": 323.6400146484375, + "y1": 390.239990234375, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 366.1199951171875, + "x1": 409.32000732421875, + "y1": 390.239990234375, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 366.1199951171875, + "x1": 490.67999267578125, + "y1": 390.239990234375, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 341.2799987792969, + "x1": 192.9600067138672, + "y1": 365.3999938964844, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 341.2799987792969, + "x1": 264.9599914550781, + "y1": 365.3999938964844, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 341.2799987792969, + "x1": 323.6400146484375, + "y1": 365.3999938964844, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 341.2799987792969, + "x1": 409.32000732421875, + "y1": 365.3999938964844, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 341.2799987792969, + "x1": 490.67999267578125, + "y1": 365.3999938964844, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 316.0799865722656, + "x1": 192.9600067138672, + "y1": 340.55999755859375, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 316.0799865722656, + "x1": 264.9599914550781, + "y1": 340.55999755859375, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 316.0799865722656, + "x1": 323.6400146484375, + "y1": 340.55999755859375, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 316.0799865722656, + "x1": 409.32000732421875, + "y1": 340.55999755859375, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 316.0799865722656, + "x1": 490.67999267578125, + "y1": 340.55999755859375, + "width": 81.0, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 291.239990234375, + "x1": 192.9600067138672, + "y1": 315.3599853515625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 291.239990234375, + "x1": 264.9599914550781, + "y1": 315.3599853515625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 291.239990234375, + "x1": 323.6400146484375, + "y1": 315.3599853515625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 291.239990234375, + "x1": 409.32000732421875, + "y1": 315.3599853515625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 291.239990234375, + "x1": 490.67999267578125, + "y1": 315.3599853515625, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 266.03997802734375, + "x1": 192.9600067138672, + "y1": 290.5199890136719, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 266.03997802734375, + "x1": 264.9599914550781, + "y1": 290.5199890136719, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 266.03997802734375, + "x1": 323.6400146484375, + "y1": 290.5199890136719, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 266.03997802734375, + "x1": 409.32000732421875, + "y1": 290.5199890136719, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 266.03997802734375, + "x1": 490.67999267578125, + "y1": 290.5199890136719, + "width": 81.0, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 241.20001220703125, + "x1": 192.9600067138672, + "y1": 265.32000732421875, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 241.20001220703125, + "x1": 264.9599914550781, + "y1": 265.32000732421875, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 241.20001220703125, + "x1": 323.6400146484375, + "y1": 265.32000732421875, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 241.20001220703125, + "x1": 409.32000732421875, + "y1": 265.32000732421875, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 241.20001220703125, + "x1": 490.67999267578125, + "y1": 265.32000732421875, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 216.0, + "x1": 192.9600067138672, + "y1": 240.47998046875, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 216.0, + "x1": 264.9599914550781, + "y1": 240.47998046875, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 216.0, + "x1": 323.6400146484375, + "y1": 240.47998046875, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 216.0, + "x1": 409.32000732421875, + "y1": 240.47998046875, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 216.0, + "x1": 490.67999267578125, + "y1": 240.47998046875, + "width": 81.0, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 191.15997314453125, + "x1": 192.9600067138672, + "y1": 215.280029296875, + "width": 102.24000549316406, + "height": 24.12005615234375 + }, { + "x0": 193.67999267578125, + "y0": 191.15997314453125, + "x1": 264.9599914550781, + "y1": 215.280029296875, + "width": 71.27999877929688, + "height": 24.12005615234375 + }, { + "x0": 265.67999267578125, + "y0": 191.15997314453125, + "x1": 323.6400146484375, + "y1": 215.280029296875, + "width": 57.96002197265625, + "height": 24.12005615234375 + }, { + "x0": 324.3599853515625, + "y0": 191.15997314453125, + "x1": 409.32000732421875, + "y1": 215.280029296875, + "width": 84.96002197265625, + "height": 24.12005615234375 + }, { + "x0": 409.67999267578125, + "y0": 191.15997314453125, + "x1": 490.67999267578125, + "y1": 215.280029296875, + "width": 81.0, + "height": 24.12005615234375 + } + ] + }, { + "pageInfo": { + "number": 75, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 677.1600341796875, + "x1": 490.67999267578125, + "y1": 699.8399658203125, + "width": 399.9599914550781, + "height": 22.679931640625 + }, { + "x0": 90.72000122070312, + "y0": 641.8800048828125, + "x1": 192.9600067138672, + "y1": 676.4400024414062, + "width": 102.24000549316406, + "height": 34.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 641.8800048828125, + "x1": 264.9599914550781, + "y1": 676.4400024414062, + "width": 71.27999877929688, + "height": 34.55999755859375 + }, { + "x0": 265.67999267578125, + "y0": 641.8800048828125, + "x1": 323.6400146484375, + "y1": 676.4400024414062, + "width": 57.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 324.3599853515625, + "y0": 641.8800048828125, + "x1": 409.32000732421875, + "y1": 676.4400024414062, + "width": 84.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 409.67999267578125, + "y0": 641.8800048828125, + "x1": 490.67999267578125, + "y1": 676.4400024414062, + "width": 81.0, + "height": 34.55999755859375 + }, { + "x0": 90.72000122070312, + "y0": 627.1199951171875, + "x1": 192.9600067138672, + "y1": 641.1600341796875, + "width": 102.24000549316406, + "height": 14.0400390625 + }, { + "x0": 193.67999267578125, + "y0": 627.1199951171875, + "x1": 264.9599914550781, + "y1": 641.1600341796875, + "width": 71.27999877929688, + "height": 14.0400390625 + }, { + "x0": 265.67999267578125, + "y0": 627.1199951171875, + "x1": 323.6400146484375, + "y1": 641.1600341796875, + "width": 57.96002197265625, + "height": 14.0400390625 + }, { + "x0": 324.3599853515625, + "y0": 627.1199951171875, + "x1": 409.32000732421875, + "y1": 641.1600341796875, + "width": 84.96002197265625, + "height": 14.0400390625 + }, { + "x0": 409.67999267578125, + "y0": 627.1199951171875, + "x1": 490.67999267578125, + "y1": 641.1600341796875, + "width": 81.0, + "height": 14.0400390625 + }, { + "x0": 90.72000122070312, + "y0": 602.280029296875, + "x1": 192.9600067138672, + "y1": 626.4000244140625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 602.280029296875, + "x1": 264.9599914550781, + "y1": 626.4000244140625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 602.280029296875, + "x1": 323.6400146484375, + "y1": 626.4000244140625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 602.280029296875, + "x1": 409.32000732421875, + "y1": 626.4000244140625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 602.280029296875, + "x1": 490.67999267578125, + "y1": 626.4000244140625, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 577.0800170898438, + "x1": 192.9600067138672, + "y1": 601.5599975585938, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 577.0800170898438, + "x1": 264.9599914550781, + "y1": 601.5599975585938, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 577.0800170898438, + "x1": 323.6400146484375, + "y1": 601.5599975585938, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 577.0800170898438, + "x1": 409.32000732421875, + "y1": 601.5599975585938, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 577.0800170898438, + "x1": 490.67999267578125, + "y1": 601.5599975585938, + "width": 81.0, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 552.239990234375, + "x1": 192.9600067138672, + "y1": 576.3599853515625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 552.239990234375, + "x1": 264.9599914550781, + "y1": 576.3599853515625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 552.239990234375, + "x1": 323.6400146484375, + "y1": 576.3599853515625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 552.239990234375, + "x1": 409.32000732421875, + "y1": 576.3599853515625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 552.239990234375, + "x1": 490.67999267578125, + "y1": 576.3599853515625, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 527.0400390625, + "x1": 192.9600067138672, + "y1": 551.52001953125, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 527.0400390625, + "x1": 264.9599914550781, + "y1": 551.52001953125, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 527.0400390625, + "x1": 323.6400146484375, + "y1": 551.52001953125, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 527.0400390625, + "x1": 409.32000732421875, + "y1": 551.52001953125, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 527.0400390625, + "x1": 490.67999267578125, + "y1": 551.52001953125, + "width": 81.0, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 502.20001220703125, + "x1": 192.9600067138672, + "y1": 526.3200073242188, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 502.20001220703125, + "x1": 264.9599914550781, + "y1": 526.3200073242188, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 502.20001220703125, + "x1": 323.6400146484375, + "y1": 526.3200073242188, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 502.20001220703125, + "x1": 409.32000732421875, + "y1": 526.3200073242188, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 502.20001220703125, + "x1": 490.67999267578125, + "y1": 526.3200073242188, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 477.0, + "x1": 192.9600067138672, + "y1": 501.4800109863281, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 477.0, + "x1": 264.9599914550781, + "y1": 501.4800109863281, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 477.0, + "x1": 323.6400146484375, + "y1": 501.4800109863281, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 477.0, + "x1": 409.32000732421875, + "y1": 501.4800109863281, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 477.0, + "x1": 490.67999267578125, + "y1": 501.4800109863281, + "width": 81.0, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 452.1600036621094, + "x1": 192.9600067138672, + "y1": 476.2799987792969, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 452.1600036621094, + "x1": 264.9599914550781, + "y1": 476.2799987792969, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 452.1600036621094, + "x1": 323.6400146484375, + "y1": 476.2799987792969, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 452.1600036621094, + "x1": 409.32000732421875, + "y1": 476.2799987792969, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 452.1600036621094, + "x1": 490.67999267578125, + "y1": 476.2799987792969, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 426.9599914550781, + "x1": 192.9600067138672, + "y1": 451.44000244140625, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 426.9599914550781, + "x1": 264.9599914550781, + "y1": 451.44000244140625, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 426.9599914550781, + "x1": 323.6400146484375, + "y1": 451.44000244140625, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 426.9599914550781, + "x1": 409.32000732421875, + "y1": 451.44000244140625, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 426.9599914550781, + "x1": 490.67999267578125, + "y1": 451.44000244140625, + "width": 81.0, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 412.20001220703125, + "x1": 192.9600067138672, + "y1": 426.239990234375, + "width": 102.24000549316406, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 412.20001220703125, + "x1": 264.9599914550781, + "y1": 426.239990234375, + "width": 71.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 265.67999267578125, + "y0": 412.20001220703125, + "x1": 323.6400146484375, + "y1": 426.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 324.3599853515625, + "y0": 412.20001220703125, + "x1": 409.32000732421875, + "y1": 426.239990234375, + "width": 84.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 409.67999267578125, + "y0": 412.20001220703125, + "x1": 490.67999267578125, + "y1": 426.239990234375, + "width": 81.0, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 387.3599853515625, + "x1": 192.9600067138672, + "y1": 411.4800109863281, + "width": 102.24000549316406, + "height": 24.120025634765625 + }, { + "x0": 193.67999267578125, + "y0": 387.3599853515625, + "x1": 264.9599914550781, + "y1": 411.4800109863281, + "width": 71.27999877929688, + "height": 24.120025634765625 + }, { + "x0": 265.67999267578125, + "y0": 387.3599853515625, + "x1": 323.6400146484375, + "y1": 411.4800109863281, + "width": 57.96002197265625, + "height": 24.120025634765625 + }, { + "x0": 324.3599853515625, + "y0": 387.3599853515625, + "x1": 409.32000732421875, + "y1": 411.4800109863281, + "width": 84.96002197265625, + "height": 24.120025634765625 + }, { + "x0": 409.67999267578125, + "y0": 387.3599853515625, + "x1": 490.67999267578125, + "y1": 411.4800109863281, + "width": 81.0, + "height": 24.120025634765625 + }, { + "x0": 90.72000122070312, + "y0": 362.1600036621094, + "x1": 192.9600067138672, + "y1": 386.6400146484375, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 362.1600036621094, + "x1": 264.9599914550781, + "y1": 386.6400146484375, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 362.1600036621094, + "x1": 323.6400146484375, + "y1": 386.6400146484375, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 362.1600036621094, + "x1": 409.32000732421875, + "y1": 386.6400146484375, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 362.1600036621094, + "x1": 490.67999267578125, + "y1": 386.6400146484375, + "width": 81.0, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 337.32000732421875, + "x1": 192.9600067138672, + "y1": 361.44000244140625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 337.32000732421875, + "x1": 264.9599914550781, + "y1": 361.44000244140625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 337.32000732421875, + "x1": 323.6400146484375, + "y1": 361.44000244140625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 337.32000732421875, + "x1": 409.32000732421875, + "y1": 361.44000244140625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 337.32000732421875, + "x1": 490.67999267578125, + "y1": 361.44000244140625, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 312.1199951171875, + "x1": 192.9600067138672, + "y1": 336.6000061035156, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 312.1199951171875, + "x1": 264.9599914550781, + "y1": 336.6000061035156, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 312.1199951171875, + "x1": 323.6400146484375, + "y1": 336.6000061035156, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 312.1199951171875, + "x1": 409.32000732421875, + "y1": 336.6000061035156, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 312.1199951171875, + "x1": 490.67999267578125, + "y1": 336.6000061035156, + "width": 81.0, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 287.2799987792969, + "x1": 192.9600067138672, + "y1": 311.3999938964844, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 287.2799987792969, + "x1": 264.9599914550781, + "y1": 311.3999938964844, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 287.2799987792969, + "x1": 323.6400146484375, + "y1": 311.3999938964844, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 287.2799987792969, + "x1": 409.32000732421875, + "y1": 311.3999938964844, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 287.2799987792969, + "x1": 490.67999267578125, + "y1": 311.3999938964844, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 262.08001708984375, + "x1": 192.9600067138672, + "y1": 286.55999755859375, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 262.08001708984375, + "x1": 264.9599914550781, + "y1": 286.55999755859375, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 262.08001708984375, + "x1": 323.6400146484375, + "y1": 286.55999755859375, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 262.08001708984375, + "x1": 409.32000732421875, + "y1": 286.55999755859375, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 262.08001708984375, + "x1": 490.67999267578125, + "y1": 286.55999755859375, + "width": 81.0, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 237.239990234375, + "x1": 192.9600067138672, + "y1": 261.3599853515625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 237.239990234375, + "x1": 264.9599914550781, + "y1": 261.3599853515625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 237.239990234375, + "x1": 323.6400146484375, + "y1": 261.3599853515625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 237.239990234375, + "x1": 409.32000732421875, + "y1": 261.3599853515625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 237.239990234375, + "x1": 490.67999267578125, + "y1": 261.3599853515625, + "width": 81.0, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 212.03997802734375, + "x1": 192.9600067138672, + "y1": 236.52001953125, + "width": 102.24000549316406, + "height": 24.48004150390625 + }, { + "x0": 193.67999267578125, + "y0": 212.03997802734375, + "x1": 264.9599914550781, + "y1": 236.52001953125, + "width": 71.27999877929688, + "height": 24.48004150390625 + }, { + "x0": 265.67999267578125, + "y0": 212.03997802734375, + "x1": 323.6400146484375, + "y1": 236.52001953125, + "width": 57.96002197265625, + "height": 24.48004150390625 + }, { + "x0": 324.3599853515625, + "y0": 212.03997802734375, + "x1": 409.32000732421875, + "y1": 236.52001953125, + "width": 84.96002197265625, + "height": 24.48004150390625 + }, { + "x0": 409.67999267578125, + "y0": 212.03997802734375, + "x1": 490.67999267578125, + "y1": 236.52001953125, + "width": 81.0, + "height": 24.48004150390625 + } + ] + }, { + "pageInfo": { + "number": 76, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 677.1600341796875, + "x1": 490.67999267578125, + "y1": 699.8399658203125, + "width": 399.9599914550781, + "height": 22.679931640625 + }, { + "x0": 90.72000122070312, + "y0": 641.8800048828125, + "x1": 193.67999267578125, + "y1": 676.4400024414062, + "width": 102.95999145507812, + "height": 34.55999755859375 + }, { + "x0": 194.0399932861328, + "y0": 641.8800048828125, + "x1": 265.67999267578125, + "y1": 676.4400024414062, + "width": 71.63999938964844, + "height": 34.55999755859375 + }, { + "x0": 266.0400085449219, + "y0": 641.8800048828125, + "x1": 324.0, + "y1": 676.4400024414062, + "width": 57.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 324.7200012207031, + "y0": 641.8800048828125, + "x1": 409.67999267578125, + "y1": 676.4400024414062, + "width": 84.95999145507812, + "height": 34.55999755859375 + }, { + "x0": 410.3999938964844, + "y0": 641.8800048828125, + "x1": 490.67999267578125, + "y1": 676.4400024414062, + "width": 80.27999877929688, + "height": 34.55999755859375 + }, { + "x0": 90.72000122070312, + "y0": 625.6799926757812, + "x1": 193.67999267578125, + "y1": 641.1600341796875, + "width": 102.95999145507812, + "height": 15.48004150390625 + }, { + "x0": 194.0399932861328, + "y0": 625.6799926757812, + "x1": 265.67999267578125, + "y1": 641.1600341796875, + "width": 71.63999938964844, + "height": 15.48004150390625 + }, { + "x0": 266.0400085449219, + "y0": 625.6799926757812, + "x1": 324.0, + "y1": 641.1600341796875, + "width": 57.959991455078125, + "height": 15.48004150390625 + }, { + "x0": 324.7200012207031, + "y0": 625.6799926757812, + "x1": 409.67999267578125, + "y1": 641.1600341796875, + "width": 84.95999145507812, + "height": 15.48004150390625 + }, { + "x0": 410.3999938964844, + "y0": 625.6799926757812, + "x1": 490.67999267578125, + "y1": 641.1600341796875, + "width": 80.27999877929688, + "height": 15.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 602.280029296875, + "x1": 193.67999267578125, + "y1": 624.9600219726562, + "width": 102.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 194.0399932861328, + "y0": 602.280029296875, + "x1": 265.67999267578125, + "y1": 624.9600219726562, + "width": 71.63999938964844, + "height": 22.67999267578125 + }, { + "x0": 266.0400085449219, + "y0": 602.280029296875, + "x1": 324.0, + "y1": 624.9600219726562, + "width": 57.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 324.7200012207031, + "y0": 602.280029296875, + "x1": 409.67999267578125, + "y1": 624.9600219726562, + "width": 84.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 410.3999938964844, + "y0": 602.280029296875, + "x1": 490.67999267578125, + "y1": 624.9600219726562, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 90.72000122070312, + "y0": 585.719970703125, + "x1": 193.67999267578125, + "y1": 601.5599975585938, + "width": 102.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 194.0399932861328, + "y0": 585.719970703125, + "x1": 265.67999267578125, + "y1": 601.5599975585938, + "width": 71.63999938964844, + "height": 15.84002685546875 + }, { + "x0": 266.0400085449219, + "y0": 585.719970703125, + "x1": 324.0, + "y1": 601.5599975585938, + "width": 57.959991455078125, + "height": 15.84002685546875 + }, { + "x0": 324.7200012207031, + "y0": 585.719970703125, + "x1": 409.67999267578125, + "y1": 601.5599975585938, + "width": 84.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 410.3999938964844, + "y0": 585.719970703125, + "x1": 490.67999267578125, + "y1": 601.5599975585938, + "width": 80.27999877929688, + "height": 15.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 569.52001953125, + "x1": 193.67999267578125, + "y1": 585.0, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 569.52001953125, + "x1": 265.67999267578125, + "y1": 585.0, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 569.52001953125, + "x1": 324.0, + "y1": 585.0, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 569.52001953125, + "x1": 409.67999267578125, + "y1": 585.0, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 569.52001953125, + "x1": 490.67999267578125, + "y1": 585.0, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 553.3200073242188, + "x1": 193.67999267578125, + "y1": 568.7999877929688, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 553.3200073242188, + "x1": 265.67999267578125, + "y1": 568.7999877929688, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 553.3200073242188, + "x1": 324.0, + "y1": 568.7999877929688, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 553.3200073242188, + "x1": 409.67999267578125, + "y1": 568.7999877929688, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 553.3200073242188, + "x1": 490.67999267578125, + "y1": 568.7999877929688, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 536.760009765625, + "x1": 193.67999267578125, + "y1": 552.5999755859375, + "width": 102.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 194.0399932861328, + "y0": 536.760009765625, + "x1": 265.67999267578125, + "y1": 552.5999755859375, + "width": 71.63999938964844, + "height": 15.8399658203125 + }, { + "x0": 266.0400085449219, + "y0": 536.760009765625, + "x1": 324.0, + "y1": 552.5999755859375, + "width": 57.959991455078125, + "height": 15.8399658203125 + }, { + "x0": 324.7200012207031, + "y0": 536.760009765625, + "x1": 409.67999267578125, + "y1": 552.5999755859375, + "width": 84.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 410.3999938964844, + "y0": 536.760009765625, + "x1": 490.67999267578125, + "y1": 552.5999755859375, + "width": 80.27999877929688, + "height": 15.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 520.5599975585938, + "x1": 193.67999267578125, + "y1": 536.0399780273438, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 520.5599975585938, + "x1": 265.67999267578125, + "y1": 536.0399780273438, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 520.5599975585938, + "x1": 324.0, + "y1": 536.0399780273438, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 520.5599975585938, + "x1": 409.67999267578125, + "y1": 536.0399780273438, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 520.5599975585938, + "x1": 490.67999267578125, + "y1": 536.0399780273438, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 504.0, + "x1": 193.67999267578125, + "y1": 519.8399658203125, + "width": 102.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 194.0399932861328, + "y0": 504.0, + "x1": 265.67999267578125, + "y1": 519.8399658203125, + "width": 71.63999938964844, + "height": 15.8399658203125 + }, { + "x0": 266.0400085449219, + "y0": 504.0, + "x1": 324.0, + "y1": 519.8399658203125, + "width": 57.959991455078125, + "height": 15.8399658203125 + }, { + "x0": 324.7200012207031, + "y0": 504.0, + "x1": 409.67999267578125, + "y1": 519.8399658203125, + "width": 84.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 410.3999938964844, + "y0": 504.0, + "x1": 490.67999267578125, + "y1": 519.8399658203125, + "width": 80.27999877929688, + "height": 15.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 487.79998779296875, + "x1": 193.67999267578125, + "y1": 503.2799987792969, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 487.79998779296875, + "x1": 265.67999267578125, + "y1": 503.2799987792969, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 487.79998779296875, + "x1": 324.0, + "y1": 503.2799987792969, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 487.79998779296875, + "x1": 409.67999267578125, + "y1": 503.2799987792969, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 487.79998779296875, + "x1": 490.67999267578125, + "y1": 503.2799987792969, + "width": 80.27999877929688, + "height": 15.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 471.239990234375, + "x1": 193.67999267578125, + "y1": 487.0799865722656, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 471.239990234375, + "x1": 265.67999267578125, + "y1": 487.0799865722656, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 471.239990234375, + "x1": 324.0, + "y1": 487.0799865722656, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 471.239990234375, + "x1": 409.67999267578125, + "y1": 487.0799865722656, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 471.239990234375, + "x1": 490.67999267578125, + "y1": 487.0799865722656, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 447.8399963378906, + "x1": 193.67999267578125, + "y1": 470.5199890136719, + "width": 102.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 194.0399932861328, + "y0": 447.8399963378906, + "x1": 265.67999267578125, + "y1": 470.5199890136719, + "width": 71.63999938964844, + "height": 22.67999267578125 + }, { + "x0": 266.0400085449219, + "y0": 447.8399963378906, + "x1": 324.0, + "y1": 470.5199890136719, + "width": 57.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 324.7200012207031, + "y0": 447.8399963378906, + "x1": 409.67999267578125, + "y1": 470.5199890136719, + "width": 84.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 410.3999938964844, + "y0": 447.8399963378906, + "x1": 490.67999267578125, + "y1": 470.5199890136719, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 90.72000122070312, + "y0": 431.6400146484375, + "x1": 193.67999267578125, + "y1": 447.1199951171875, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 431.6400146484375, + "x1": 265.67999267578125, + "y1": 447.1199951171875, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 431.6400146484375, + "x1": 324.0, + "y1": 447.1199951171875, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 431.6400146484375, + "x1": 409.67999267578125, + "y1": 447.1199951171875, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 431.6400146484375, + "x1": 490.67999267578125, + "y1": 447.1199951171875, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 415.0799865722656, + "x1": 193.67999267578125, + "y1": 430.9200134277344, + "width": 102.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 194.0399932861328, + "y0": 415.0799865722656, + "x1": 265.67999267578125, + "y1": 430.9200134277344, + "width": 71.63999938964844, + "height": 15.84002685546875 + }, { + "x0": 266.0400085449219, + "y0": 415.0799865722656, + "x1": 324.0, + "y1": 430.9200134277344, + "width": 57.959991455078125, + "height": 15.84002685546875 + }, { + "x0": 324.7200012207031, + "y0": 415.0799865722656, + "x1": 409.67999267578125, + "y1": 430.9200134277344, + "width": 84.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 410.3999938964844, + "y0": 415.0799865722656, + "x1": 490.67999267578125, + "y1": 430.9200134277344, + "width": 80.27999877929688, + "height": 15.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 398.8800048828125, + "x1": 193.67999267578125, + "y1": 414.3599853515625, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 398.8800048828125, + "x1": 265.67999267578125, + "y1": 414.3599853515625, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 398.8800048828125, + "x1": 324.0, + "y1": 414.3599853515625, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 398.8800048828125, + "x1": 409.67999267578125, + "y1": 414.3599853515625, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 398.8800048828125, + "x1": 490.67999267578125, + "y1": 414.3599853515625, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 382.32000732421875, + "x1": 193.67999267578125, + "y1": 398.1600036621094, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 382.32000732421875, + "x1": 265.67999267578125, + "y1": 398.1600036621094, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 382.32000732421875, + "x1": 324.0, + "y1": 398.1600036621094, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 382.32000732421875, + "x1": 409.67999267578125, + "y1": 398.1600036621094, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 382.32000732421875, + "x1": 490.67999267578125, + "y1": 398.1600036621094, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 366.1199951171875, + "x1": 193.67999267578125, + "y1": 381.6000061035156, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 366.1199951171875, + "x1": 265.67999267578125, + "y1": 381.6000061035156, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 366.1199951171875, + "x1": 324.0, + "y1": 381.6000061035156, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 366.1199951171875, + "x1": 409.67999267578125, + "y1": 381.6000061035156, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 366.1199951171875, + "x1": 490.67999267578125, + "y1": 381.6000061035156, + "width": 80.27999877929688, + "height": 15.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 349.9200134277344, + "x1": 193.67999267578125, + "y1": 365.3999938964844, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 349.9200134277344, + "x1": 265.67999267578125, + "y1": 365.3999938964844, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 349.9200134277344, + "x1": 324.0, + "y1": 365.3999938964844, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 349.9200134277344, + "x1": 409.67999267578125, + "y1": 365.3999938964844, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 349.9200134277344, + "x1": 490.67999267578125, + "y1": 365.3999938964844, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 333.3599853515625, + "x1": 193.67999267578125, + "y1": 349.20001220703125, + "width": 102.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 194.0399932861328, + "y0": 333.3599853515625, + "x1": 265.67999267578125, + "y1": 349.20001220703125, + "width": 71.63999938964844, + "height": 15.84002685546875 + }, { + "x0": 266.0400085449219, + "y0": 333.3599853515625, + "x1": 324.0, + "y1": 349.20001220703125, + "width": 57.959991455078125, + "height": 15.84002685546875 + }, { + "x0": 324.7200012207031, + "y0": 333.3599853515625, + "x1": 409.67999267578125, + "y1": 349.20001220703125, + "width": 84.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 410.3999938964844, + "y0": 333.3599853515625, + "x1": 490.67999267578125, + "y1": 349.20001220703125, + "width": 80.27999877929688, + "height": 15.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 317.1600036621094, + "x1": 193.67999267578125, + "y1": 332.6400146484375, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 317.1600036621094, + "x1": 265.67999267578125, + "y1": 332.6400146484375, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 317.1600036621094, + "x1": 324.0, + "y1": 332.6400146484375, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 317.1600036621094, + "x1": 409.67999267578125, + "y1": 332.6400146484375, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 317.1600036621094, + "x1": 490.67999267578125, + "y1": 332.6400146484375, + "width": 80.27999877929688, + "height": 15.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 293.760009765625, + "x1": 193.67999267578125, + "y1": 316.44000244140625, + "width": 102.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 194.0399932861328, + "y0": 293.760009765625, + "x1": 265.67999267578125, + "y1": 316.44000244140625, + "width": 71.63999938964844, + "height": 22.67999267578125 + }, { + "x0": 266.0400085449219, + "y0": 293.760009765625, + "x1": 324.0, + "y1": 316.44000244140625, + "width": 57.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 324.7200012207031, + "y0": 293.760009765625, + "x1": 409.67999267578125, + "y1": 316.44000244140625, + "width": 84.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 410.3999938964844, + "y0": 293.760009765625, + "x1": 490.67999267578125, + "y1": 316.44000244140625, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 90.72000122070312, + "y0": 277.20001220703125, + "x1": 193.67999267578125, + "y1": 293.0400085449219, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 277.20001220703125, + "x1": 265.67999267578125, + "y1": 293.0400085449219, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 277.20001220703125, + "x1": 324.0, + "y1": 293.0400085449219, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 277.20001220703125, + "x1": 409.67999267578125, + "y1": 293.0400085449219, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 277.20001220703125, + "x1": 490.67999267578125, + "y1": 293.0400085449219, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 261.0, + "x1": 193.67999267578125, + "y1": 276.47998046875, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 261.0, + "x1": 265.67999267578125, + "y1": 276.47998046875, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 261.0, + "x1": 324.0, + "y1": 276.47998046875, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 261.0, + "x1": 409.67999267578125, + "y1": 276.47998046875, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 261.0, + "x1": 490.67999267578125, + "y1": 276.47998046875, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 244.44000244140625, + "x1": 193.67999267578125, + "y1": 260.280029296875, + "width": 102.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 194.0399932861328, + "y0": 244.44000244140625, + "x1": 265.67999267578125, + "y1": 260.280029296875, + "width": 71.63999938964844, + "height": 15.84002685546875 + }, { + "x0": 266.0400085449219, + "y0": 244.44000244140625, + "x1": 324.0, + "y1": 260.280029296875, + "width": 57.959991455078125, + "height": 15.84002685546875 + }, { + "x0": 324.7200012207031, + "y0": 244.44000244140625, + "x1": 409.67999267578125, + "y1": 260.280029296875, + "width": 84.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 410.3999938964844, + "y0": 244.44000244140625, + "x1": 490.67999267578125, + "y1": 260.280029296875, + "width": 80.27999877929688, + "height": 15.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 228.239990234375, + "x1": 193.67999267578125, + "y1": 243.719970703125, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 228.239990234375, + "x1": 265.67999267578125, + "y1": 243.719970703125, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 228.239990234375, + "x1": 324.0, + "y1": 243.719970703125, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 228.239990234375, + "x1": 409.67999267578125, + "y1": 243.719970703125, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 228.239990234375, + "x1": 490.67999267578125, + "y1": 243.719970703125, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 211.67999267578125, + "x1": 193.67999267578125, + "y1": 227.52001953125, + "width": 102.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 194.0399932861328, + "y0": 211.67999267578125, + "x1": 265.67999267578125, + "y1": 227.52001953125, + "width": 71.63999938964844, + "height": 15.84002685546875 + }, { + "x0": 266.0400085449219, + "y0": 211.67999267578125, + "x1": 324.0, + "y1": 227.52001953125, + "width": 57.959991455078125, + "height": 15.84002685546875 + }, { + "x0": 324.7200012207031, + "y0": 211.67999267578125, + "x1": 409.67999267578125, + "y1": 227.52001953125, + "width": 84.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 410.3999938964844, + "y0": 211.67999267578125, + "x1": 490.67999267578125, + "y1": 227.52001953125, + "width": 80.27999877929688, + "height": 15.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 195.47998046875, + "x1": 193.67999267578125, + "y1": 210.96002197265625, + "width": 102.95999145507812, + "height": 15.48004150390625 + }, { + "x0": 194.0399932861328, + "y0": 195.47998046875, + "x1": 265.67999267578125, + "y1": 210.96002197265625, + "width": 71.63999938964844, + "height": 15.48004150390625 + }, { + "x0": 266.0400085449219, + "y0": 195.47998046875, + "x1": 324.0, + "y1": 210.96002197265625, + "width": 57.959991455078125, + "height": 15.48004150390625 + }, { + "x0": 324.7200012207031, + "y0": 195.47998046875, + "x1": 409.67999267578125, + "y1": 210.96002197265625, + "width": 84.95999145507812, + "height": 15.48004150390625 + }, { + "x0": 410.3999938964844, + "y0": 195.47998046875, + "x1": 490.67999267578125, + "y1": 210.96002197265625, + "width": 80.27999877929688, + "height": 15.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 179.280029296875, + "x1": 193.67999267578125, + "y1": 194.760009765625, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 179.280029296875, + "x1": 265.67999267578125, + "y1": 194.760009765625, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 179.280029296875, + "x1": 324.0, + "y1": 194.760009765625, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 179.280029296875, + "x1": 409.67999267578125, + "y1": 194.760009765625, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 179.280029296875, + "x1": 490.67999267578125, + "y1": 194.760009765625, + "width": 80.27999877929688, + "height": 15.47998046875 + } + ] + }, { + "pageInfo": { + "number": 77, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 665.6400146484375, + "x1": 544.6799926757812, + "y1": 699.8399658203125, + "width": 453.9599914550781, + "height": 34.199951171875 + }, { + "x0": 90.72000122070312, + "y0": 627.8399658203125, + "x1": 139.67999267578125, + "y1": 664.9199829101562, + "width": 48.959991455078125, + "height": 37.08001708984375 + }, { + "x0": 140.0399932861328, + "y0": 627.8399658203125, + "x1": 189.0, + "y1": 664.9199829101562, + "width": 48.96000671386719, + "height": 37.08001708984375 + }, { + "x0": 189.72000122070312, + "y0": 627.8399658203125, + "x1": 211.67999267578125, + "y1": 664.9199829101562, + "width": 21.959991455078125, + "height": 37.08001708984375 + }, { + "x0": 212.39999389648438, + "y0": 627.8399658203125, + "x1": 265.32000732421875, + "y1": 664.9199829101562, + "width": 52.920013427734375, + "height": 37.08001708984375 + }, { + "x0": 265.67999267578125, + "y0": 649.0800170898438, + "x1": 544.6799926757812, + "y1": 664.9199829101562, + "width": 279.0, + "height": 15.8399658203125 + }, { + "x0": 265.67999267578125, + "y0": 627.8399658203125, + "x1": 300.9599914550781, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 627.8399658203125, + "x1": 332.6400146484375, + "y1": 648.3599853515625, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 627.8399658203125, + "x1": 364.67999267578125, + "y1": 648.3599853515625, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 627.8399658203125, + "x1": 400.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 627.8399658203125, + "x1": 436.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 627.8399658203125, + "x1": 472.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 627.8399658203125, + "x1": 508.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 627.8399658203125, + "x1": 544.6799926757812, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 90.72000122070312, + "y0": 500.760009765625, + "x1": 139.67999267578125, + "y1": 627.1199951171875, + "width": 48.959991455078125, + "height": 126.3599853515625 + }, { + "x0": 140.0399932861328, + "y0": 585.719970703125, + "x1": 189.0, + "y1": 627.1199951171875, + "width": 48.96000671386719, + "height": 41.4000244140625 + }, { + "x0": 189.72000122070312, + "y0": 606.9600219726562, + "x1": 211.67999267578125, + "y1": 627.1199951171875, + "width": 21.959991455078125, + "height": 20.15997314453125 + }, { + "x0": 212.39999389648438, + "y0": 606.9600219726562, + "x1": 265.32000732421875, + "y1": 627.1199951171875, + "width": 52.920013427734375, + "height": 20.15997314453125 + }, { + "x0": 265.67999267578125, + "y0": 606.9600219726562, + "x1": 300.9599914550781, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 301.67999267578125, + "y0": 606.9600219726562, + "x1": 332.6400146484375, + "y1": 627.1199951171875, + "width": 30.96002197265625, + "height": 20.15997314453125 + }, { + "x0": 333.3599853515625, + "y0": 606.9600219726562, + "x1": 364.67999267578125, + "y1": 627.1199951171875, + "width": 31.32000732421875, + "height": 20.15997314453125 + }, { + "x0": 365.3999938964844, + "y0": 606.9600219726562, + "x1": 400.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 401.3999938964844, + "y0": 606.9600219726562, + "x1": 436.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 437.3999938964844, + "y0": 606.9600219726562, + "x1": 472.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 473.3999938964844, + "y0": 606.9600219726562, + "x1": 508.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 509.3999938964844, + "y0": 606.9600219726562, + "x1": 544.6799926757812, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 189.72000122070312, + "y0": 585.719970703125, + "x1": 211.67999267578125, + "y1": 606.239990234375, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 585.719970703125, + "x1": 265.32000732421875, + "y1": 606.239990234375, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 585.719970703125, + "x1": 300.9599914550781, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 585.719970703125, + "x1": 332.6400146484375, + "y1": 606.239990234375, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 585.719970703125, + "x1": 364.67999267578125, + "y1": 606.239990234375, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 585.719970703125, + "x1": 400.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 585.719970703125, + "x1": 436.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 585.719970703125, + "x1": 472.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 585.719970703125, + "x1": 508.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 585.719970703125, + "x1": 544.6799926757812, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 140.0399932861328, + "y0": 543.239990234375, + "x1": 189.0, + "y1": 585.0, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 564.47998046875, + "x1": 211.67999267578125, + "y1": 585.0, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 564.47998046875, + "x1": 265.32000732421875, + "y1": 585.0, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 564.47998046875, + "x1": 300.9599914550781, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 564.47998046875, + "x1": 332.6400146484375, + "y1": 585.0, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 564.47998046875, + "x1": 364.67999267578125, + "y1": 585.0, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 564.47998046875, + "x1": 400.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 564.47998046875, + "x1": 436.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 564.47998046875, + "x1": 472.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 564.47998046875, + "x1": 508.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 564.47998046875, + "x1": 544.6799926757812, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 543.239990234375, + "x1": 211.67999267578125, + "y1": 563.760009765625, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 543.239990234375, + "x1": 265.32000732421875, + "y1": 563.760009765625, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 543.239990234375, + "x1": 300.9599914550781, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 543.239990234375, + "x1": 332.6400146484375, + "y1": 563.760009765625, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 543.239990234375, + "x1": 364.67999267578125, + "y1": 563.760009765625, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 543.239990234375, + "x1": 400.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 543.239990234375, + "x1": 436.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 543.239990234375, + "x1": 472.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 543.239990234375, + "x1": 508.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 543.239990234375, + "x1": 544.6799926757812, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 140.0399932861328, + "y0": 500.760009765625, + "x1": 189.0, + "y1": 542.52001953125, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 522.0, + "x1": 211.67999267578125, + "y1": 542.52001953125, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 522.0, + "x1": 265.32000732421875, + "y1": 542.52001953125, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 522.0, + "x1": 300.9599914550781, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 522.0, + "x1": 332.6400146484375, + "y1": 542.52001953125, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 522.0, + "x1": 364.67999267578125, + "y1": 542.52001953125, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 522.0, + "x1": 400.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 522.0, + "x1": 436.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 522.0, + "x1": 472.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 522.0, + "x1": 508.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 522.0, + "x1": 544.6799926757812, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 500.760009765625, + "x1": 211.67999267578125, + "y1": 521.280029296875, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 500.760009765625, + "x1": 265.32000732421875, + "y1": 521.280029296875, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 500.760009765625, + "x1": 300.9599914550781, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 500.760009765625, + "x1": 332.6400146484375, + "y1": 521.280029296875, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 500.760009765625, + "x1": 364.67999267578125, + "y1": 521.280029296875, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 500.760009765625, + "x1": 400.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 500.760009765625, + "x1": 436.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 500.760009765625, + "x1": 472.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 500.760009765625, + "x1": 508.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 500.760009765625, + "x1": 544.6799926757812, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 90.72000122070312, + "y0": 373.67999267578125, + "x1": 139.67999267578125, + "y1": 500.0400085449219, + "width": 48.959991455078125, + "height": 126.36001586914062 + }, { + "x0": 140.0399932861328, + "y0": 458.2799987792969, + "x1": 189.0, + "y1": 500.0400085449219, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 479.5199890136719, + "x1": 211.67999267578125, + "y1": 500.0400085449219, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 479.5199890136719, + "x1": 265.32000732421875, + "y1": 500.0400085449219, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 479.5199890136719, + "x1": 300.9599914550781, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 479.5199890136719, + "x1": 332.6400146484375, + "y1": 500.0400085449219, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 479.5199890136719, + "x1": 364.67999267578125, + "y1": 500.0400085449219, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 479.5199890136719, + "x1": 400.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 479.5199890136719, + "x1": 436.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 479.5199890136719, + "x1": 472.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 479.5199890136719, + "x1": 508.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 479.5199890136719, + "x1": 544.6799926757812, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 458.2799987792969, + "x1": 211.67999267578125, + "y1": 478.79998779296875, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 458.2799987792969, + "x1": 265.32000732421875, + "y1": 478.79998779296875, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 458.2799987792969, + "x1": 300.9599914550781, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 458.2799987792969, + "x1": 332.6400146484375, + "y1": 478.79998779296875, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 458.2799987792969, + "x1": 364.67999267578125, + "y1": 478.79998779296875, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 458.2799987792969, + "x1": 400.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 458.2799987792969, + "x1": 436.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 458.2799987792969, + "x1": 472.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 458.2799987792969, + "x1": 508.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 458.2799987792969, + "x1": 544.6799926757812, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 140.0399932861328, + "y0": 416.1600036621094, + "x1": 189.0, + "y1": 457.55999755859375, + "width": 48.96000671386719, + "height": 41.399993896484375 + }, { + "x0": 189.72000122070312, + "y0": 437.0400085449219, + "x1": 211.67999267578125, + "y1": 457.55999755859375, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 437.0400085449219, + "x1": 265.32000732421875, + "y1": 457.55999755859375, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 437.0400085449219, + "x1": 300.9599914550781, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 437.0400085449219, + "x1": 332.6400146484375, + "y1": 457.55999755859375, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 437.0400085449219, + "x1": 364.67999267578125, + "y1": 457.55999755859375, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 437.0400085449219, + "x1": 400.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 437.0400085449219, + "x1": 436.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 437.0400085449219, + "x1": 472.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 437.0400085449219, + "x1": 508.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 437.0400085449219, + "x1": 544.6799926757812, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 189.72000122070312, + "y0": 416.1600036621094, + "x1": 211.67999267578125, + "y1": 436.32000732421875, + "width": 21.959991455078125, + "height": 20.160003662109375 + }, { + "x0": 212.39999389648438, + "y0": 416.1600036621094, + "x1": 265.32000732421875, + "y1": 436.32000732421875, + "width": 52.920013427734375, + "height": 20.160003662109375 + }, { + "x0": 265.67999267578125, + "y0": 416.1600036621094, + "x1": 300.9599914550781, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 301.67999267578125, + "y0": 416.1600036621094, + "x1": 332.6400146484375, + "y1": 436.32000732421875, + "width": 30.96002197265625, + "height": 20.160003662109375 + }, { + "x0": 333.3599853515625, + "y0": 416.1600036621094, + "x1": 364.67999267578125, + "y1": 436.32000732421875, + "width": 31.32000732421875, + "height": 20.160003662109375 + }, { + "x0": 365.3999938964844, + "y0": 416.1600036621094, + "x1": 400.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 401.3999938964844, + "y0": 416.1600036621094, + "x1": 436.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 437.3999938964844, + "y0": 416.1600036621094, + "x1": 472.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 473.3999938964844, + "y0": 416.1600036621094, + "x1": 508.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 509.3999938964844, + "y0": 416.1600036621094, + "x1": 544.6799926757812, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 140.0399932861328, + "y0": 373.67999267578125, + "x1": 189.0, + "y1": 415.44000244140625, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 394.9200134277344, + "x1": 211.67999267578125, + "y1": 415.44000244140625, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 394.9200134277344, + "x1": 265.32000732421875, + "y1": 415.44000244140625, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 394.9200134277344, + "x1": 300.9599914550781, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 394.9200134277344, + "x1": 332.6400146484375, + "y1": 415.44000244140625, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 394.9200134277344, + "x1": 364.67999267578125, + "y1": 415.44000244140625, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 394.9200134277344, + "x1": 400.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 394.9200134277344, + "x1": 436.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 394.9200134277344, + "x1": 472.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 394.9200134277344, + "x1": 508.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 394.9200134277344, + "x1": 544.6799926757812, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 189.72000122070312, + "y0": 373.67999267578125, + "x1": 211.67999267578125, + "y1": 394.20001220703125, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 373.67999267578125, + "x1": 265.32000732421875, + "y1": 394.20001220703125, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 373.67999267578125, + "x1": 300.9599914550781, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 373.67999267578125, + "x1": 332.6400146484375, + "y1": 394.20001220703125, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 373.67999267578125, + "x1": 364.67999267578125, + "y1": 394.20001220703125, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 373.67999267578125, + "x1": 400.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 373.67999267578125, + "x1": 436.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 373.67999267578125, + "x1": 472.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 373.67999267578125, + "x1": 508.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 373.67999267578125, + "x1": 544.6799926757812, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 90.72000122070312, + "y0": 246.239990234375, + "x1": 139.67999267578125, + "y1": 372.9599914550781, + "width": 48.959991455078125, + "height": 126.72000122070312 + }, { + "x0": 140.0399932861328, + "y0": 331.20001220703125, + "x1": 189.0, + "y1": 372.9599914550781, + "width": 48.96000671386719, + "height": 41.759979248046875 + }, { + "x0": 189.72000122070312, + "y0": 352.44000244140625, + "x1": 211.67999267578125, + "y1": 372.9599914550781, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 352.44000244140625, + "x1": 265.32000732421875, + "y1": 372.9599914550781, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 352.44000244140625, + "x1": 300.9599914550781, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 352.44000244140625, + "x1": 332.6400146484375, + "y1": 372.9599914550781, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 352.44000244140625, + "x1": 364.67999267578125, + "y1": 372.9599914550781, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 352.44000244140625, + "x1": 400.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 352.44000244140625, + "x1": 436.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 352.44000244140625, + "x1": 472.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 352.44000244140625, + "x1": 508.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 352.44000244140625, + "x1": 544.6799926757812, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 189.72000122070312, + "y0": 331.20001220703125, + "x1": 211.67999267578125, + "y1": 351.7200012207031, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 331.20001220703125, + "x1": 265.32000732421875, + "y1": 351.7200012207031, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 331.20001220703125, + "x1": 300.9599914550781, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 331.20001220703125, + "x1": 332.6400146484375, + "y1": 351.7200012207031, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 331.20001220703125, + "x1": 364.67999267578125, + "y1": 351.7200012207031, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 331.20001220703125, + "x1": 400.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 331.20001220703125, + "x1": 436.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 331.20001220703125, + "x1": 472.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 331.20001220703125, + "x1": 508.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 331.20001220703125, + "x1": 544.6799926757812, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 140.0399932861328, + "y0": 288.7200012207031, + "x1": 189.0, + "y1": 330.4800109863281, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 309.9599914550781, + "x1": 211.67999267578125, + "y1": 330.4800109863281, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 309.9599914550781, + "x1": 265.32000732421875, + "y1": 330.4800109863281, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 309.9599914550781, + "x1": 300.9599914550781, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 309.9599914550781, + "x1": 332.6400146484375, + "y1": 330.4800109863281, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 309.9599914550781, + "x1": 364.67999267578125, + "y1": 330.4800109863281, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 309.9599914550781, + "x1": 400.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 309.9599914550781, + "x1": 436.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 309.9599914550781, + "x1": 472.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 309.9599914550781, + "x1": 508.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 309.9599914550781, + "x1": 544.6799926757812, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 288.7200012207031, + "x1": 211.67999267578125, + "y1": 309.239990234375, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 288.7200012207031, + "x1": 265.32000732421875, + "y1": 309.239990234375, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 288.7200012207031, + "x1": 300.9599914550781, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 288.7200012207031, + "x1": 332.6400146484375, + "y1": 309.239990234375, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 288.7200012207031, + "x1": 364.67999267578125, + "y1": 309.239990234375, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 288.7200012207031, + "x1": 400.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 288.7200012207031, + "x1": 436.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 288.7200012207031, + "x1": 472.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 288.7200012207031, + "x1": 508.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 288.7200012207031, + "x1": 544.6799926757812, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 140.0399932861328, + "y0": 246.239990234375, + "x1": 189.0, + "y1": 288.0, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 267.47998046875, + "x1": 211.67999267578125, + "y1": 288.0, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 267.47998046875, + "x1": 265.32000732421875, + "y1": 288.0, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 267.47998046875, + "x1": 300.9599914550781, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 267.47998046875, + "x1": 332.6400146484375, + "y1": 288.0, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 267.47998046875, + "x1": 364.67999267578125, + "y1": 288.0, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 267.47998046875, + "x1": 400.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 267.47998046875, + "x1": 436.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 267.47998046875, + "x1": 472.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 267.47998046875, + "x1": 508.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 267.47998046875, + "x1": 544.6799926757812, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 246.239990234375, + "x1": 211.67999267578125, + "y1": 266.760009765625, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 246.239990234375, + "x1": 265.32000732421875, + "y1": 266.760009765625, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 246.239990234375, + "x1": 300.9599914550781, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 246.239990234375, + "x1": 332.6400146484375, + "y1": 266.760009765625, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 246.239990234375, + "x1": 364.67999267578125, + "y1": 266.760009765625, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 246.239990234375, + "x1": 400.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 246.239990234375, + "x1": 436.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 246.239990234375, + "x1": 472.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 246.239990234375, + "x1": 508.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 246.239990234375, + "x1": 544.6799926757812, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + } + ] + }, { + "pageInfo": { + "number": 90, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 276.84002685546875, + "x1": 490.67999267578125, + "y1": 299.8800048828125, + "width": 399.9599914550781, + "height": 23.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 241.91998291015625, + "x1": 192.9600067138672, + "y1": 276.1199951171875, + "width": 102.24000549316406, + "height": 34.20001220703125 + }, { + "x0": 193.67999267578125, + "y0": 241.91998291015625, + "x1": 264.9599914550781, + "y1": 276.1199951171875, + "width": 71.27999877929688, + "height": 34.20001220703125 + }, { + "x0": 265.67999267578125, + "y0": 241.91998291015625, + "x1": 323.6400146484375, + "y1": 276.1199951171875, + "width": 57.96002197265625, + "height": 34.20001220703125 + }, { + "x0": 324.3599853515625, + "y0": 241.91998291015625, + "x1": 409.32000732421875, + "y1": 276.1199951171875, + "width": 84.96002197265625, + "height": 34.20001220703125 + }, { + "x0": 409.67999267578125, + "y0": 241.91998291015625, + "x1": 490.32000732421875, + "y1": 276.1199951171875, + "width": 80.6400146484375, + "height": 34.20001220703125 + }, { + "x0": 90.72000122070312, + "y0": 226.08001708984375, + "x1": 192.9600067138672, + "y1": 241.20001220703125, + "width": 102.24000549316406, + "height": 15.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 226.08001708984375, + "x1": 264.9599914550781, + "y1": 241.20001220703125, + "width": 71.27999877929688, + "height": 15.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 226.08001708984375, + "x1": 323.6400146484375, + "y1": 241.20001220703125, + "width": 57.96002197265625, + "height": 15.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 226.08001708984375, + "x1": 409.32000732421875, + "y1": 241.20001220703125, + "width": 84.96002197265625, + "height": 15.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 226.08001708984375, + "x1": 490.32000732421875, + "y1": 241.20001220703125, + "width": 80.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 201.239990234375, + "x1": 192.9600067138672, + "y1": 225.3599853515625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 201.239990234375, + "x1": 264.9599914550781, + "y1": 225.3599853515625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 201.239990234375, + "x1": 323.6400146484375, + "y1": 225.3599853515625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 201.239990234375, + "x1": 409.32000732421875, + "y1": 225.3599853515625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 201.239990234375, + "x1": 490.32000732421875, + "y1": 225.3599853515625, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 176.03997802734375, + "x1": 192.9600067138672, + "y1": 200.52001953125, + "width": 102.24000549316406, + "height": 24.48004150390625 + }, { + "x0": 193.67999267578125, + "y0": 176.03997802734375, + "x1": 264.9599914550781, + "y1": 200.52001953125, + "width": 71.27999877929688, + "height": 24.48004150390625 + }, { + "x0": 265.67999267578125, + "y0": 176.03997802734375, + "x1": 323.6400146484375, + "y1": 200.52001953125, + "width": 57.96002197265625, + "height": 24.48004150390625 + }, { + "x0": 324.3599853515625, + "y0": 176.03997802734375, + "x1": 409.32000732421875, + "y1": 200.52001953125, + "width": 84.96002197265625, + "height": 24.48004150390625 + }, { + "x0": 409.67999267578125, + "y0": 176.03997802734375, + "x1": 490.32000732421875, + "y1": 200.52001953125, + "width": 80.6400146484375, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 151.20001220703125, + "x1": 192.9600067138672, + "y1": 175.32000732421875, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 151.20001220703125, + "x1": 264.9599914550781, + "y1": 175.32000732421875, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 151.20001220703125, + "x1": 323.6400146484375, + "y1": 175.32000732421875, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 151.20001220703125, + "x1": 409.32000732421875, + "y1": 175.32000732421875, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 151.20001220703125, + "x1": 490.32000732421875, + "y1": 175.32000732421875, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 126.0, + "x1": 192.9600067138672, + "y1": 150.47998046875, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 126.0, + "x1": 264.9599914550781, + "y1": 150.47998046875, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 126.0, + "x1": 323.6400146484375, + "y1": 150.47998046875, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 126.0, + "x1": 409.32000732421875, + "y1": 150.47998046875, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 126.0, + "x1": 490.32000732421875, + "y1": 150.47998046875, + "width": 80.6400146484375, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 101.15997314453125, + "x1": 192.9600067138672, + "y1": 125.280029296875, + "width": 102.24000549316406, + "height": 24.12005615234375 + }, { + "x0": 193.67999267578125, + "y0": 101.15997314453125, + "x1": 264.9599914550781, + "y1": 125.280029296875, + "width": 71.27999877929688, + "height": 24.12005615234375 + }, { + "x0": 265.67999267578125, + "y0": 101.15997314453125, + "x1": 323.6400146484375, + "y1": 125.280029296875, + "width": 57.96002197265625, + "height": 24.12005615234375 + }, { + "x0": 324.3599853515625, + "y0": 101.15997314453125, + "x1": 409.32000732421875, + "y1": 125.280029296875, + "width": 84.96002197265625, + "height": 24.12005615234375 + }, { + "x0": 409.67999267578125, + "y0": 101.15997314453125, + "x1": 490.32000732421875, + "y1": 125.280029296875, + "width": 80.6400146484375, + "height": 24.12005615234375 + } + ] + }, { + "pageInfo": { + "number": 91, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 677.1600341796875, + "x1": 490.67999267578125, + "y1": 699.8399658203125, + "width": 399.9599914550781, + "height": 22.679931640625 + }, { + "x0": 90.72000122070312, + "y0": 641.8800048828125, + "x1": 192.9600067138672, + "y1": 676.4400024414062, + "width": 102.24000549316406, + "height": 34.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 641.8800048828125, + "x1": 264.9599914550781, + "y1": 676.4400024414062, + "width": 71.27999877929688, + "height": 34.55999755859375 + }, { + "x0": 265.67999267578125, + "y0": 641.8800048828125, + "x1": 323.6400146484375, + "y1": 676.4400024414062, + "width": 57.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 324.3599853515625, + "y0": 641.8800048828125, + "x1": 409.32000732421875, + "y1": 676.4400024414062, + "width": 84.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 409.67999267578125, + "y0": 641.8800048828125, + "x1": 490.32000732421875, + "y1": 676.4400024414062, + "width": 80.6400146484375, + "height": 34.55999755859375 + }, { + "x0": 90.72000122070312, + "y0": 626.0399780273438, + "x1": 192.9600067138672, + "y1": 641.1600341796875, + "width": 102.24000549316406, + "height": 15.12005615234375 + }, { + "x0": 193.67999267578125, + "y0": 626.0399780273438, + "x1": 264.9599914550781, + "y1": 641.1600341796875, + "width": 71.27999877929688, + "height": 15.12005615234375 + }, { + "x0": 265.67999267578125, + "y0": 626.0399780273438, + "x1": 323.6400146484375, + "y1": 641.1600341796875, + "width": 57.96002197265625, + "height": 15.12005615234375 + }, { + "x0": 324.3599853515625, + "y0": 626.0399780273438, + "x1": 409.32000732421875, + "y1": 641.1600341796875, + "width": 84.96002197265625, + "height": 15.12005615234375 + }, { + "x0": 409.67999267578125, + "y0": 626.0399780273438, + "x1": 490.32000732421875, + "y1": 641.1600341796875, + "width": 80.6400146484375, + "height": 15.12005615234375 + }, { + "x0": 90.72000122070312, + "y0": 601.2000122070312, + "x1": 192.9600067138672, + "y1": 625.3200073242188, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 601.2000122070312, + "x1": 264.9599914550781, + "y1": 625.3200073242188, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 601.2000122070312, + "x1": 323.6400146484375, + "y1": 625.3200073242188, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 601.2000122070312, + "x1": 409.32000732421875, + "y1": 625.3200073242188, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 601.2000122070312, + "x1": 490.32000732421875, + "y1": 625.3200073242188, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 576.3599853515625, + "x1": 192.9600067138672, + "y1": 600.47998046875, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 576.3599853515625, + "x1": 264.9599914550781, + "y1": 600.47998046875, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 576.3599853515625, + "x1": 323.6400146484375, + "y1": 600.47998046875, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 576.3599853515625, + "x1": 409.32000732421875, + "y1": 600.47998046875, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 576.3599853515625, + "x1": 490.32000732421875, + "y1": 600.47998046875, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 551.1600341796875, + "x1": 192.9600067138672, + "y1": 575.6400146484375, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 551.1600341796875, + "x1": 264.9599914550781, + "y1": 575.6400146484375, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 551.1600341796875, + "x1": 323.6400146484375, + "y1": 575.6400146484375, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 551.1600341796875, + "x1": 409.32000732421875, + "y1": 575.6400146484375, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 551.1600341796875, + "x1": 490.32000732421875, + "y1": 575.6400146484375, + "width": 80.6400146484375, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 536.4000244140625, + "x1": 192.9600067138672, + "y1": 550.4400024414062, + "width": 102.24000549316406, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 536.4000244140625, + "x1": 264.9599914550781, + "y1": 550.4400024414062, + "width": 71.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 265.67999267578125, + "y0": 536.4000244140625, + "x1": 323.6400146484375, + "y1": 550.4400024414062, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 324.3599853515625, + "y0": 536.4000244140625, + "x1": 409.32000732421875, + "y1": 550.4400024414062, + "width": 84.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 409.67999267578125, + "y0": 536.4000244140625, + "x1": 490.32000732421875, + "y1": 550.4400024414062, + "width": 80.6400146484375, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 511.20001220703125, + "x1": 192.9600067138672, + "y1": 535.6799926757812, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 511.20001220703125, + "x1": 264.9599914550781, + "y1": 535.6799926757812, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 511.20001220703125, + "x1": 323.6400146484375, + "y1": 535.6799926757812, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 511.20001220703125, + "x1": 409.32000732421875, + "y1": 535.6799926757812, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 511.20001220703125, + "x1": 490.32000732421875, + "y1": 535.6799926757812, + "width": 80.6400146484375, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 486.3599853515625, + "x1": 192.9600067138672, + "y1": 510.4800109863281, + "width": 102.24000549316406, + "height": 24.120025634765625 + }, { + "x0": 193.67999267578125, + "y0": 486.3599853515625, + "x1": 264.9599914550781, + "y1": 510.4800109863281, + "width": 71.27999877929688, + "height": 24.120025634765625 + }, { + "x0": 265.67999267578125, + "y0": 486.3599853515625, + "x1": 323.6400146484375, + "y1": 510.4800109863281, + "width": 57.96002197265625, + "height": 24.120025634765625 + }, { + "x0": 324.3599853515625, + "y0": 486.3599853515625, + "x1": 409.32000732421875, + "y1": 510.4800109863281, + "width": 84.96002197265625, + "height": 24.120025634765625 + }, { + "x0": 409.67999267578125, + "y0": 486.3599853515625, + "x1": 490.32000732421875, + "y1": 510.4800109863281, + "width": 80.6400146484375, + "height": 24.120025634765625 + }, { + "x0": 90.72000122070312, + "y0": 461.1600036621094, + "x1": 192.9600067138672, + "y1": 485.6400146484375, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 461.1600036621094, + "x1": 264.9599914550781, + "y1": 485.6400146484375, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 461.1600036621094, + "x1": 323.6400146484375, + "y1": 485.6400146484375, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 461.1600036621094, + "x1": 409.32000732421875, + "y1": 485.6400146484375, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 461.1600036621094, + "x1": 490.32000732421875, + "y1": 485.6400146484375, + "width": 80.6400146484375, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 436.32000732421875, + "x1": 192.9600067138672, + "y1": 460.44000244140625, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 436.32000732421875, + "x1": 264.9599914550781, + "y1": 460.44000244140625, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 436.32000732421875, + "x1": 323.6400146484375, + "y1": 460.44000244140625, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 436.32000732421875, + "x1": 409.32000732421875, + "y1": 460.44000244140625, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 436.32000732421875, + "x1": 490.32000732421875, + "y1": 460.44000244140625, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 411.1199951171875, + "x1": 192.9600067138672, + "y1": 435.6000061035156, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 411.1199951171875, + "x1": 264.9599914550781, + "y1": 435.6000061035156, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 411.1199951171875, + "x1": 323.6400146484375, + "y1": 435.6000061035156, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 411.1199951171875, + "x1": 409.32000732421875, + "y1": 435.6000061035156, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 411.1199951171875, + "x1": 490.32000732421875, + "y1": 435.6000061035156, + "width": 80.6400146484375, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 386.2799987792969, + "x1": 192.9600067138672, + "y1": 410.3999938964844, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 386.2799987792969, + "x1": 264.9599914550781, + "y1": 410.3999938964844, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 386.2799987792969, + "x1": 323.6400146484375, + "y1": 410.3999938964844, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 386.2799987792969, + "x1": 409.32000732421875, + "y1": 410.3999938964844, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 386.2799987792969, + "x1": 490.32000732421875, + "y1": 410.3999938964844, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 361.44000244140625, + "x1": 192.9600067138672, + "y1": 385.55999755859375, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 361.44000244140625, + "x1": 264.9599914550781, + "y1": 385.55999755859375, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 361.44000244140625, + "x1": 323.6400146484375, + "y1": 385.55999755859375, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 361.44000244140625, + "x1": 409.32000732421875, + "y1": 385.55999755859375, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 361.44000244140625, + "x1": 490.32000732421875, + "y1": 385.55999755859375, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 336.239990234375, + "x1": 192.9600067138672, + "y1": 360.7200012207031, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 336.239990234375, + "x1": 264.9599914550781, + "y1": 360.7200012207031, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 336.239990234375, + "x1": 323.6400146484375, + "y1": 360.7200012207031, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 336.239990234375, + "x1": 409.32000732421875, + "y1": 360.7200012207031, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 336.239990234375, + "x1": 490.32000732421875, + "y1": 360.7200012207031, + "width": 80.6400146484375, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 321.4800109863281, + "x1": 192.9600067138672, + "y1": 335.5199890136719, + "width": 102.24000549316406, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 321.4800109863281, + "x1": 264.9599914550781, + "y1": 335.5199890136719, + "width": 71.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 265.67999267578125, + "y0": 321.4800109863281, + "x1": 323.6400146484375, + "y1": 335.5199890136719, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 324.3599853515625, + "y0": 321.4800109863281, + "x1": 409.32000732421875, + "y1": 335.5199890136719, + "width": 84.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 409.67999267578125, + "y0": 321.4800109863281, + "x1": 490.32000732421875, + "y1": 335.5199890136719, + "width": 80.6400146484375, + "height": 14.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 296.2799987792969, + "x1": 192.9600067138672, + "y1": 320.760009765625, + "width": 102.24000549316406, + "height": 24.480010986328125 + }, { + "x0": 193.67999267578125, + "y0": 296.2799987792969, + "x1": 264.9599914550781, + "y1": 320.760009765625, + "width": 71.27999877929688, + "height": 24.480010986328125 + }, { + "x0": 265.67999267578125, + "y0": 296.2799987792969, + "x1": 323.6400146484375, + "y1": 320.760009765625, + "width": 57.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 324.3599853515625, + "y0": 296.2799987792969, + "x1": 409.32000732421875, + "y1": 320.760009765625, + "width": 84.96002197265625, + "height": 24.480010986328125 + }, { + "x0": 409.67999267578125, + "y0": 296.2799987792969, + "x1": 490.32000732421875, + "y1": 320.760009765625, + "width": 80.6400146484375, + "height": 24.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 271.44000244140625, + "x1": 192.9600067138672, + "y1": 295.55999755859375, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 271.44000244140625, + "x1": 264.9599914550781, + "y1": 295.55999755859375, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 271.44000244140625, + "x1": 323.6400146484375, + "y1": 295.55999755859375, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 271.44000244140625, + "x1": 409.32000732421875, + "y1": 295.55999755859375, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 271.44000244140625, + "x1": 490.32000732421875, + "y1": 295.55999755859375, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 246.239990234375, + "x1": 192.9600067138672, + "y1": 270.719970703125, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 246.239990234375, + "x1": 264.9599914550781, + "y1": 270.719970703125, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 246.239990234375, + "x1": 323.6400146484375, + "y1": 270.719970703125, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 246.239990234375, + "x1": 409.32000732421875, + "y1": 270.719970703125, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 246.239990234375, + "x1": 490.32000732421875, + "y1": 270.719970703125, + "width": 80.6400146484375, + "height": 24.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 221.4000244140625, + "x1": 192.9600067138672, + "y1": 245.52001953125, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 221.4000244140625, + "x1": 264.9599914550781, + "y1": 245.52001953125, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 221.4000244140625, + "x1": 323.6400146484375, + "y1": 245.52001953125, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 221.4000244140625, + "x1": 409.32000732421875, + "y1": 245.52001953125, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 221.4000244140625, + "x1": 490.32000732421875, + "y1": 245.52001953125, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 196.55999755859375, + "x1": 192.9600067138672, + "y1": 220.67999267578125, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 196.55999755859375, + "x1": 264.9599914550781, + "y1": 220.67999267578125, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 196.55999755859375, + "x1": 323.6400146484375, + "y1": 220.67999267578125, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 196.55999755859375, + "x1": 409.32000732421875, + "y1": 220.67999267578125, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 196.55999755859375, + "x1": 490.32000732421875, + "y1": 220.67999267578125, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 171.3599853515625, + "x1": 192.9600067138672, + "y1": 195.84002685546875, + "width": 102.24000549316406, + "height": 24.48004150390625 + }, { + "x0": 193.67999267578125, + "y0": 171.3599853515625, + "x1": 264.9599914550781, + "y1": 195.84002685546875, + "width": 71.27999877929688, + "height": 24.48004150390625 + }, { + "x0": 265.67999267578125, + "y0": 171.3599853515625, + "x1": 323.6400146484375, + "y1": 195.84002685546875, + "width": 57.96002197265625, + "height": 24.48004150390625 + }, { + "x0": 324.3599853515625, + "y0": 171.3599853515625, + "x1": 409.32000732421875, + "y1": 195.84002685546875, + "width": 84.96002197265625, + "height": 24.48004150390625 + }, { + "x0": 409.67999267578125, + "y0": 171.3599853515625, + "x1": 490.32000732421875, + "y1": 195.84002685546875, + "width": 80.6400146484375, + "height": 24.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 146.52001953125, + "x1": 192.9600067138672, + "y1": 170.6400146484375, + "width": 102.24000549316406, + "height": 24.1199951171875 + }, { + "x0": 193.67999267578125, + "y0": 146.52001953125, + "x1": 264.9599914550781, + "y1": 170.6400146484375, + "width": 71.27999877929688, + "height": 24.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 146.52001953125, + "x1": 323.6400146484375, + "y1": 170.6400146484375, + "width": 57.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 324.3599853515625, + "y0": 146.52001953125, + "x1": 409.32000732421875, + "y1": 170.6400146484375, + "width": 84.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 146.52001953125, + "x1": 490.32000732421875, + "y1": 170.6400146484375, + "width": 80.6400146484375, + "height": 24.1199951171875 + }, { + "x0": 90.72000122070312, + "y0": 121.32000732421875, + "x1": 192.9600067138672, + "y1": 145.79998779296875, + "width": 102.24000549316406, + "height": 24.47998046875 + }, { + "x0": 193.67999267578125, + "y0": 121.32000732421875, + "x1": 264.9599914550781, + "y1": 145.79998779296875, + "width": 71.27999877929688, + "height": 24.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 121.32000732421875, + "x1": 323.6400146484375, + "y1": 145.79998779296875, + "width": 57.96002197265625, + "height": 24.47998046875 + }, { + "x0": 324.3599853515625, + "y0": 121.32000732421875, + "x1": 409.32000732421875, + "y1": 145.79998779296875, + "width": 84.96002197265625, + "height": 24.47998046875 + }, { + "x0": 409.67999267578125, + "y0": 121.32000732421875, + "x1": 490.32000732421875, + "y1": 145.79998779296875, + "width": 80.6400146484375, + "height": 24.47998046875 + } + ] + }, { + "pageInfo": { + "number": 92, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 553.3200073242188, + "x1": 490.67999267578125, + "y1": 576.3599853515625, + "width": 399.9599914550781, + "height": 23.03997802734375 + }, { + "x0": 90.72000122070312, + "y0": 518.4000244140625, + "x1": 193.67999267578125, + "y1": 552.5999755859375, + "width": 102.95999145507812, + "height": 34.199951171875 + }, { + "x0": 194.0399932861328, + "y0": 518.4000244140625, + "x1": 265.67999267578125, + "y1": 552.5999755859375, + "width": 71.63999938964844, + "height": 34.199951171875 + }, { + "x0": 266.0400085449219, + "y0": 518.4000244140625, + "x1": 324.0, + "y1": 552.5999755859375, + "width": 57.959991455078125, + "height": 34.199951171875 + }, { + "x0": 324.7200012207031, + "y0": 518.4000244140625, + "x1": 409.67999267578125, + "y1": 552.5999755859375, + "width": 84.95999145507812, + "height": 34.199951171875 + }, { + "x0": 410.3999938964844, + "y0": 518.4000244140625, + "x1": 490.67999267578125, + "y1": 552.5999755859375, + "width": 80.27999877929688, + "height": 34.199951171875 + }, { + "x0": 90.72000122070312, + "y0": 502.20001220703125, + "x1": 193.67999267578125, + "y1": 517.6799926757812, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 502.20001220703125, + "x1": 265.67999267578125, + "y1": 517.6799926757812, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 502.20001220703125, + "x1": 324.0, + "y1": 517.6799926757812, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 502.20001220703125, + "x1": 409.67999267578125, + "y1": 517.6799926757812, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 502.20001220703125, + "x1": 490.67999267578125, + "y1": 517.6799926757812, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 478.79998779296875, + "x1": 193.67999267578125, + "y1": 501.4800109863281, + "width": 102.95999145507812, + "height": 22.680023193359375 + }, { + "x0": 194.0399932861328, + "y0": 478.79998779296875, + "x1": 265.67999267578125, + "y1": 501.4800109863281, + "width": 71.63999938964844, + "height": 22.680023193359375 + }, { + "x0": 266.0400085449219, + "y0": 478.79998779296875, + "x1": 324.0, + "y1": 501.4800109863281, + "width": 57.959991455078125, + "height": 22.680023193359375 + }, { + "x0": 324.7200012207031, + "y0": 478.79998779296875, + "x1": 409.67999267578125, + "y1": 501.4800109863281, + "width": 84.95999145507812, + "height": 22.680023193359375 + }, { + "x0": 410.3999938964844, + "y0": 478.79998779296875, + "x1": 490.67999267578125, + "y1": 501.4800109863281, + "width": 80.27999877929688, + "height": 22.680023193359375 + }, { + "x0": 90.72000122070312, + "y0": 462.239990234375, + "x1": 193.67999267578125, + "y1": 478.0799865722656, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 462.239990234375, + "x1": 265.67999267578125, + "y1": 478.0799865722656, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 462.239990234375, + "x1": 324.0, + "y1": 478.0799865722656, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 462.239990234375, + "x1": 409.67999267578125, + "y1": 478.0799865722656, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 462.239990234375, + "x1": 490.67999267578125, + "y1": 478.0799865722656, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 446.0400085449219, + "x1": 193.67999267578125, + "y1": 461.5199890136719, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 446.0400085449219, + "x1": 265.67999267578125, + "y1": 461.5199890136719, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 446.0400085449219, + "x1": 324.0, + "y1": 461.5199890136719, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 446.0400085449219, + "x1": 409.67999267578125, + "y1": 461.5199890136719, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 446.0400085449219, + "x1": 490.67999267578125, + "y1": 461.5199890136719, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 429.4800109863281, + "x1": 193.67999267578125, + "y1": 445.32000732421875, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 429.4800109863281, + "x1": 265.67999267578125, + "y1": 445.32000732421875, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 429.4800109863281, + "x1": 324.0, + "y1": 445.32000732421875, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 429.4800109863281, + "x1": 409.67999267578125, + "y1": 445.32000732421875, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 429.4800109863281, + "x1": 490.67999267578125, + "y1": 445.32000732421875, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 413.2799987792969, + "x1": 193.67999267578125, + "y1": 428.760009765625, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 413.2799987792969, + "x1": 265.67999267578125, + "y1": 428.760009765625, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 413.2799987792969, + "x1": 324.0, + "y1": 428.760009765625, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 413.2799987792969, + "x1": 409.67999267578125, + "y1": 428.760009765625, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 413.2799987792969, + "x1": 490.67999267578125, + "y1": 428.760009765625, + "width": 80.27999877929688, + "height": 15.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 397.0799865722656, + "x1": 193.67999267578125, + "y1": 412.55999755859375, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 397.0799865722656, + "x1": 265.67999267578125, + "y1": 412.55999755859375, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 397.0799865722656, + "x1": 324.0, + "y1": 412.55999755859375, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 397.0799865722656, + "x1": 409.67999267578125, + "y1": 412.55999755859375, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 397.0799865722656, + "x1": 490.67999267578125, + "y1": 412.55999755859375, + "width": 80.27999877929688, + "height": 15.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 380.5199890136719, + "x1": 193.67999267578125, + "y1": 396.3599853515625, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 380.5199890136719, + "x1": 265.67999267578125, + "y1": 396.3599853515625, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 380.5199890136719, + "x1": 324.0, + "y1": 396.3599853515625, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 380.5199890136719, + "x1": 409.67999267578125, + "y1": 396.3599853515625, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 380.5199890136719, + "x1": 490.67999267578125, + "y1": 396.3599853515625, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 364.32000732421875, + "x1": 193.67999267578125, + "y1": 379.79998779296875, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 364.32000732421875, + "x1": 265.67999267578125, + "y1": 379.79998779296875, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 364.32000732421875, + "x1": 324.0, + "y1": 379.79998779296875, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 364.32000732421875, + "x1": 409.67999267578125, + "y1": 379.79998779296875, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 364.32000732421875, + "x1": 490.67999267578125, + "y1": 379.79998779296875, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 347.760009765625, + "x1": 193.67999267578125, + "y1": 363.6000061035156, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 347.760009765625, + "x1": 265.67999267578125, + "y1": 363.6000061035156, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 347.760009765625, + "x1": 324.0, + "y1": 363.6000061035156, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 347.760009765625, + "x1": 409.67999267578125, + "y1": 363.6000061035156, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 347.760009765625, + "x1": 490.67999267578125, + "y1": 363.6000061035156, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 324.3599853515625, + "x1": 193.67999267578125, + "y1": 347.0400085449219, + "width": 102.95999145507812, + "height": 22.680023193359375 + }, { + "x0": 194.0399932861328, + "y0": 324.3599853515625, + "x1": 265.67999267578125, + "y1": 347.0400085449219, + "width": 71.63999938964844, + "height": 22.680023193359375 + }, { + "x0": 266.0400085449219, + "y0": 324.3599853515625, + "x1": 324.0, + "y1": 347.0400085449219, + "width": 57.959991455078125, + "height": 22.680023193359375 + }, { + "x0": 324.7200012207031, + "y0": 324.3599853515625, + "x1": 409.67999267578125, + "y1": 347.0400085449219, + "width": 84.95999145507812, + "height": 22.680023193359375 + }, { + "x0": 410.3999938964844, + "y0": 324.3599853515625, + "x1": 490.67999267578125, + "y1": 347.0400085449219, + "width": 80.27999877929688, + "height": 22.680023193359375 + }, { + "x0": 90.72000122070312, + "y0": 308.1600036621094, + "x1": 193.67999267578125, + "y1": 323.6400146484375, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 308.1600036621094, + "x1": 265.67999267578125, + "y1": 323.6400146484375, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 308.1600036621094, + "x1": 324.0, + "y1": 323.6400146484375, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 308.1600036621094, + "x1": 409.67999267578125, + "y1": 323.6400146484375, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 308.1600036621094, + "x1": 490.67999267578125, + "y1": 323.6400146484375, + "width": 80.27999877929688, + "height": 15.480010986328125 + }, { + "x0": 90.72000122070312, + "y0": 291.6000061035156, + "x1": 193.67999267578125, + "y1": 307.44000244140625, + "width": 102.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 194.0399932861328, + "y0": 291.6000061035156, + "x1": 265.67999267578125, + "y1": 307.44000244140625, + "width": 71.63999938964844, + "height": 15.839996337890625 + }, { + "x0": 266.0400085449219, + "y0": 291.6000061035156, + "x1": 324.0, + "y1": 307.44000244140625, + "width": 57.959991455078125, + "height": 15.839996337890625 + }, { + "x0": 324.7200012207031, + "y0": 291.6000061035156, + "x1": 409.67999267578125, + "y1": 307.44000244140625, + "width": 84.95999145507812, + "height": 15.839996337890625 + }, { + "x0": 410.3999938964844, + "y0": 291.6000061035156, + "x1": 490.67999267578125, + "y1": 307.44000244140625, + "width": 80.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 90.72000122070312, + "y0": 275.4000244140625, + "x1": 193.67999267578125, + "y1": 290.8800048828125, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 275.4000244140625, + "x1": 265.67999267578125, + "y1": 290.8800048828125, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 275.4000244140625, + "x1": 324.0, + "y1": 290.8800048828125, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 275.4000244140625, + "x1": 409.67999267578125, + "y1": 290.8800048828125, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 275.4000244140625, + "x1": 490.67999267578125, + "y1": 290.8800048828125, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 258.84002685546875, + "x1": 193.67999267578125, + "y1": 274.67999267578125, + "width": 102.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 194.0399932861328, + "y0": 258.84002685546875, + "x1": 265.67999267578125, + "y1": 274.67999267578125, + "width": 71.63999938964844, + "height": 15.8399658203125 + }, { + "x0": 266.0400085449219, + "y0": 258.84002685546875, + "x1": 324.0, + "y1": 274.67999267578125, + "width": 57.959991455078125, + "height": 15.8399658203125 + }, { + "x0": 324.7200012207031, + "y0": 258.84002685546875, + "x1": 409.67999267578125, + "y1": 274.67999267578125, + "width": 84.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 410.3999938964844, + "y0": 258.84002685546875, + "x1": 490.67999267578125, + "y1": 274.67999267578125, + "width": 80.27999877929688, + "height": 15.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 242.6400146484375, + "x1": 193.67999267578125, + "y1": 258.1199951171875, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 242.6400146484375, + "x1": 265.67999267578125, + "y1": 258.1199951171875, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 242.6400146484375, + "x1": 324.0, + "y1": 258.1199951171875, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 242.6400146484375, + "x1": 409.67999267578125, + "y1": 258.1199951171875, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 242.6400146484375, + "x1": 490.67999267578125, + "y1": 258.1199951171875, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 226.08001708984375, + "x1": 193.67999267578125, + "y1": 241.91998291015625, + "width": 102.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 194.0399932861328, + "y0": 226.08001708984375, + "x1": 265.67999267578125, + "y1": 241.91998291015625, + "width": 71.63999938964844, + "height": 15.8399658203125 + }, { + "x0": 266.0400085449219, + "y0": 226.08001708984375, + "x1": 324.0, + "y1": 241.91998291015625, + "width": 57.959991455078125, + "height": 15.8399658203125 + }, { + "x0": 324.7200012207031, + "y0": 226.08001708984375, + "x1": 409.67999267578125, + "y1": 241.91998291015625, + "width": 84.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 410.3999938964844, + "y0": 226.08001708984375, + "x1": 490.67999267578125, + "y1": 241.91998291015625, + "width": 80.27999877929688, + "height": 15.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 209.8800048828125, + "x1": 193.67999267578125, + "y1": 225.3599853515625, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 209.8800048828125, + "x1": 265.67999267578125, + "y1": 225.3599853515625, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 209.8800048828125, + "x1": 324.0, + "y1": 225.3599853515625, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 209.8800048828125, + "x1": 409.67999267578125, + "y1": 225.3599853515625, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 209.8800048828125, + "x1": 490.67999267578125, + "y1": 225.3599853515625, + "width": 80.27999877929688, + "height": 15.47998046875 + } + ] + }, { + "pageInfo": { + "number": 93, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 677.1600341796875, + "x1": 490.67999267578125, + "y1": 699.8399658203125, + "width": 399.9599914550781, + "height": 22.679931640625 + }, { + "x0": 90.72000122070312, + "y0": 641.8800048828125, + "x1": 193.67999267578125, + "y1": 676.4400024414062, + "width": 102.95999145507812, + "height": 34.55999755859375 + }, { + "x0": 194.0399932861328, + "y0": 641.8800048828125, + "x1": 265.67999267578125, + "y1": 676.4400024414062, + "width": 71.63999938964844, + "height": 34.55999755859375 + }, { + "x0": 266.0400085449219, + "y0": 641.8800048828125, + "x1": 324.0, + "y1": 676.4400024414062, + "width": 57.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 324.7200012207031, + "y0": 641.8800048828125, + "x1": 409.67999267578125, + "y1": 676.4400024414062, + "width": 84.95999145507812, + "height": 34.55999755859375 + }, { + "x0": 410.3999938964844, + "y0": 641.8800048828125, + "x1": 490.67999267578125, + "y1": 676.4400024414062, + "width": 80.27999877929688, + "height": 34.55999755859375 + }, { + "x0": 90.72000122070312, + "y0": 625.6799926757812, + "x1": 193.67999267578125, + "y1": 641.1600341796875, + "width": 102.95999145507812, + "height": 15.48004150390625 + }, { + "x0": 194.0399932861328, + "y0": 625.6799926757812, + "x1": 265.67999267578125, + "y1": 641.1600341796875, + "width": 71.63999938964844, + "height": 15.48004150390625 + }, { + "x0": 266.0400085449219, + "y0": 625.6799926757812, + "x1": 324.0, + "y1": 641.1600341796875, + "width": 57.959991455078125, + "height": 15.48004150390625 + }, { + "x0": 324.7200012207031, + "y0": 625.6799926757812, + "x1": 409.67999267578125, + "y1": 641.1600341796875, + "width": 84.95999145507812, + "height": 15.48004150390625 + }, { + "x0": 410.3999938964844, + "y0": 625.6799926757812, + "x1": 490.67999267578125, + "y1": 641.1600341796875, + "width": 80.27999877929688, + "height": 15.48004150390625 + }, { + "x0": 90.72000122070312, + "y0": 602.280029296875, + "x1": 193.67999267578125, + "y1": 624.9600219726562, + "width": 102.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 194.0399932861328, + "y0": 602.280029296875, + "x1": 265.67999267578125, + "y1": 624.9600219726562, + "width": 71.63999938964844, + "height": 22.67999267578125 + }, { + "x0": 266.0400085449219, + "y0": 602.280029296875, + "x1": 324.0, + "y1": 624.9600219726562, + "width": 57.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 324.7200012207031, + "y0": 602.280029296875, + "x1": 409.67999267578125, + "y1": 624.9600219726562, + "width": 84.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 410.3999938964844, + "y0": 602.280029296875, + "x1": 490.67999267578125, + "y1": 624.9600219726562, + "width": 80.27999877929688, + "height": 22.67999267578125 + }, { + "x0": 90.72000122070312, + "y0": 585.719970703125, + "x1": 193.67999267578125, + "y1": 601.5599975585938, + "width": 102.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 194.0399932861328, + "y0": 585.719970703125, + "x1": 265.67999267578125, + "y1": 601.5599975585938, + "width": 71.63999938964844, + "height": 15.84002685546875 + }, { + "x0": 266.0400085449219, + "y0": 585.719970703125, + "x1": 324.0, + "y1": 601.5599975585938, + "width": 57.959991455078125, + "height": 15.84002685546875 + }, { + "x0": 324.7200012207031, + "y0": 585.719970703125, + "x1": 409.67999267578125, + "y1": 601.5599975585938, + "width": 84.95999145507812, + "height": 15.84002685546875 + }, { + "x0": 410.3999938964844, + "y0": 585.719970703125, + "x1": 490.67999267578125, + "y1": 601.5599975585938, + "width": 80.27999877929688, + "height": 15.84002685546875 + }, { + "x0": 90.72000122070312, + "y0": 569.52001953125, + "x1": 193.67999267578125, + "y1": 585.0, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 569.52001953125, + "x1": 265.67999267578125, + "y1": 585.0, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 569.52001953125, + "x1": 324.0, + "y1": 585.0, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 569.52001953125, + "x1": 409.67999267578125, + "y1": 585.0, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 569.52001953125, + "x1": 490.67999267578125, + "y1": 585.0, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 553.3200073242188, + "x1": 193.67999267578125, + "y1": 568.7999877929688, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 553.3200073242188, + "x1": 265.67999267578125, + "y1": 568.7999877929688, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 553.3200073242188, + "x1": 324.0, + "y1": 568.7999877929688, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 553.3200073242188, + "x1": 409.67999267578125, + "y1": 568.7999877929688, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 553.3200073242188, + "x1": 490.67999267578125, + "y1": 568.7999877929688, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 536.760009765625, + "x1": 193.67999267578125, + "y1": 552.5999755859375, + "width": 102.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 194.0399932861328, + "y0": 536.760009765625, + "x1": 265.67999267578125, + "y1": 552.5999755859375, + "width": 71.63999938964844, + "height": 15.8399658203125 + }, { + "x0": 266.0400085449219, + "y0": 536.760009765625, + "x1": 324.0, + "y1": 552.5999755859375, + "width": 57.959991455078125, + "height": 15.8399658203125 + }, { + "x0": 324.7200012207031, + "y0": 536.760009765625, + "x1": 409.67999267578125, + "y1": 552.5999755859375, + "width": 84.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 410.3999938964844, + "y0": 536.760009765625, + "x1": 490.67999267578125, + "y1": 552.5999755859375, + "width": 80.27999877929688, + "height": 15.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 520.5599975585938, + "x1": 193.67999267578125, + "y1": 536.0399780273438, + "width": 102.95999145507812, + "height": 15.47998046875 + }, { + "x0": 194.0399932861328, + "y0": 520.5599975585938, + "x1": 265.67999267578125, + "y1": 536.0399780273438, + "width": 71.63999938964844, + "height": 15.47998046875 + }, { + "x0": 266.0400085449219, + "y0": 520.5599975585938, + "x1": 324.0, + "y1": 536.0399780273438, + "width": 57.959991455078125, + "height": 15.47998046875 + }, { + "x0": 324.7200012207031, + "y0": 520.5599975585938, + "x1": 409.67999267578125, + "y1": 536.0399780273438, + "width": 84.95999145507812, + "height": 15.47998046875 + }, { + "x0": 410.3999938964844, + "y0": 520.5599975585938, + "x1": 490.67999267578125, + "y1": 536.0399780273438, + "width": 80.27999877929688, + "height": 15.47998046875 + }, { + "x0": 90.72000122070312, + "y0": 504.0, + "x1": 193.67999267578125, + "y1": 519.8399658203125, + "width": 102.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 194.0399932861328, + "y0": 504.0, + "x1": 265.67999267578125, + "y1": 519.8399658203125, + "width": 71.63999938964844, + "height": 15.8399658203125 + }, { + "x0": 266.0400085449219, + "y0": 504.0, + "x1": 324.0, + "y1": 519.8399658203125, + "width": 57.959991455078125, + "height": 15.8399658203125 + }, { + "x0": 324.7200012207031, + "y0": 504.0, + "x1": 409.67999267578125, + "y1": 519.8399658203125, + "width": 84.95999145507812, + "height": 15.8399658203125 + }, { + "x0": 410.3999938964844, + "y0": 504.0, + "x1": 490.67999267578125, + "y1": 519.8399658203125, + "width": 80.27999877929688, + "height": 15.8399658203125 + }, { + "x0": 90.72000122070312, + "y0": 487.79998779296875, + "x1": 193.67999267578125, + "y1": 503.2799987792969, + "width": 102.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 194.0399932861328, + "y0": 487.79998779296875, + "x1": 265.67999267578125, + "y1": 503.2799987792969, + "width": 71.63999938964844, + "height": 15.480010986328125 + }, { + "x0": 266.0400085449219, + "y0": 487.79998779296875, + "x1": 324.0, + "y1": 503.2799987792969, + "width": 57.959991455078125, + "height": 15.480010986328125 + }, { + "x0": 324.7200012207031, + "y0": 487.79998779296875, + "x1": 409.67999267578125, + "y1": 503.2799987792969, + "width": 84.95999145507812, + "height": 15.480010986328125 + }, { + "x0": 410.3999938964844, + "y0": 487.79998779296875, + "x1": 490.67999267578125, + "y1": 503.2799987792969, + "width": 80.27999877929688, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 94, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 665.6400146484375, + "x1": 544.6799926757812, + "y1": 699.8399658203125, + "width": 453.9599914550781, + "height": 34.199951171875 + }, { + "x0": 90.72000122070312, + "y0": 627.8399658203125, + "x1": 139.67999267578125, + "y1": 664.9199829101562, + "width": 48.959991455078125, + "height": 37.08001708984375 + }, { + "x0": 140.0399932861328, + "y0": 627.8399658203125, + "x1": 189.0, + "y1": 664.9199829101562, + "width": 48.96000671386719, + "height": 37.08001708984375 + }, { + "x0": 189.72000122070312, + "y0": 627.8399658203125, + "x1": 211.67999267578125, + "y1": 664.9199829101562, + "width": 21.959991455078125, + "height": 37.08001708984375 + }, { + "x0": 212.39999389648438, + "y0": 627.8399658203125, + "x1": 265.32000732421875, + "y1": 664.9199829101562, + "width": 52.920013427734375, + "height": 37.08001708984375 + }, { + "x0": 265.67999267578125, + "y0": 649.0800170898438, + "x1": 544.6799926757812, + "y1": 664.9199829101562, + "width": 279.0, + "height": 15.8399658203125 + }, { + "x0": 265.67999267578125, + "y0": 627.8399658203125, + "x1": 300.9599914550781, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 627.8399658203125, + "x1": 332.6400146484375, + "y1": 648.3599853515625, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 627.8399658203125, + "x1": 364.67999267578125, + "y1": 648.3599853515625, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 627.8399658203125, + "x1": 400.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 627.8399658203125, + "x1": 436.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 627.8399658203125, + "x1": 472.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 627.8399658203125, + "x1": 508.67999267578125, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 627.8399658203125, + "x1": 544.6799926757812, + "y1": 648.3599853515625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 90.72000122070312, + "y0": 500.760009765625, + "x1": 139.67999267578125, + "y1": 627.1199951171875, + "width": 48.959991455078125, + "height": 126.3599853515625 + }, { + "x0": 140.0399932861328, + "y0": 585.719970703125, + "x1": 189.0, + "y1": 627.1199951171875, + "width": 48.96000671386719, + "height": 41.4000244140625 + }, { + "x0": 189.72000122070312, + "y0": 606.9600219726562, + "x1": 211.67999267578125, + "y1": 627.1199951171875, + "width": 21.959991455078125, + "height": 20.15997314453125 + }, { + "x0": 212.39999389648438, + "y0": 606.9600219726562, + "x1": 265.32000732421875, + "y1": 627.1199951171875, + "width": 52.920013427734375, + "height": 20.15997314453125 + }, { + "x0": 265.67999267578125, + "y0": 606.9600219726562, + "x1": 300.9599914550781, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 301.67999267578125, + "y0": 606.9600219726562, + "x1": 332.6400146484375, + "y1": 627.1199951171875, + "width": 30.96002197265625, + "height": 20.15997314453125 + }, { + "x0": 333.3599853515625, + "y0": 606.9600219726562, + "x1": 364.67999267578125, + "y1": 627.1199951171875, + "width": 31.32000732421875, + "height": 20.15997314453125 + }, { + "x0": 365.3999938964844, + "y0": 606.9600219726562, + "x1": 400.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 401.3999938964844, + "y0": 606.9600219726562, + "x1": 436.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 437.3999938964844, + "y0": 606.9600219726562, + "x1": 472.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 473.3999938964844, + "y0": 606.9600219726562, + "x1": 508.67999267578125, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 509.3999938964844, + "y0": 606.9600219726562, + "x1": 544.6799926757812, + "y1": 627.1199951171875, + "width": 35.279998779296875, + "height": 20.15997314453125 + }, { + "x0": 189.72000122070312, + "y0": 585.719970703125, + "x1": 211.67999267578125, + "y1": 606.239990234375, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 585.719970703125, + "x1": 265.32000732421875, + "y1": 606.239990234375, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 585.719970703125, + "x1": 300.9599914550781, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 585.719970703125, + "x1": 332.6400146484375, + "y1": 606.239990234375, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 585.719970703125, + "x1": 364.67999267578125, + "y1": 606.239990234375, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 585.719970703125, + "x1": 400.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 585.719970703125, + "x1": 436.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 585.719970703125, + "x1": 472.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 585.719970703125, + "x1": 508.67999267578125, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 585.719970703125, + "x1": 544.6799926757812, + "y1": 606.239990234375, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 140.0399932861328, + "y0": 543.239990234375, + "x1": 189.0, + "y1": 585.0, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 564.47998046875, + "x1": 211.67999267578125, + "y1": 585.0, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 564.47998046875, + "x1": 265.32000732421875, + "y1": 585.0, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 564.47998046875, + "x1": 300.9599914550781, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 564.47998046875, + "x1": 332.6400146484375, + "y1": 585.0, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 564.47998046875, + "x1": 364.67999267578125, + "y1": 585.0, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 564.47998046875, + "x1": 400.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 564.47998046875, + "x1": 436.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 564.47998046875, + "x1": 472.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 564.47998046875, + "x1": 508.67999267578125, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 564.47998046875, + "x1": 544.6799926757812, + "y1": 585.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 543.239990234375, + "x1": 211.67999267578125, + "y1": 563.760009765625, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 543.239990234375, + "x1": 265.32000732421875, + "y1": 563.760009765625, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 543.239990234375, + "x1": 300.9599914550781, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 543.239990234375, + "x1": 332.6400146484375, + "y1": 563.760009765625, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 543.239990234375, + "x1": 364.67999267578125, + "y1": 563.760009765625, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 543.239990234375, + "x1": 400.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 543.239990234375, + "x1": 436.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 543.239990234375, + "x1": 472.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 543.239990234375, + "x1": 508.67999267578125, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 543.239990234375, + "x1": 544.6799926757812, + "y1": 563.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 140.0399932861328, + "y0": 500.760009765625, + "x1": 189.0, + "y1": 542.52001953125, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 522.0, + "x1": 211.67999267578125, + "y1": 542.52001953125, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 522.0, + "x1": 265.32000732421875, + "y1": 542.52001953125, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 522.0, + "x1": 300.9599914550781, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 522.0, + "x1": 332.6400146484375, + "y1": 542.52001953125, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 522.0, + "x1": 364.67999267578125, + "y1": 542.52001953125, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 522.0, + "x1": 400.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 522.0, + "x1": 436.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 522.0, + "x1": 472.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 522.0, + "x1": 508.67999267578125, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 522.0, + "x1": 544.6799926757812, + "y1": 542.52001953125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 500.760009765625, + "x1": 211.67999267578125, + "y1": 521.280029296875, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 500.760009765625, + "x1": 265.32000732421875, + "y1": 521.280029296875, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 500.760009765625, + "x1": 300.9599914550781, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 500.760009765625, + "x1": 332.6400146484375, + "y1": 521.280029296875, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 500.760009765625, + "x1": 364.67999267578125, + "y1": 521.280029296875, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 500.760009765625, + "x1": 400.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 500.760009765625, + "x1": 436.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 500.760009765625, + "x1": 472.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 500.760009765625, + "x1": 508.67999267578125, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 500.760009765625, + "x1": 544.6799926757812, + "y1": 521.280029296875, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 90.72000122070312, + "y0": 373.67999267578125, + "x1": 139.67999267578125, + "y1": 500.0400085449219, + "width": 48.959991455078125, + "height": 126.36001586914062 + }, { + "x0": 140.0399932861328, + "y0": 458.2799987792969, + "x1": 189.0, + "y1": 500.0400085449219, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 479.5199890136719, + "x1": 211.67999267578125, + "y1": 500.0400085449219, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 479.5199890136719, + "x1": 265.32000732421875, + "y1": 500.0400085449219, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 479.5199890136719, + "x1": 300.9599914550781, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 479.5199890136719, + "x1": 332.6400146484375, + "y1": 500.0400085449219, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 479.5199890136719, + "x1": 364.67999267578125, + "y1": 500.0400085449219, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 479.5199890136719, + "x1": 400.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 479.5199890136719, + "x1": 436.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 479.5199890136719, + "x1": 472.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 479.5199890136719, + "x1": 508.67999267578125, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 479.5199890136719, + "x1": 544.6799926757812, + "y1": 500.0400085449219, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 458.2799987792969, + "x1": 211.67999267578125, + "y1": 478.79998779296875, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 458.2799987792969, + "x1": 265.32000732421875, + "y1": 478.79998779296875, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 458.2799987792969, + "x1": 300.9599914550781, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 458.2799987792969, + "x1": 332.6400146484375, + "y1": 478.79998779296875, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 458.2799987792969, + "x1": 364.67999267578125, + "y1": 478.79998779296875, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 458.2799987792969, + "x1": 400.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 458.2799987792969, + "x1": 436.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 458.2799987792969, + "x1": 472.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 458.2799987792969, + "x1": 508.67999267578125, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 458.2799987792969, + "x1": 544.6799926757812, + "y1": 478.79998779296875, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 140.0399932861328, + "y0": 416.1600036621094, + "x1": 189.0, + "y1": 457.55999755859375, + "width": 48.96000671386719, + "height": 41.399993896484375 + }, { + "x0": 189.72000122070312, + "y0": 437.0400085449219, + "x1": 211.67999267578125, + "y1": 457.55999755859375, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 437.0400085449219, + "x1": 265.32000732421875, + "y1": 457.55999755859375, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 437.0400085449219, + "x1": 300.9599914550781, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 437.0400085449219, + "x1": 332.6400146484375, + "y1": 457.55999755859375, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 437.0400085449219, + "x1": 364.67999267578125, + "y1": 457.55999755859375, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 437.0400085449219, + "x1": 400.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 437.0400085449219, + "x1": 436.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 437.0400085449219, + "x1": 472.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 437.0400085449219, + "x1": 508.67999267578125, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 437.0400085449219, + "x1": 544.6799926757812, + "y1": 457.55999755859375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 189.72000122070312, + "y0": 416.1600036621094, + "x1": 211.67999267578125, + "y1": 436.32000732421875, + "width": 21.959991455078125, + "height": 20.160003662109375 + }, { + "x0": 212.39999389648438, + "y0": 416.1600036621094, + "x1": 265.32000732421875, + "y1": 436.32000732421875, + "width": 52.920013427734375, + "height": 20.160003662109375 + }, { + "x0": 265.67999267578125, + "y0": 416.1600036621094, + "x1": 300.9599914550781, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 301.67999267578125, + "y0": 416.1600036621094, + "x1": 332.6400146484375, + "y1": 436.32000732421875, + "width": 30.96002197265625, + "height": 20.160003662109375 + }, { + "x0": 333.3599853515625, + "y0": 416.1600036621094, + "x1": 364.67999267578125, + "y1": 436.32000732421875, + "width": 31.32000732421875, + "height": 20.160003662109375 + }, { + "x0": 365.3999938964844, + "y0": 416.1600036621094, + "x1": 400.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 401.3999938964844, + "y0": 416.1600036621094, + "x1": 436.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 437.3999938964844, + "y0": 416.1600036621094, + "x1": 472.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 473.3999938964844, + "y0": 416.1600036621094, + "x1": 508.67999267578125, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 509.3999938964844, + "y0": 416.1600036621094, + "x1": 544.6799926757812, + "y1": 436.32000732421875, + "width": 35.279998779296875, + "height": 20.160003662109375 + }, { + "x0": 140.0399932861328, + "y0": 373.67999267578125, + "x1": 189.0, + "y1": 415.44000244140625, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 394.9200134277344, + "x1": 211.67999267578125, + "y1": 415.44000244140625, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 394.9200134277344, + "x1": 265.32000732421875, + "y1": 415.44000244140625, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 394.9200134277344, + "x1": 300.9599914550781, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 394.9200134277344, + "x1": 332.6400146484375, + "y1": 415.44000244140625, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 394.9200134277344, + "x1": 364.67999267578125, + "y1": 415.44000244140625, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 394.9200134277344, + "x1": 400.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 394.9200134277344, + "x1": 436.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 394.9200134277344, + "x1": 472.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 394.9200134277344, + "x1": 508.67999267578125, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 394.9200134277344, + "x1": 544.6799926757812, + "y1": 415.44000244140625, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 189.72000122070312, + "y0": 373.67999267578125, + "x1": 211.67999267578125, + "y1": 394.20001220703125, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 373.67999267578125, + "x1": 265.32000732421875, + "y1": 394.20001220703125, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 373.67999267578125, + "x1": 300.9599914550781, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 373.67999267578125, + "x1": 332.6400146484375, + "y1": 394.20001220703125, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 373.67999267578125, + "x1": 364.67999267578125, + "y1": 394.20001220703125, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 373.67999267578125, + "x1": 400.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 373.67999267578125, + "x1": 436.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 373.67999267578125, + "x1": 472.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 373.67999267578125, + "x1": 508.67999267578125, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 373.67999267578125, + "x1": 544.6799926757812, + "y1": 394.20001220703125, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 90.72000122070312, + "y0": 246.239990234375, + "x1": 139.67999267578125, + "y1": 372.9599914550781, + "width": 48.959991455078125, + "height": 126.72000122070312 + }, { + "x0": 140.0399932861328, + "y0": 331.20001220703125, + "x1": 189.0, + "y1": 372.9599914550781, + "width": 48.96000671386719, + "height": 41.759979248046875 + }, { + "x0": 189.72000122070312, + "y0": 352.44000244140625, + "x1": 211.67999267578125, + "y1": 372.9599914550781, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 352.44000244140625, + "x1": 265.32000732421875, + "y1": 372.9599914550781, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 352.44000244140625, + "x1": 300.9599914550781, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 352.44000244140625, + "x1": 332.6400146484375, + "y1": 372.9599914550781, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 352.44000244140625, + "x1": 364.67999267578125, + "y1": 372.9599914550781, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 352.44000244140625, + "x1": 400.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 352.44000244140625, + "x1": 436.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 352.44000244140625, + "x1": 472.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 352.44000244140625, + "x1": 508.67999267578125, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 352.44000244140625, + "x1": 544.6799926757812, + "y1": 372.9599914550781, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 189.72000122070312, + "y0": 331.20001220703125, + "x1": 211.67999267578125, + "y1": 351.7200012207031, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 331.20001220703125, + "x1": 265.32000732421875, + "y1": 351.7200012207031, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 331.20001220703125, + "x1": 300.9599914550781, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 331.20001220703125, + "x1": 332.6400146484375, + "y1": 351.7200012207031, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 331.20001220703125, + "x1": 364.67999267578125, + "y1": 351.7200012207031, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 331.20001220703125, + "x1": 400.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 331.20001220703125, + "x1": 436.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 331.20001220703125, + "x1": 472.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 331.20001220703125, + "x1": 508.67999267578125, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 331.20001220703125, + "x1": 544.6799926757812, + "y1": 351.7200012207031, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 140.0399932861328, + "y0": 288.7200012207031, + "x1": 189.0, + "y1": 330.4800109863281, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 309.9599914550781, + "x1": 211.67999267578125, + "y1": 330.4800109863281, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 309.9599914550781, + "x1": 265.32000732421875, + "y1": 330.4800109863281, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 309.9599914550781, + "x1": 300.9599914550781, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 309.9599914550781, + "x1": 332.6400146484375, + "y1": 330.4800109863281, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 309.9599914550781, + "x1": 364.67999267578125, + "y1": 330.4800109863281, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 309.9599914550781, + "x1": 400.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 309.9599914550781, + "x1": 436.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 309.9599914550781, + "x1": 472.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 309.9599914550781, + "x1": 508.67999267578125, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 309.9599914550781, + "x1": 544.6799926757812, + "y1": 330.4800109863281, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 288.7200012207031, + "x1": 211.67999267578125, + "y1": 309.239990234375, + "width": 21.959991455078125, + "height": 20.519989013671875 + }, { + "x0": 212.39999389648438, + "y0": 288.7200012207031, + "x1": 265.32000732421875, + "y1": 309.239990234375, + "width": 52.920013427734375, + "height": 20.519989013671875 + }, { + "x0": 265.67999267578125, + "y0": 288.7200012207031, + "x1": 300.9599914550781, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 301.67999267578125, + "y0": 288.7200012207031, + "x1": 332.6400146484375, + "y1": 309.239990234375, + "width": 30.96002197265625, + "height": 20.519989013671875 + }, { + "x0": 333.3599853515625, + "y0": 288.7200012207031, + "x1": 364.67999267578125, + "y1": 309.239990234375, + "width": 31.32000732421875, + "height": 20.519989013671875 + }, { + "x0": 365.3999938964844, + "y0": 288.7200012207031, + "x1": 400.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 401.3999938964844, + "y0": 288.7200012207031, + "x1": 436.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 437.3999938964844, + "y0": 288.7200012207031, + "x1": 472.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 473.3999938964844, + "y0": 288.7200012207031, + "x1": 508.67999267578125, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 509.3999938964844, + "y0": 288.7200012207031, + "x1": 544.6799926757812, + "y1": 309.239990234375, + "width": 35.279998779296875, + "height": 20.519989013671875 + }, { + "x0": 140.0399932861328, + "y0": 246.239990234375, + "x1": 189.0, + "y1": 288.0, + "width": 48.96000671386719, + "height": 41.760009765625 + }, { + "x0": 189.72000122070312, + "y0": 267.47998046875, + "x1": 211.67999267578125, + "y1": 288.0, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 267.47998046875, + "x1": 265.32000732421875, + "y1": 288.0, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 267.47998046875, + "x1": 300.9599914550781, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 267.47998046875, + "x1": 332.6400146484375, + "y1": 288.0, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 267.47998046875, + "x1": 364.67999267578125, + "y1": 288.0, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 267.47998046875, + "x1": 400.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 267.47998046875, + "x1": 436.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 267.47998046875, + "x1": 472.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 267.47998046875, + "x1": 508.67999267578125, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 267.47998046875, + "x1": 544.6799926757812, + "y1": 288.0, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 189.72000122070312, + "y0": 246.239990234375, + "x1": 211.67999267578125, + "y1": 266.760009765625, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 212.39999389648438, + "y0": 246.239990234375, + "x1": 265.32000732421875, + "y1": 266.760009765625, + "width": 52.920013427734375, + "height": 20.52001953125 + }, { + "x0": 265.67999267578125, + "y0": 246.239990234375, + "x1": 300.9599914550781, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 301.67999267578125, + "y0": 246.239990234375, + "x1": 332.6400146484375, + "y1": 266.760009765625, + "width": 30.96002197265625, + "height": 20.52001953125 + }, { + "x0": 333.3599853515625, + "y0": 246.239990234375, + "x1": 364.67999267578125, + "y1": 266.760009765625, + "width": 31.32000732421875, + "height": 20.52001953125 + }, { + "x0": 365.3999938964844, + "y0": 246.239990234375, + "x1": 400.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 401.3999938964844, + "y0": 246.239990234375, + "x1": 436.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 437.3999938964844, + "y0": 246.239990234375, + "x1": 472.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 473.3999938964844, + "y0": 246.239990234375, + "x1": 508.67999267578125, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + }, { + "x0": 509.3999938964844, + "y0": 246.239990234375, + "x1": 544.6799926757812, + "y1": 266.760009765625, + "width": 35.279998779296875, + "height": 20.52001953125 + } + ] + }, { + "pageInfo": { + "number": 99, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 592.5599975585938, + "y0": 443.1600036621094, + "x1": 656.6400146484375, + "y1": 497.1600036621094, + "width": 64.08001708984375, + "height": 54.0 + }, { + "x0": 527.760009765625, + "y0": 443.1600036621094, + "x1": 591.8399658203125, + "y1": 497.1600036621094, + "width": 64.0799560546875, + "height": 54.0 + }, { + "x0": 462.9599914550781, + "y0": 443.1600036621094, + "x1": 527.0400390625, + "y1": 497.1600036621094, + "width": 64.08004760742188, + "height": 54.0 + }, { + "x0": 397.79998779296875, + "y0": 443.1600036621094, + "x1": 462.239990234375, + "y1": 497.1600036621094, + "width": 64.44000244140625, + "height": 54.0 + }, { + "x0": 333.0, + "y0": 443.1600036621094, + "x1": 397.0799865722656, + "y1": 497.1600036621094, + "width": 64.07998657226562, + "height": 54.0 + }, { + "x0": 270.0, + "y0": 443.1600036621094, + "x1": 332.2799987792969, + "y1": 497.1600036621094, + "width": 62.279998779296875, + "height": 54.0 + }, { + "x0": 238.67999267578125, + "y0": 443.1600036621094, + "x1": 269.280029296875, + "y1": 497.1600036621094, + "width": 30.60003662109375, + "height": 54.0 + }, { + "x0": 171.0, + "y0": 443.1600036621094, + "x1": 237.96002197265625, + "y1": 497.1600036621094, + "width": 66.96002197265625, + "height": 54.0 + }, { + "x0": 70.91998291015625, + "y0": 443.1600036621094, + "x1": 170.280029296875, + "y1": 497.1600036621094, + "width": 99.36004638671875, + "height": 54.0 + } + ] + }, { + "pageInfo": { + "number": 100, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 594.0, + "y0": 453.96002197265625, + "x1": 657.0, + "y1": 500.0400085449219, + "width": 63.0, + "height": 46.079986572265625 + }, { + "x0": 526.6799926757812, + "y0": 453.96002197265625, + "x1": 593.280029296875, + "y1": 500.0400085449219, + "width": 66.60003662109375, + "height": 46.079986572265625 + }, { + "x0": 463.67999267578125, + "y0": 453.96002197265625, + "x1": 525.9599609375, + "y1": 500.0400085449219, + "width": 62.27996826171875, + "height": 46.079986572265625 + }, { + "x0": 396.0, + "y0": 453.96002197265625, + "x1": 462.9599914550781, + "y1": 500.0400085449219, + "width": 66.95999145507812, + "height": 46.079986572265625 + }, { + "x0": 333.0, + "y0": 453.96002197265625, + "x1": 395.2799987792969, + "y1": 500.0400085449219, + "width": 62.279998779296875, + "height": 46.079986572265625 + }, { + "x0": 270.0, + "y0": 453.96002197265625, + "x1": 332.2799987792969, + "y1": 500.0400085449219, + "width": 62.279998779296875, + "height": 46.079986572265625 + }, { + "x0": 238.67999267578125, + "y0": 453.96002197265625, + "x1": 269.280029296875, + "y1": 500.0400085449219, + "width": 30.60003662109375, + "height": 46.079986572265625 + }, { + "x0": 171.3599853515625, + "y0": 453.96002197265625, + "x1": 237.96002197265625, + "y1": 500.0400085449219, + "width": 66.60003662109375, + "height": 46.079986572265625 + }, { + "x0": 70.91998291015625, + "y0": 453.96002197265625, + "x1": 170.6400146484375, + "y1": 500.0400085449219, + "width": 99.72003173828125, + "height": 46.079986572265625 + } + ] + }, { + "pageInfo": { + "number": 101, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 594.0, + "y0": 446.03997802734375, + "x1": 657.3599853515625, + "y1": 500.0400085449219, + "width": 63.3599853515625, + "height": 54.000030517578125 + }, { + "x0": 526.6799926757812, + "y0": 446.03997802734375, + "x1": 593.280029296875, + "y1": 500.0400085449219, + "width": 66.60003662109375, + "height": 54.000030517578125 + }, { + "x0": 463.67999267578125, + "y0": 446.03997802734375, + "x1": 525.9599609375, + "y1": 500.0400085449219, + "width": 62.27996826171875, + "height": 54.000030517578125 + }, { + "x0": 396.0, + "y0": 446.03997802734375, + "x1": 462.9599914550781, + "y1": 500.0400085449219, + "width": 66.95999145507812, + "height": 54.000030517578125 + }, { + "x0": 333.0, + "y0": 446.03997802734375, + "x1": 395.2799987792969, + "y1": 500.0400085449219, + "width": 62.279998779296875, + "height": 54.000030517578125 + }, { + "x0": 270.0, + "y0": 446.03997802734375, + "x1": 332.2799987792969, + "y1": 500.0400085449219, + "width": 62.279998779296875, + "height": 54.000030517578125 + }, { + "x0": 238.67999267578125, + "y0": 446.03997802734375, + "x1": 269.280029296875, + "y1": 500.0400085449219, + "width": 30.60003662109375, + "height": 54.000030517578125 + }, { + "x0": 171.3599853515625, + "y0": 446.03997802734375, + "x1": 237.96002197265625, + "y1": 500.0400085449219, + "width": 66.60003662109375, + "height": 54.000030517578125 + }, { + "x0": 70.91998291015625, + "y0": 446.03997802734375, + "x1": 170.6400146484375, + "y1": 500.0400085449219, + "width": 99.72003173828125, + "height": 54.000030517578125 + } + ] + }, { + "pageInfo": { + "number": 102, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 594.0, + "y0": 446.03997802734375, + "x1": 657.3599853515625, + "y1": 500.0400085449219, + "width": 63.3599853515625, + "height": 54.000030517578125 + }, { + "x0": 594.0, + "y0": 398.52001953125, + "x1": 657.3599853515625, + "y1": 421.20001220703125, + "width": 63.3599853515625, + "height": 22.67999267578125 + }, { + "x0": 594.0, + "y0": 375.1199951171875, + "x1": 657.3599853515625, + "y1": 397.79998779296875, + "width": 63.3599853515625, + "height": 22.67999267578125 + }, { + "x0": 594.0, + "y0": 339.4800109863281, + "x1": 657.3599853515625, + "y1": 362.1600036621094, + "width": 63.3599853515625, + "height": 22.67999267578125 + }, { + "x0": 594.0, + "y0": 303.8399963378906, + "x1": 657.3599853515625, + "y1": 326.8800048828125, + "width": 63.3599853515625, + "height": 23.040008544921875 + }, { + "x0": 594.0, + "y0": 280.44000244140625, + "x1": 657.3599853515625, + "y1": 303.1199951171875, + "width": 63.3599853515625, + "height": 22.67999267578125 + }, { + "x0": 594.0, + "y0": 244.79998779296875, + "x1": 657.3599853515625, + "y1": 267.8399658203125, + "width": 63.3599853515625, + "height": 23.03997802734375 + }, { + "x0": 526.6799926757812, + "y0": 446.03997802734375, + "x1": 593.280029296875, + "y1": 500.0400085449219, + "width": 66.60003662109375, + "height": 54.000030517578125 + }, { + "x0": 526.6799926757812, + "y0": 398.52001953125, + "x1": 593.280029296875, + "y1": 421.20001220703125, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 526.6799926757812, + "y0": 375.1199951171875, + "x1": 593.280029296875, + "y1": 397.79998779296875, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 526.6799926757812, + "y0": 339.4800109863281, + "x1": 593.280029296875, + "y1": 362.1600036621094, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 526.6799926757812, + "y0": 303.8399963378906, + "x1": 593.280029296875, + "y1": 326.8800048828125, + "width": 66.60003662109375, + "height": 23.040008544921875 + }, { + "x0": 526.6799926757812, + "y0": 280.44000244140625, + "x1": 593.280029296875, + "y1": 303.1199951171875, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 526.6799926757812, + "y0": 244.79998779296875, + "x1": 593.280029296875, + "y1": 267.8399658203125, + "width": 66.60003662109375, + "height": 23.03997802734375 + }, { + "x0": 463.67999267578125, + "y0": 446.03997802734375, + "x1": 525.9599609375, + "y1": 500.0400085449219, + "width": 62.27996826171875, + "height": 54.000030517578125 + }, { + "x0": 463.67999267578125, + "y0": 398.52001953125, + "x1": 525.9599609375, + "y1": 421.20001220703125, + "width": 62.27996826171875, + "height": 22.67999267578125 + }, { + "x0": 463.67999267578125, + "y0": 375.1199951171875, + "x1": 525.9599609375, + "y1": 397.79998779296875, + "width": 62.27996826171875, + "height": 22.67999267578125 + }, { + "x0": 463.67999267578125, + "y0": 339.4800109863281, + "x1": 525.9599609375, + "y1": 362.1600036621094, + "width": 62.27996826171875, + "height": 22.67999267578125 + }, { + "x0": 463.67999267578125, + "y0": 303.8399963378906, + "x1": 525.9599609375, + "y1": 326.8800048828125, + "width": 62.27996826171875, + "height": 23.040008544921875 + }, { + "x0": 463.67999267578125, + "y0": 280.44000244140625, + "x1": 525.9599609375, + "y1": 303.1199951171875, + "width": 62.27996826171875, + "height": 22.67999267578125 + }, { + "x0": 463.67999267578125, + "y0": 244.79998779296875, + "x1": 525.9599609375, + "y1": 267.8399658203125, + "width": 62.27996826171875, + "height": 23.03997802734375 + }, { + "x0": 396.0, + "y0": 446.03997802734375, + "x1": 462.9599914550781, + "y1": 500.0400085449219, + "width": 66.95999145507812, + "height": 54.000030517578125 + }, { + "x0": 396.0, + "y0": 398.52001953125, + "x1": 462.9599914550781, + "y1": 421.20001220703125, + "width": 66.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 396.0, + "y0": 375.1199951171875, + "x1": 462.9599914550781, + "y1": 397.79998779296875, + "width": 66.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 396.0, + "y0": 339.4800109863281, + "x1": 462.9599914550781, + "y1": 362.1600036621094, + "width": 66.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 396.0, + "y0": 303.8399963378906, + "x1": 462.9599914550781, + "y1": 326.8800048828125, + "width": 66.95999145507812, + "height": 23.040008544921875 + }, { + "x0": 396.0, + "y0": 280.44000244140625, + "x1": 462.9599914550781, + "y1": 303.1199951171875, + "width": 66.95999145507812, + "height": 22.67999267578125 + }, { + "x0": 396.0, + "y0": 244.79998779296875, + "x1": 462.9599914550781, + "y1": 267.8399658203125, + "width": 66.95999145507812, + "height": 23.03997802734375 + }, { + "x0": 333.0, + "y0": 446.03997802734375, + "x1": 395.2799987792969, + "y1": 500.0400085449219, + "width": 62.279998779296875, + "height": 54.000030517578125 + }, { + "x0": 333.0, + "y0": 398.52001953125, + "x1": 395.2799987792969, + "y1": 421.20001220703125, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 333.0, + "y0": 375.1199951171875, + "x1": 395.2799987792969, + "y1": 397.79998779296875, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 333.0, + "y0": 339.4800109863281, + "x1": 395.2799987792969, + "y1": 362.1600036621094, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 333.0, + "y0": 303.8399963378906, + "x1": 395.2799987792969, + "y1": 326.8800048828125, + "width": 62.279998779296875, + "height": 23.040008544921875 + }, { + "x0": 333.0, + "y0": 280.44000244140625, + "x1": 395.2799987792969, + "y1": 303.1199951171875, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 333.0, + "y0": 244.79998779296875, + "x1": 395.2799987792969, + "y1": 267.8399658203125, + "width": 62.279998779296875, + "height": 23.03997802734375 + }, { + "x0": 270.0, + "y0": 446.03997802734375, + "x1": 332.2799987792969, + "y1": 500.0400085449219, + "width": 62.279998779296875, + "height": 54.000030517578125 + }, { + "x0": 270.0, + "y0": 398.52001953125, + "x1": 332.2799987792969, + "y1": 421.20001220703125, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 270.0, + "y0": 375.1199951171875, + "x1": 332.2799987792969, + "y1": 397.79998779296875, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 270.0, + "y0": 339.4800109863281, + "x1": 332.2799987792969, + "y1": 362.1600036621094, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 270.0, + "y0": 303.8399963378906, + "x1": 332.2799987792969, + "y1": 326.8800048828125, + "width": 62.279998779296875, + "height": 23.040008544921875 + }, { + "x0": 270.0, + "y0": 280.44000244140625, + "x1": 332.2799987792969, + "y1": 303.1199951171875, + "width": 62.279998779296875, + "height": 22.67999267578125 + }, { + "x0": 270.0, + "y0": 244.79998779296875, + "x1": 332.2799987792969, + "y1": 267.8399658203125, + "width": 62.279998779296875, + "height": 23.03997802734375 + }, { + "x0": 238.67999267578125, + "y0": 446.03997802734375, + "x1": 269.280029296875, + "y1": 500.0400085449219, + "width": 30.60003662109375, + "height": 54.000030517578125 + }, { + "x0": 238.67999267578125, + "y0": 398.52001953125, + "x1": 269.280029296875, + "y1": 421.20001220703125, + "width": 30.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 238.67999267578125, + "y0": 375.1199951171875, + "x1": 269.280029296875, + "y1": 397.79998779296875, + "width": 30.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 238.67999267578125, + "y0": 339.4800109863281, + "x1": 269.280029296875, + "y1": 362.1600036621094, + "width": 30.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 238.67999267578125, + "y0": 303.8399963378906, + "x1": 269.280029296875, + "y1": 326.8800048828125, + "width": 30.60003662109375, + "height": 23.040008544921875 + }, { + "x0": 238.67999267578125, + "y0": 280.44000244140625, + "x1": 269.280029296875, + "y1": 303.1199951171875, + "width": 30.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 238.67999267578125, + "y0": 244.79998779296875, + "x1": 269.280029296875, + "y1": 267.8399658203125, + "width": 30.60003662109375, + "height": 23.03997802734375 + }, { + "x0": 171.3599853515625, + "y0": 446.03997802734375, + "x1": 237.96002197265625, + "y1": 500.0400085449219, + "width": 66.60003662109375, + "height": 54.000030517578125 + }, { + "x0": 171.3599853515625, + "y0": 398.52001953125, + "x1": 237.96002197265625, + "y1": 421.20001220703125, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 171.3599853515625, + "y0": 375.1199951171875, + "x1": 237.96002197265625, + "y1": 397.79998779296875, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 171.3599853515625, + "y0": 339.4800109863281, + "x1": 237.96002197265625, + "y1": 362.1600036621094, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 171.3599853515625, + "y0": 303.8399963378906, + "x1": 237.96002197265625, + "y1": 326.8800048828125, + "width": 66.60003662109375, + "height": 23.040008544921875 + }, { + "x0": 171.3599853515625, + "y0": 280.44000244140625, + "x1": 237.96002197265625, + "y1": 303.1199951171875, + "width": 66.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 171.3599853515625, + "y0": 244.79998779296875, + "x1": 237.96002197265625, + "y1": 267.8399658203125, + "width": 66.60003662109375, + "height": 23.03997802734375 + }, { + "x0": 70.91998291015625, + "y0": 446.03997802734375, + "x1": 170.6400146484375, + "y1": 500.0400085449219, + "width": 99.72003173828125, + "height": 54.000030517578125 + }, { + "x0": 70.91998291015625, + "y0": 398.52001953125, + "x1": 170.6400146484375, + "y1": 421.20001220703125, + "width": 99.72003173828125, + "height": 22.67999267578125 + }, { + "x0": 70.91998291015625, + "y0": 375.1199951171875, + "x1": 170.6400146484375, + "y1": 397.79998779296875, + "width": 99.72003173828125, + "height": 22.67999267578125 + }, { + "x0": 70.91998291015625, + "y0": 339.4800109863281, + "x1": 170.6400146484375, + "y1": 362.1600036621094, + "width": 99.72003173828125, + "height": 22.67999267578125 + }, { + "x0": 70.91998291015625, + "y0": 303.8399963378906, + "x1": 170.6400146484375, + "y1": 326.8800048828125, + "width": 99.72003173828125, + "height": 23.040008544921875 + }, { + "x0": 70.91998291015625, + "y0": 280.44000244140625, + "x1": 170.6400146484375, + "y1": 303.1199951171875, + "width": 99.72003173828125, + "height": 22.67999267578125 + }, { + "x0": 70.91998291015625, + "y0": 244.79998779296875, + "x1": 170.6400146484375, + "y1": 267.8399658203125, + "width": 99.72003173828125, + "height": 23.03997802734375 + } + ] + }, { + "pageInfo": { + "number": 103, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 567.3599853515625, + "y0": 472.67999267578125, + "x1": 710.6400146484375, + "y1": 493.55999755859375, + "width": 143.280029296875, + "height": 20.8800048828125 + }, { + "x0": 675.0, + "y0": 450.7200012207031, + "x1": 710.6400146484375, + "y1": 471.96002197265625, + "width": 35.6400146484375, + "height": 21.240020751953125 + }, { + "x0": 675.0, + "y0": 416.52001953125, + "x1": 710.6400146484375, + "y1": 449.6400146484375, + "width": 35.6400146484375, + "height": 33.1199951171875 + }, { + "x0": 675.0, + "y0": 382.67999267578125, + "x1": 710.6400146484375, + "y1": 415.79998779296875, + "width": 35.6400146484375, + "height": 33.1199951171875 + }, { + "x0": 675.0, + "y0": 348.8399963378906, + "x1": 710.6400146484375, + "y1": 381.96002197265625, + "width": 35.6400146484375, + "height": 33.120025634765625 + }, { + "x0": 675.0, + "y0": 315.0, + "x1": 710.6400146484375, + "y1": 348.1199951171875, + "width": 35.6400146484375, + "height": 33.1199951171875 + }, { + "x0": 675.0, + "y0": 281.1600036621094, + "x1": 710.6400146484375, + "y1": 314.2799987792969, + "width": 35.6400146484375, + "height": 33.1199951171875 + }, { + "x0": 675.0, + "y0": 246.9599609375, + "x1": 710.6400146484375, + "y1": 280.44000244140625, + "width": 35.6400146484375, + "height": 33.48004150390625 + }, { + "x0": 675.0, + "y0": 213.1199951171875, + "x1": 710.6400146484375, + "y1": 246.5999755859375, + "width": 35.6400146484375, + "height": 33.47998046875 + }, { + "x0": 636.47998046875, + "y0": 450.7200012207031, + "x1": 674.280029296875, + "y1": 471.96002197265625, + "width": 37.800048828125, + "height": 21.240020751953125 + }, { + "x0": 636.47998046875, + "y0": 416.52001953125, + "x1": 674.280029296875, + "y1": 449.6400146484375, + "width": 37.800048828125, + "height": 33.1199951171875 + }, { + "x0": 636.47998046875, + "y0": 382.67999267578125, + "x1": 674.280029296875, + "y1": 415.79998779296875, + "width": 37.800048828125, + "height": 33.1199951171875 + }, { + "x0": 636.47998046875, + "y0": 348.8399963378906, + "x1": 674.280029296875, + "y1": 381.96002197265625, + "width": 37.800048828125, + "height": 33.120025634765625 + }, { + "x0": 636.47998046875, + "y0": 315.0, + "x1": 674.280029296875, + "y1": 348.1199951171875, + "width": 37.800048828125, + "height": 33.1199951171875 + }, { + "x0": 636.47998046875, + "y0": 281.1600036621094, + "x1": 674.280029296875, + "y1": 314.2799987792969, + "width": 37.800048828125, + "height": 33.1199951171875 + }, { + "x0": 636.47998046875, + "y0": 246.9599609375, + "x1": 674.280029296875, + "y1": 280.44000244140625, + "width": 37.800048828125, + "height": 33.48004150390625 + }, { + "x0": 636.47998046875, + "y0": 213.1199951171875, + "x1": 674.280029296875, + "y1": 246.5999755859375, + "width": 37.800048828125, + "height": 33.47998046875 + }, { + "x0": 601.9199829101562, + "y0": 450.7200012207031, + "x1": 635.760009765625, + "y1": 471.96002197265625, + "width": 33.84002685546875, + "height": 21.240020751953125 + }, { + "x0": 601.9199829101562, + "y0": 416.52001953125, + "x1": 635.760009765625, + "y1": 449.6400146484375, + "width": 33.84002685546875, + "height": 33.1199951171875 + }, { + "x0": 601.9199829101562, + "y0": 382.67999267578125, + "x1": 635.760009765625, + "y1": 415.79998779296875, + "width": 33.84002685546875, + "height": 33.1199951171875 + }, { + "x0": 601.9199829101562, + "y0": 348.8399963378906, + "x1": 635.760009765625, + "y1": 381.96002197265625, + "width": 33.84002685546875, + "height": 33.120025634765625 + }, { + "x0": 601.9199829101562, + "y0": 315.0, + "x1": 635.760009765625, + "y1": 348.1199951171875, + "width": 33.84002685546875, + "height": 33.1199951171875 + }, { + "x0": 601.9199829101562, + "y0": 281.1600036621094, + "x1": 635.760009765625, + "y1": 314.2799987792969, + "width": 33.84002685546875, + "height": 33.1199951171875 + }, { + "x0": 601.9199829101562, + "y0": 246.9599609375, + "x1": 635.760009765625, + "y1": 280.44000244140625, + "width": 33.84002685546875, + "height": 33.48004150390625 + }, { + "x0": 601.9199829101562, + "y0": 213.1199951171875, + "x1": 635.760009765625, + "y1": 246.5999755859375, + "width": 33.84002685546875, + "height": 33.47998046875 + }, { + "x0": 567.0, + "y0": 450.7200012207031, + "x1": 601.2000122070312, + "y1": 471.96002197265625, + "width": 34.20001220703125, + "height": 21.240020751953125 + }, { + "x0": 567.0, + "y0": 416.52001953125, + "x1": 601.2000122070312, + "y1": 449.6400146484375, + "width": 34.20001220703125, + "height": 33.1199951171875 + }, { + "x0": 567.0, + "y0": 382.67999267578125, + "x1": 601.2000122070312, + "y1": 415.79998779296875, + "width": 34.20001220703125, + "height": 33.1199951171875 + }, { + "x0": 567.0, + "y0": 348.8399963378906, + "x1": 601.2000122070312, + "y1": 381.96002197265625, + "width": 34.20001220703125, + "height": 33.120025634765625 + }, { + "x0": 567.0, + "y0": 315.0, + "x1": 601.2000122070312, + "y1": 348.1199951171875, + "width": 34.20001220703125, + "height": 33.1199951171875 + }, { + "x0": 567.0, + "y0": 281.1600036621094, + "x1": 601.2000122070312, + "y1": 314.2799987792969, + "width": 34.20001220703125, + "height": 33.1199951171875 + }, { + "x0": 567.0, + "y0": 246.9599609375, + "x1": 601.2000122070312, + "y1": 280.44000244140625, + "width": 34.20001220703125, + "height": 33.48004150390625 + }, { + "x0": 567.0, + "y0": 213.1199951171875, + "x1": 601.2000122070312, + "y1": 246.5999755859375, + "width": 34.20001220703125, + "height": 33.47998046875 + }, { + "x0": 526.6799926757812, + "y0": 450.7200012207031, + "x1": 566.280029296875, + "y1": 471.96002197265625, + "width": 39.60003662109375, + "height": 21.240020751953125 + }, { + "x0": 526.6799926757812, + "y0": 416.52001953125, + "x1": 566.280029296875, + "y1": 449.6400146484375, + "width": 39.60003662109375, + "height": 33.1199951171875 + }, { + "x0": 526.6799926757812, + "y0": 382.67999267578125, + "x1": 566.280029296875, + "y1": 415.79998779296875, + "width": 39.60003662109375, + "height": 33.1199951171875 + }, { + "x0": 526.6799926757812, + "y0": 348.8399963378906, + "x1": 566.280029296875, + "y1": 381.96002197265625, + "width": 39.60003662109375, + "height": 33.120025634765625 + }, { + "x0": 526.6799926757812, + "y0": 315.0, + "x1": 566.280029296875, + "y1": 348.1199951171875, + "width": 39.60003662109375, + "height": 33.1199951171875 + }, { + "x0": 526.6799926757812, + "y0": 281.1600036621094, + "x1": 566.280029296875, + "y1": 314.2799987792969, + "width": 39.60003662109375, + "height": 33.1199951171875 + }, { + "x0": 526.6799926757812, + "y0": 246.9599609375, + "x1": 566.280029296875, + "y1": 280.44000244140625, + "width": 39.60003662109375, + "height": 33.48004150390625 + }, { + "x0": 526.6799926757812, + "y0": 213.1199951171875, + "x1": 566.280029296875, + "y1": 246.5999755859375, + "width": 39.60003662109375, + "height": 33.47998046875 + }, { + "x0": 405.3599853515625, + "y0": 472.67999267578125, + "x1": 565.9199829101562, + "y1": 493.55999755859375, + "width": 160.55999755859375, + "height": 20.8800048828125 + }, { + "x0": 486.0, + "y0": 450.7200012207031, + "x1": 525.9599609375, + "y1": 471.96002197265625, + "width": 39.9599609375, + "height": 21.240020751953125 + }, { + "x0": 486.0, + "y0": 416.52001953125, + "x1": 525.9599609375, + "y1": 449.6400146484375, + "width": 39.9599609375, + "height": 33.1199951171875 + }, { + "x0": 486.0, + "y0": 382.67999267578125, + "x1": 525.9599609375, + "y1": 415.79998779296875, + "width": 39.9599609375, + "height": 33.1199951171875 + }, { + "x0": 486.0, + "y0": 348.8399963378906, + "x1": 525.9599609375, + "y1": 381.96002197265625, + "width": 39.9599609375, + "height": 33.120025634765625 + }, { + "x0": 486.0, + "y0": 315.0, + "x1": 525.9599609375, + "y1": 348.1199951171875, + "width": 39.9599609375, + "height": 33.1199951171875 + }, { + "x0": 486.0, + "y0": 281.1600036621094, + "x1": 525.9599609375, + "y1": 314.2799987792969, + "width": 39.9599609375, + "height": 33.1199951171875 + }, { + "x0": 486.0, + "y0": 246.9599609375, + "x1": 525.9599609375, + "y1": 280.44000244140625, + "width": 39.9599609375, + "height": 33.48004150390625 + }, { + "x0": 486.0, + "y0": 213.1199951171875, + "x1": 525.9599609375, + "y1": 246.5999755859375, + "width": 39.9599609375, + "height": 33.47998046875 + }, { + "x0": 445.67999267578125, + "y0": 450.7200012207031, + "x1": 485.2799987792969, + "y1": 471.96002197265625, + "width": 39.600006103515625, + "height": 21.240020751953125 + }, { + "x0": 445.67999267578125, + "y0": 416.52001953125, + "x1": 485.2799987792969, + "y1": 449.6400146484375, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 445.67999267578125, + "y0": 382.67999267578125, + "x1": 485.2799987792969, + "y1": 415.79998779296875, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 445.67999267578125, + "y0": 348.8399963378906, + "x1": 485.2799987792969, + "y1": 381.96002197265625, + "width": 39.600006103515625, + "height": 33.120025634765625 + }, { + "x0": 445.67999267578125, + "y0": 315.0, + "x1": 485.2799987792969, + "y1": 348.1199951171875, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 445.67999267578125, + "y0": 281.1600036621094, + "x1": 485.2799987792969, + "y1": 314.2799987792969, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 445.67999267578125, + "y0": 246.9599609375, + "x1": 485.2799987792969, + "y1": 280.44000244140625, + "width": 39.600006103515625, + "height": 33.48004150390625 + }, { + "x0": 445.67999267578125, + "y0": 213.1199951171875, + "x1": 485.2799987792969, + "y1": 246.5999755859375, + "width": 39.600006103515625, + "height": 33.47998046875 + }, { + "x0": 405.3599853515625, + "y0": 450.7200012207031, + "x1": 444.9599914550781, + "y1": 471.96002197265625, + "width": 39.600006103515625, + "height": 21.240020751953125 + }, { + "x0": 405.3599853515625, + "y0": 416.52001953125, + "x1": 444.9599914550781, + "y1": 449.6400146484375, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 405.3599853515625, + "y0": 382.67999267578125, + "x1": 444.9599914550781, + "y1": 415.79998779296875, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 405.3599853515625, + "y0": 348.8399963378906, + "x1": 444.9599914550781, + "y1": 381.96002197265625, + "width": 39.600006103515625, + "height": 33.120025634765625 + }, { + "x0": 405.3599853515625, + "y0": 315.0, + "x1": 444.9599914550781, + "y1": 348.1199951171875, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 405.3599853515625, + "y0": 281.1600036621094, + "x1": 444.9599914550781, + "y1": 314.2799987792969, + "width": 39.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 405.3599853515625, + "y0": 246.9599609375, + "x1": 444.9599914550781, + "y1": 280.44000244140625, + "width": 39.600006103515625, + "height": 33.48004150390625 + }, { + "x0": 405.3599853515625, + "y0": 213.1199951171875, + "x1": 444.9599914550781, + "y1": 246.5999755859375, + "width": 39.600006103515625, + "height": 33.47998046875 + }, { + "x0": 364.67999267578125, + "y0": 450.7200012207031, + "x1": 403.9200134277344, + "y1": 493.55999755859375, + "width": 39.240020751953125, + "height": 42.839996337890625 + }, { + "x0": 364.67999267578125, + "y0": 416.52001953125, + "x1": 403.9200134277344, + "y1": 449.6400146484375, + "width": 39.240020751953125, + "height": 33.1199951171875 + }, { + "x0": 364.67999267578125, + "y0": 382.67999267578125, + "x1": 403.9200134277344, + "y1": 415.79998779296875, + "width": 39.240020751953125, + "height": 33.1199951171875 + }, { + "x0": 364.67999267578125, + "y0": 348.8399963378906, + "x1": 403.9200134277344, + "y1": 381.96002197265625, + "width": 39.240020751953125, + "height": 33.120025634765625 + }, { + "x0": 364.67999267578125, + "y0": 315.0, + "x1": 403.9200134277344, + "y1": 348.1199951171875, + "width": 39.240020751953125, + "height": 33.1199951171875 + }, { + "x0": 364.67999267578125, + "y0": 281.1600036621094, + "x1": 403.9200134277344, + "y1": 314.2799987792969, + "width": 39.240020751953125, + "height": 33.1199951171875 + }, { + "x0": 364.67999267578125, + "y0": 246.9599609375, + "x1": 403.9200134277344, + "y1": 280.44000244140625, + "width": 39.240020751953125, + "height": 33.48004150390625 + }, { + "x0": 364.67999267578125, + "y0": 213.1199951171875, + "x1": 403.9200134277344, + "y1": 246.5999755859375, + "width": 39.240020751953125, + "height": 33.47998046875 + }, { + "x0": 315.0, + "y0": 450.7200012207031, + "x1": 363.9599914550781, + "y1": 493.55999755859375, + "width": 48.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 315.0, + "y0": 416.52001953125, + "x1": 363.9599914550781, + "y1": 449.6400146484375, + "width": 48.959991455078125, + "height": 33.1199951171875 + }, { + "x0": 315.0, + "y0": 382.67999267578125, + "x1": 363.9599914550781, + "y1": 415.79998779296875, + "width": 48.959991455078125, + "height": 33.1199951171875 + }, { + "x0": 315.0, + "y0": 348.8399963378906, + "x1": 363.9599914550781, + "y1": 381.96002197265625, + "width": 48.959991455078125, + "height": 33.120025634765625 + }, { + "x0": 315.0, + "y0": 315.0, + "x1": 363.9599914550781, + "y1": 348.1199951171875, + "width": 48.959991455078125, + "height": 33.1199951171875 + }, { + "x0": 315.0, + "y0": 281.1600036621094, + "x1": 363.9599914550781, + "y1": 314.2799987792969, + "width": 48.959991455078125, + "height": 33.1199951171875 + }, { + "x0": 315.0, + "y0": 246.9599609375, + "x1": 363.9599914550781, + "y1": 280.44000244140625, + "width": 48.959991455078125, + "height": 33.48004150390625 + }, { + "x0": 315.0, + "y0": 213.1199951171875, + "x1": 363.9599914550781, + "y1": 246.5999755859375, + "width": 48.959991455078125, + "height": 33.47998046875 + }, { + "x0": 265.67999267578125, + "y0": 450.7200012207031, + "x1": 314.2799987792969, + "y1": 493.55999755859375, + "width": 48.600006103515625, + "height": 42.839996337890625 + }, { + "x0": 265.67999267578125, + "y0": 416.52001953125, + "x1": 314.2799987792969, + "y1": 449.6400146484375, + "width": 48.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 382.67999267578125, + "x1": 314.2799987792969, + "y1": 415.79998779296875, + "width": 48.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 348.8399963378906, + "x1": 314.2799987792969, + "y1": 381.96002197265625, + "width": 48.600006103515625, + "height": 33.120025634765625 + }, { + "x0": 265.67999267578125, + "y0": 315.0, + "x1": 314.2799987792969, + "y1": 348.1199951171875, + "width": 48.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 281.1600036621094, + "x1": 314.2799987792969, + "y1": 314.2799987792969, + "width": 48.600006103515625, + "height": 33.1199951171875 + }, { + "x0": 265.67999267578125, + "y0": 246.9599609375, + "x1": 314.2799987792969, + "y1": 280.44000244140625, + "width": 48.600006103515625, + "height": 33.48004150390625 + }, { + "x0": 265.67999267578125, + "y0": 213.1199951171875, + "x1": 314.2799987792969, + "y1": 246.5999755859375, + "width": 48.600006103515625, + "height": 33.47998046875 + }, { + "x0": 238.67999267578125, + "y0": 450.7200012207031, + "x1": 264.96002197265625, + "y1": 493.55999755859375, + "width": 26.280029296875, + "height": 42.839996337890625 + }, { + "x0": 238.67999267578125, + "y0": 416.52001953125, + "x1": 264.96002197265625, + "y1": 449.6400146484375, + "width": 26.280029296875, + "height": 33.1199951171875 + }, { + "x0": 238.67999267578125, + "y0": 382.67999267578125, + "x1": 264.96002197265625, + "y1": 415.79998779296875, + "width": 26.280029296875, + "height": 33.1199951171875 + }, { + "x0": 238.67999267578125, + "y0": 348.8399963378906, + "x1": 264.96002197265625, + "y1": 381.96002197265625, + "width": 26.280029296875, + "height": 33.120025634765625 + }, { + "x0": 238.67999267578125, + "y0": 315.0, + "x1": 264.96002197265625, + "y1": 348.1199951171875, + "width": 26.280029296875, + "height": 33.1199951171875 + }, { + "x0": 238.67999267578125, + "y0": 281.1600036621094, + "x1": 264.96002197265625, + "y1": 314.2799987792969, + "width": 26.280029296875, + "height": 33.1199951171875 + }, { + "x0": 238.67999267578125, + "y0": 246.9599609375, + "x1": 264.96002197265625, + "y1": 280.44000244140625, + "width": 26.280029296875, + "height": 33.48004150390625 + }, { + "x0": 238.67999267578125, + "y0": 213.1199951171875, + "x1": 264.96002197265625, + "y1": 246.5999755859375, + "width": 26.280029296875, + "height": 33.47998046875 + }, { + "x0": 198.0, + "y0": 450.7200012207031, + "x1": 237.96002197265625, + "y1": 493.55999755859375, + "width": 39.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 198.0, + "y0": 416.52001953125, + "x1": 237.96002197265625, + "y1": 449.6400146484375, + "width": 39.96002197265625, + "height": 33.1199951171875 + }, { + "x0": 198.0, + "y0": 382.67999267578125, + "x1": 237.96002197265625, + "y1": 415.79998779296875, + "width": 39.96002197265625, + "height": 33.1199951171875 + }, { + "x0": 198.0, + "y0": 348.8399963378906, + "x1": 237.96002197265625, + "y1": 381.96002197265625, + "width": 39.96002197265625, + "height": 33.120025634765625 + }, { + "x0": 198.0, + "y0": 315.0, + "x1": 237.96002197265625, + "y1": 348.1199951171875, + "width": 39.96002197265625, + "height": 33.1199951171875 + }, { + "x0": 198.0, + "y0": 281.1600036621094, + "x1": 237.96002197265625, + "y1": 314.2799987792969, + "width": 39.96002197265625, + "height": 33.1199951171875 + }, { + "x0": 198.0, + "y0": 246.9599609375, + "x1": 237.96002197265625, + "y1": 280.44000244140625, + "width": 39.96002197265625, + "height": 33.48004150390625 + }, { + "x0": 198.0, + "y0": 213.1199951171875, + "x1": 237.96002197265625, + "y1": 246.5999755859375, + "width": 39.96002197265625, + "height": 33.47998046875 + }, { + "x0": 74.8800048828125, + "y0": 450.7200012207031, + "x1": 197.280029296875, + "y1": 493.55999755859375, + "width": 122.4000244140625, + "height": 42.839996337890625 + }, { + "x0": 74.8800048828125, + "y0": 416.52001953125, + "x1": 197.280029296875, + "y1": 449.6400146484375, + "width": 122.4000244140625, + "height": 33.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 382.67999267578125, + "x1": 197.280029296875, + "y1": 415.79998779296875, + "width": 122.4000244140625, + "height": 33.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 348.8399963378906, + "x1": 197.280029296875, + "y1": 381.96002197265625, + "width": 122.4000244140625, + "height": 33.120025634765625 + }, { + "x0": 74.8800048828125, + "y0": 315.0, + "x1": 197.280029296875, + "y1": 348.1199951171875, + "width": 122.4000244140625, + "height": 33.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 281.1600036621094, + "x1": 197.280029296875, + "y1": 314.2799987792969, + "width": 122.4000244140625, + "height": 33.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 246.9599609375, + "x1": 197.280029296875, + "y1": 280.44000244140625, + "width": 122.4000244140625, + "height": 33.48004150390625 + }, { + "x0": 74.8800048828125, + "y0": 213.1199951171875, + "x1": 197.280029296875, + "y1": 246.5999755859375, + "width": 122.4000244140625, + "height": 33.47998046875 + } + ] + }, { + "pageInfo": { + "number": 104, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 567.3599853515625, + "y0": 457.91998291015625, + "x1": 710.6400146484375, + "y1": 478.79998779296875, + "width": 143.280029296875, + "height": 20.8800048828125 + }, { + "x0": 675.0, + "y0": 435.96002197265625, + "x1": 710.6400146484375, + "y1": 457.20001220703125, + "width": 35.6400146484375, + "height": 21.239990234375 + }, { + "x0": 675.0, + "y0": 400.32000732421875, + "x1": 710.6400146484375, + "y1": 434.52001953125, + "width": 35.6400146484375, + "height": 34.20001220703125 + }, { + "x0": 675.0, + "y0": 365.3999938964844, + "x1": 710.6400146484375, + "y1": 399.6000061035156, + "width": 35.6400146484375, + "height": 34.20001220703125 + }, { + "x0": 675.0, + "y0": 330.4800109863281, + "x1": 710.6400146484375, + "y1": 364.67999267578125, + "width": 35.6400146484375, + "height": 34.199981689453125 + }, { + "x0": 675.0, + "y0": 295.20001220703125, + "x1": 710.6400146484375, + "y1": 329.760009765625, + "width": 35.6400146484375, + "height": 34.55999755859375 + }, { + "x0": 675.0, + "y0": 260.280029296875, + "x1": 710.6400146484375, + "y1": 294.8399963378906, + "width": 35.6400146484375, + "height": 34.559967041015625 + }, { + "x0": 675.0, + "y0": 225.3599853515625, + "x1": 710.6400146484375, + "y1": 259.55999755859375, + "width": 35.6400146484375, + "height": 34.20001220703125 + }, { + "x0": 675.0, + "y0": 190.44000244140625, + "x1": 710.6400146484375, + "y1": 224.6400146484375, + "width": 35.6400146484375, + "height": 34.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 435.96002197265625, + "x1": 674.280029296875, + "y1": 457.20001220703125, + "width": 37.800048828125, + "height": 21.239990234375 + }, { + "x0": 636.47998046875, + "y0": 400.32000732421875, + "x1": 674.280029296875, + "y1": 434.52001953125, + "width": 37.800048828125, + "height": 34.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 365.3999938964844, + "x1": 674.280029296875, + "y1": 399.6000061035156, + "width": 37.800048828125, + "height": 34.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 330.4800109863281, + "x1": 674.280029296875, + "y1": 364.67999267578125, + "width": 37.800048828125, + "height": 34.199981689453125 + }, { + "x0": 636.47998046875, + "y0": 295.20001220703125, + "x1": 674.280029296875, + "y1": 329.760009765625, + "width": 37.800048828125, + "height": 34.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 260.280029296875, + "x1": 674.280029296875, + "y1": 294.8399963378906, + "width": 37.800048828125, + "height": 34.559967041015625 + }, { + "x0": 636.47998046875, + "y0": 225.3599853515625, + "x1": 674.280029296875, + "y1": 259.55999755859375, + "width": 37.800048828125, + "height": 34.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 190.44000244140625, + "x1": 674.280029296875, + "y1": 224.6400146484375, + "width": 37.800048828125, + "height": 34.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 435.96002197265625, + "x1": 635.760009765625, + "y1": 457.20001220703125, + "width": 33.84002685546875, + "height": 21.239990234375 + }, { + "x0": 601.9199829101562, + "y0": 400.32000732421875, + "x1": 635.760009765625, + "y1": 434.52001953125, + "width": 33.84002685546875, + "height": 34.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 365.3999938964844, + "x1": 635.760009765625, + "y1": 399.6000061035156, + "width": 33.84002685546875, + "height": 34.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 330.4800109863281, + "x1": 635.760009765625, + "y1": 364.67999267578125, + "width": 33.84002685546875, + "height": 34.199981689453125 + }, { + "x0": 601.9199829101562, + "y0": 295.20001220703125, + "x1": 635.760009765625, + "y1": 329.760009765625, + "width": 33.84002685546875, + "height": 34.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 260.280029296875, + "x1": 635.760009765625, + "y1": 294.8399963378906, + "width": 33.84002685546875, + "height": 34.559967041015625 + }, { + "x0": 601.9199829101562, + "y0": 225.3599853515625, + "x1": 635.760009765625, + "y1": 259.55999755859375, + "width": 33.84002685546875, + "height": 34.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 190.44000244140625, + "x1": 635.760009765625, + "y1": 224.6400146484375, + "width": 33.84002685546875, + "height": 34.20001220703125 + }, { + "x0": 567.0, + "y0": 435.96002197265625, + "x1": 601.2000122070312, + "y1": 457.20001220703125, + "width": 34.20001220703125, + "height": 21.239990234375 + }, { + "x0": 567.0, + "y0": 400.32000732421875, + "x1": 601.2000122070312, + "y1": 434.52001953125, + "width": 34.20001220703125, + "height": 34.20001220703125 + }, { + "x0": 567.0, + "y0": 365.3999938964844, + "x1": 601.2000122070312, + "y1": 399.6000061035156, + "width": 34.20001220703125, + "height": 34.20001220703125 + }, { + "x0": 567.0, + "y0": 330.4800109863281, + "x1": 601.2000122070312, + "y1": 364.67999267578125, + "width": 34.20001220703125, + "height": 34.199981689453125 + }, { + "x0": 567.0, + "y0": 295.20001220703125, + "x1": 601.2000122070312, + "y1": 329.760009765625, + "width": 34.20001220703125, + "height": 34.55999755859375 + }, { + "x0": 567.0, + "y0": 260.280029296875, + "x1": 601.2000122070312, + "y1": 294.8399963378906, + "width": 34.20001220703125, + "height": 34.559967041015625 + }, { + "x0": 567.0, + "y0": 225.3599853515625, + "x1": 601.2000122070312, + "y1": 259.55999755859375, + "width": 34.20001220703125, + "height": 34.20001220703125 + }, { + "x0": 567.0, + "y0": 190.44000244140625, + "x1": 601.2000122070312, + "y1": 224.6400146484375, + "width": 34.20001220703125, + "height": 34.20001220703125 + }, { + "x0": 526.3200073242188, + "y0": 435.96002197265625, + "x1": 566.280029296875, + "y1": 457.20001220703125, + "width": 39.96002197265625, + "height": 21.239990234375 + }, { + "x0": 526.3200073242188, + "y0": 400.32000732421875, + "x1": 566.280029296875, + "y1": 434.52001953125, + "width": 39.96002197265625, + "height": 34.20001220703125 + }, { + "x0": 526.3200073242188, + "y0": 365.3999938964844, + "x1": 566.280029296875, + "y1": 399.6000061035156, + "width": 39.96002197265625, + "height": 34.20001220703125 + }, { + "x0": 526.3200073242188, + "y0": 330.4800109863281, + "x1": 566.280029296875, + "y1": 364.67999267578125, + "width": 39.96002197265625, + "height": 34.199981689453125 + }, { + "x0": 526.3200073242188, + "y0": 295.20001220703125, + "x1": 566.280029296875, + "y1": 329.760009765625, + "width": 39.96002197265625, + "height": 34.55999755859375 + }, { + "x0": 526.3200073242188, + "y0": 260.280029296875, + "x1": 566.280029296875, + "y1": 294.8399963378906, + "width": 39.96002197265625, + "height": 34.559967041015625 + }, { + "x0": 526.3200073242188, + "y0": 225.3599853515625, + "x1": 566.280029296875, + "y1": 259.55999755859375, + "width": 39.96002197265625, + "height": 34.20001220703125 + }, { + "x0": 526.3200073242188, + "y0": 190.44000244140625, + "x1": 566.280029296875, + "y1": 224.6400146484375, + "width": 39.96002197265625, + "height": 34.20001220703125 + }, { + "x0": 405.0, + "y0": 457.91998291015625, + "x1": 565.9199829101562, + "y1": 478.79998779296875, + "width": 160.91998291015625, + "height": 20.8800048828125 + }, { + "x0": 486.0, + "y0": 435.96002197265625, + "x1": 525.5999755859375, + "y1": 457.20001220703125, + "width": 39.5999755859375, + "height": 21.239990234375 + }, { + "x0": 486.0, + "y0": 400.32000732421875, + "x1": 525.5999755859375, + "y1": 434.52001953125, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 486.0, + "y0": 365.3999938964844, + "x1": 525.5999755859375, + "y1": 399.6000061035156, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 486.0, + "y0": 330.4800109863281, + "x1": 525.5999755859375, + "y1": 364.67999267578125, + "width": 39.5999755859375, + "height": 34.199981689453125 + }, { + "x0": 486.0, + "y0": 295.20001220703125, + "x1": 525.5999755859375, + "y1": 329.760009765625, + "width": 39.5999755859375, + "height": 34.55999755859375 + }, { + "x0": 486.0, + "y0": 260.280029296875, + "x1": 525.5999755859375, + "y1": 294.8399963378906, + "width": 39.5999755859375, + "height": 34.559967041015625 + }, { + "x0": 486.0, + "y0": 225.3599853515625, + "x1": 525.5999755859375, + "y1": 259.55999755859375, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 486.0, + "y0": 190.44000244140625, + "x1": 525.5999755859375, + "y1": 224.6400146484375, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 435.96002197265625, + "x1": 485.2799987792969, + "y1": 457.20001220703125, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 445.67999267578125, + "y0": 400.32000732421875, + "x1": 485.2799987792969, + "y1": 434.52001953125, + "width": 39.600006103515625, + "height": 34.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 365.3999938964844, + "x1": 485.2799987792969, + "y1": 399.6000061035156, + "width": 39.600006103515625, + "height": 34.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 330.4800109863281, + "x1": 485.2799987792969, + "y1": 364.67999267578125, + "width": 39.600006103515625, + "height": 34.199981689453125 + }, { + "x0": 445.67999267578125, + "y0": 295.20001220703125, + "x1": 485.2799987792969, + "y1": 329.760009765625, + "width": 39.600006103515625, + "height": 34.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 260.280029296875, + "x1": 485.2799987792969, + "y1": 294.8399963378906, + "width": 39.600006103515625, + "height": 34.559967041015625 + }, { + "x0": 445.67999267578125, + "y0": 225.3599853515625, + "x1": 485.2799987792969, + "y1": 259.55999755859375, + "width": 39.600006103515625, + "height": 34.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 190.44000244140625, + "x1": 485.2799987792969, + "y1": 224.6400146484375, + "width": 39.600006103515625, + "height": 34.20001220703125 + }, { + "x0": 405.0, + "y0": 435.96002197265625, + "x1": 444.9599914550781, + "y1": 457.20001220703125, + "width": 39.959991455078125, + "height": 21.239990234375 + }, { + "x0": 405.0, + "y0": 400.32000732421875, + "x1": 444.9599914550781, + "y1": 434.52001953125, + "width": 39.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 405.0, + "y0": 365.3999938964844, + "x1": 444.9599914550781, + "y1": 399.6000061035156, + "width": 39.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 405.0, + "y0": 330.4800109863281, + "x1": 444.9599914550781, + "y1": 364.67999267578125, + "width": 39.959991455078125, + "height": 34.199981689453125 + }, { + "x0": 405.0, + "y0": 295.20001220703125, + "x1": 444.9599914550781, + "y1": 329.760009765625, + "width": 39.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 405.0, + "y0": 260.280029296875, + "x1": 444.9599914550781, + "y1": 294.8399963378906, + "width": 39.959991455078125, + "height": 34.559967041015625 + }, { + "x0": 405.0, + "y0": 225.3599853515625, + "x1": 444.9599914550781, + "y1": 259.55999755859375, + "width": 39.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 405.0, + "y0": 190.44000244140625, + "x1": 444.9599914550781, + "y1": 224.6400146484375, + "width": 39.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 364.67999267578125, + "y0": 435.96002197265625, + "x1": 403.9200134277344, + "y1": 478.79998779296875, + "width": 39.240020751953125, + "height": 42.8399658203125 + }, { + "x0": 364.67999267578125, + "y0": 400.32000732421875, + "x1": 403.9200134277344, + "y1": 434.52001953125, + "width": 39.240020751953125, + "height": 34.20001220703125 + }, { + "x0": 364.67999267578125, + "y0": 365.3999938964844, + "x1": 403.9200134277344, + "y1": 399.6000061035156, + "width": 39.240020751953125, + "height": 34.20001220703125 + }, { + "x0": 364.67999267578125, + "y0": 330.4800109863281, + "x1": 403.9200134277344, + "y1": 364.67999267578125, + "width": 39.240020751953125, + "height": 34.199981689453125 + }, { + "x0": 364.67999267578125, + "y0": 295.20001220703125, + "x1": 403.9200134277344, + "y1": 329.760009765625, + "width": 39.240020751953125, + "height": 34.55999755859375 + }, { + "x0": 364.67999267578125, + "y0": 260.280029296875, + "x1": 403.9200134277344, + "y1": 294.8399963378906, + "width": 39.240020751953125, + "height": 34.559967041015625 + }, { + "x0": 364.67999267578125, + "y0": 225.3599853515625, + "x1": 403.9200134277344, + "y1": 259.55999755859375, + "width": 39.240020751953125, + "height": 34.20001220703125 + }, { + "x0": 364.67999267578125, + "y0": 190.44000244140625, + "x1": 403.9200134277344, + "y1": 224.6400146484375, + "width": 39.240020751953125, + "height": 34.20001220703125 + }, { + "x0": 315.0, + "y0": 435.96002197265625, + "x1": 363.9599914550781, + "y1": 478.79998779296875, + "width": 48.959991455078125, + "height": 42.8399658203125 + }, { + "x0": 315.0, + "y0": 400.32000732421875, + "x1": 363.9599914550781, + "y1": 434.52001953125, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 315.0, + "y0": 365.3999938964844, + "x1": 363.9599914550781, + "y1": 399.6000061035156, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 315.0, + "y0": 330.4800109863281, + "x1": 363.9599914550781, + "y1": 364.67999267578125, + "width": 48.959991455078125, + "height": 34.199981689453125 + }, { + "x0": 315.0, + "y0": 295.20001220703125, + "x1": 363.9599914550781, + "y1": 329.760009765625, + "width": 48.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 315.0, + "y0": 260.280029296875, + "x1": 363.9599914550781, + "y1": 294.8399963378906, + "width": 48.959991455078125, + "height": 34.559967041015625 + }, { + "x0": 315.0, + "y0": 225.3599853515625, + "x1": 363.9599914550781, + "y1": 259.55999755859375, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 315.0, + "y0": 190.44000244140625, + "x1": 363.9599914550781, + "y1": 224.6400146484375, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 265.32000732421875, + "y0": 435.96002197265625, + "x1": 314.2799987792969, + "y1": 478.79998779296875, + "width": 48.959991455078125, + "height": 42.8399658203125 + }, { + "x0": 265.32000732421875, + "y0": 400.32000732421875, + "x1": 314.2799987792969, + "y1": 434.52001953125, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 265.32000732421875, + "y0": 365.3999938964844, + "x1": 314.2799987792969, + "y1": 399.6000061035156, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 265.32000732421875, + "y0": 330.4800109863281, + "x1": 314.2799987792969, + "y1": 364.67999267578125, + "width": 48.959991455078125, + "height": 34.199981689453125 + }, { + "x0": 265.32000732421875, + "y0": 295.20001220703125, + "x1": 314.2799987792969, + "y1": 329.760009765625, + "width": 48.959991455078125, + "height": 34.55999755859375 + }, { + "x0": 265.32000732421875, + "y0": 260.280029296875, + "x1": 314.2799987792969, + "y1": 294.8399963378906, + "width": 48.959991455078125, + "height": 34.559967041015625 + }, { + "x0": 265.32000732421875, + "y0": 225.3599853515625, + "x1": 314.2799987792969, + "y1": 259.55999755859375, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 265.32000732421875, + "y0": 190.44000244140625, + "x1": 314.2799987792969, + "y1": 224.6400146484375, + "width": 48.959991455078125, + "height": 34.20001220703125 + }, { + "x0": 238.32000732421875, + "y0": 435.96002197265625, + "x1": 264.5999755859375, + "y1": 478.79998779296875, + "width": 26.27996826171875, + "height": 42.8399658203125 + }, { + "x0": 238.32000732421875, + "y0": 400.32000732421875, + "x1": 264.5999755859375, + "y1": 434.52001953125, + "width": 26.27996826171875, + "height": 34.20001220703125 + }, { + "x0": 238.32000732421875, + "y0": 365.3999938964844, + "x1": 264.5999755859375, + "y1": 399.6000061035156, + "width": 26.27996826171875, + "height": 34.20001220703125 + }, { + "x0": 238.32000732421875, + "y0": 330.4800109863281, + "x1": 264.5999755859375, + "y1": 364.67999267578125, + "width": 26.27996826171875, + "height": 34.199981689453125 + }, { + "x0": 238.32000732421875, + "y0": 295.20001220703125, + "x1": 264.5999755859375, + "y1": 329.760009765625, + "width": 26.27996826171875, + "height": 34.55999755859375 + }, { + "x0": 238.32000732421875, + "y0": 260.280029296875, + "x1": 264.5999755859375, + "y1": 294.8399963378906, + "width": 26.27996826171875, + "height": 34.559967041015625 + }, { + "x0": 238.32000732421875, + "y0": 225.3599853515625, + "x1": 264.5999755859375, + "y1": 259.55999755859375, + "width": 26.27996826171875, + "height": 34.20001220703125 + }, { + "x0": 238.32000732421875, + "y0": 190.44000244140625, + "x1": 264.5999755859375, + "y1": 224.6400146484375, + "width": 26.27996826171875, + "height": 34.20001220703125 + }, { + "x0": 198.0, + "y0": 435.96002197265625, + "x1": 237.5999755859375, + "y1": 478.79998779296875, + "width": 39.5999755859375, + "height": 42.8399658203125 + }, { + "x0": 198.0, + "y0": 400.32000732421875, + "x1": 237.5999755859375, + "y1": 434.52001953125, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 198.0, + "y0": 365.3999938964844, + "x1": 237.5999755859375, + "y1": 399.6000061035156, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 198.0, + "y0": 330.4800109863281, + "x1": 237.5999755859375, + "y1": 364.67999267578125, + "width": 39.5999755859375, + "height": 34.199981689453125 + }, { + "x0": 198.0, + "y0": 295.20001220703125, + "x1": 237.5999755859375, + "y1": 329.760009765625, + "width": 39.5999755859375, + "height": 34.55999755859375 + }, { + "x0": 198.0, + "y0": 260.280029296875, + "x1": 237.5999755859375, + "y1": 294.8399963378906, + "width": 39.5999755859375, + "height": 34.559967041015625 + }, { + "x0": 198.0, + "y0": 225.3599853515625, + "x1": 237.5999755859375, + "y1": 259.55999755859375, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 198.0, + "y0": 190.44000244140625, + "x1": 237.5999755859375, + "y1": 224.6400146484375, + "width": 39.5999755859375, + "height": 34.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 435.96002197265625, + "x1": 197.280029296875, + "y1": 478.79998779296875, + "width": 122.4000244140625, + "height": 42.8399658203125 + }, { + "x0": 74.8800048828125, + "y0": 400.32000732421875, + "x1": 197.280029296875, + "y1": 434.52001953125, + "width": 122.4000244140625, + "height": 34.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 365.3999938964844, + "x1": 197.280029296875, + "y1": 399.6000061035156, + "width": 122.4000244140625, + "height": 34.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 330.4800109863281, + "x1": 197.280029296875, + "y1": 364.67999267578125, + "width": 122.4000244140625, + "height": 34.199981689453125 + }, { + "x0": 74.8800048828125, + "y0": 295.20001220703125, + "x1": 197.280029296875, + "y1": 329.760009765625, + "width": 122.4000244140625, + "height": 34.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 260.280029296875, + "x1": 197.280029296875, + "y1": 294.8399963378906, + "width": 122.4000244140625, + "height": 34.559967041015625 + }, { + "x0": 74.8800048828125, + "y0": 225.3599853515625, + "x1": 197.280029296875, + "y1": 259.55999755859375, + "width": 122.4000244140625, + "height": 34.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 190.44000244140625, + "x1": 197.280029296875, + "y1": 224.6400146484375, + "width": 122.4000244140625, + "height": 34.20001220703125 + } + ] + }, { + "pageInfo": { + "number": 105, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 613.4400024414062, + "y0": 431.2799987792969, + "x1": 667.4400024414062, + "y1": 446.760009765625, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 414.7200012207031, + "x1": 667.4400024414062, + "y1": 430.20001220703125, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 397.79998779296875, + "x1": 667.4400024414062, + "y1": 413.2799987792969, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 381.239990234375, + "x1": 667.4400024414062, + "y1": 396.7200012207031, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 364.32000732421875, + "x1": 667.4400024414062, + "y1": 379.79998779296875, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 347.760009765625, + "x1": 667.4400024414062, + "y1": 363.239990234375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 331.55999755859375, + "x1": 667.4400024414062, + "y1": 346.67999267578125, + "width": 54.0, + "height": 15.1199951171875 + }, { + "x0": 613.4400024414062, + "y0": 315.0, + "x1": 667.4400024414062, + "y1": 330.8399963378906, + "width": 54.0, + "height": 15.839996337890625 + }, { + "x0": 613.4400024414062, + "y0": 298.44000244140625, + "x1": 667.4400024414062, + "y1": 313.9200134277344, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 281.5199890136719, + "x1": 667.4400024414062, + "y1": 297.3599853515625, + "width": 54.0, + "height": 15.839996337890625 + }, { + "x0": 613.4400024414062, + "y0": 264.5999755859375, + "x1": 667.4400024414062, + "y1": 280.44000244140625, + "width": 54.0, + "height": 15.84002685546875 + }, { + "x0": 613.4400024414062, + "y0": 248.0400390625, + "x1": 667.4400024414062, + "y1": 263.52001953125, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 231.1199951171875, + "x1": 667.4400024414062, + "y1": 246.9599609375, + "width": 54.0, + "height": 15.8399658203125 + }, { + "x0": 613.4400024414062, + "y0": 215.280029296875, + "x1": 667.4400024414062, + "y1": 230.4000244140625, + "width": 54.0, + "height": 15.1199951171875 + }, { + "x0": 613.4400024414062, + "y0": 198.719970703125, + "x1": 667.4400024414062, + "y1": 214.20001220703125, + "width": 54.0, + "height": 15.48004150390625 + }, { + "x0": 613.4400024414062, + "y0": 182.1600341796875, + "x1": 667.4400024414062, + "y1": 197.6400146484375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 165.239990234375, + "x1": 667.4400024414062, + "y1": 180.719970703125, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 148.67999267578125, + "x1": 667.4400024414062, + "y1": 164.1600341796875, + "width": 54.0, + "height": 15.48004150390625 + }, { + "x0": 613.4400024414062, + "y0": 131.760009765625, + "x1": 667.4400024414062, + "y1": 147.239990234375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 114.8399658203125, + "x1": 667.4400024414062, + "y1": 130.67999267578125, + "width": 54.0, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 431.2799987792969, + "x1": 612.3599853515625, + "y1": 446.760009765625, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 414.7200012207031, + "x1": 612.3599853515625, + "y1": 430.20001220703125, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 397.79998779296875, + "x1": 612.3599853515625, + "y1": 413.2799987792969, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 381.239990234375, + "x1": 612.3599853515625, + "y1": 396.7200012207031, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 364.32000732421875, + "x1": 612.3599853515625, + "y1": 379.79998779296875, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 347.760009765625, + "x1": 612.3599853515625, + "y1": 363.239990234375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 331.55999755859375, + "x1": 612.3599853515625, + "y1": 346.67999267578125, + "width": 49.67999267578125, + "height": 15.1199951171875 + }, { + "x0": 562.6799926757812, + "y0": 315.0, + "x1": 612.3599853515625, + "y1": 330.8399963378906, + "width": 49.67999267578125, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 298.44000244140625, + "x1": 612.3599853515625, + "y1": 313.9200134277344, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 281.5199890136719, + "x1": 612.3599853515625, + "y1": 297.3599853515625, + "width": 49.67999267578125, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 264.5999755859375, + "x1": 612.3599853515625, + "y1": 280.44000244140625, + "width": 49.67999267578125, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 248.0400390625, + "x1": 612.3599853515625, + "y1": 263.52001953125, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 231.1199951171875, + "x1": 612.3599853515625, + "y1": 246.9599609375, + "width": 49.67999267578125, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 215.280029296875, + "x1": 612.3599853515625, + "y1": 230.4000244140625, + "width": 49.67999267578125, + "height": 15.1199951171875 + }, { + "x0": 562.6799926757812, + "y0": 198.719970703125, + "x1": 612.3599853515625, + "y1": 214.20001220703125, + "width": 49.67999267578125, + "height": 15.48004150390625 + }, { + "x0": 562.6799926757812, + "y0": 182.1600341796875, + "x1": 612.3599853515625, + "y1": 197.6400146484375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 165.239990234375, + "x1": 612.3599853515625, + "y1": 180.719970703125, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 148.67999267578125, + "x1": 612.3599853515625, + "y1": 164.1600341796875, + "width": 49.67999267578125, + "height": 15.48004150390625 + }, { + "x0": 562.6799926757812, + "y0": 131.760009765625, + "x1": 612.3599853515625, + "y1": 147.239990234375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 114.8399658203125, + "x1": 612.3599853515625, + "y1": 130.67999267578125, + "width": 49.67999267578125, + "height": 15.84002685546875 + }, { + "x0": 503.2799987792969, + "y0": 431.2799987792969, + "x1": 561.5999755859375, + "y1": 446.760009765625, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 414.7200012207031, + "x1": 561.5999755859375, + "y1": 430.20001220703125, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 397.79998779296875, + "x1": 561.5999755859375, + "y1": 413.2799987792969, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 381.239990234375, + "x1": 561.5999755859375, + "y1": 396.7200012207031, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 364.32000732421875, + "x1": 561.5999755859375, + "y1": 379.79998779296875, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 347.760009765625, + "x1": 561.5999755859375, + "y1": 363.239990234375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 331.55999755859375, + "x1": 561.5999755859375, + "y1": 346.67999267578125, + "width": 58.319976806640625, + "height": 15.1199951171875 + }, { + "x0": 503.2799987792969, + "y0": 315.0, + "x1": 561.5999755859375, + "y1": 330.8399963378906, + "width": 58.319976806640625, + "height": 15.839996337890625 + }, { + "x0": 503.2799987792969, + "y0": 298.44000244140625, + "x1": 561.5999755859375, + "y1": 313.9200134277344, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 281.5199890136719, + "x1": 561.5999755859375, + "y1": 297.3599853515625, + "width": 58.319976806640625, + "height": 15.839996337890625 + }, { + "x0": 503.2799987792969, + "y0": 264.5999755859375, + "x1": 561.5999755859375, + "y1": 280.44000244140625, + "width": 58.319976806640625, + "height": 15.84002685546875 + }, { + "x0": 503.2799987792969, + "y0": 248.0400390625, + "x1": 561.5999755859375, + "y1": 263.52001953125, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 231.1199951171875, + "x1": 561.5999755859375, + "y1": 246.9599609375, + "width": 58.319976806640625, + "height": 15.8399658203125 + }, { + "x0": 503.2799987792969, + "y0": 215.280029296875, + "x1": 561.5999755859375, + "y1": 230.4000244140625, + "width": 58.319976806640625, + "height": 15.1199951171875 + }, { + "x0": 503.2799987792969, + "y0": 198.719970703125, + "x1": 561.5999755859375, + "y1": 214.20001220703125, + "width": 58.319976806640625, + "height": 15.48004150390625 + }, { + "x0": 503.2799987792969, + "y0": 182.1600341796875, + "x1": 561.5999755859375, + "y1": 197.6400146484375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 165.239990234375, + "x1": 561.5999755859375, + "y1": 180.719970703125, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 148.67999267578125, + "x1": 561.5999755859375, + "y1": 164.1600341796875, + "width": 58.319976806640625, + "height": 15.48004150390625 + }, { + "x0": 503.2799987792969, + "y0": 131.760009765625, + "x1": 561.5999755859375, + "y1": 147.239990234375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 114.8399658203125, + "x1": 561.5999755859375, + "y1": 130.67999267578125, + "width": 58.319976806640625, + "height": 15.84002685546875 + }, { + "x0": 403.55999755859375, + "y0": 431.2799987792969, + "x1": 502.20001220703125, + "y1": 446.760009765625, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 414.7200012207031, + "x1": 502.20001220703125, + "y1": 430.20001220703125, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 397.79998779296875, + "x1": 502.20001220703125, + "y1": 413.2799987792969, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 381.239990234375, + "x1": 502.20001220703125, + "y1": 396.7200012207031, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 364.32000732421875, + "x1": 502.20001220703125, + "y1": 379.79998779296875, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 347.760009765625, + "x1": 502.20001220703125, + "y1": 363.239990234375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 331.55999755859375, + "x1": 502.20001220703125, + "y1": 346.67999267578125, + "width": 98.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 403.55999755859375, + "y0": 315.0, + "x1": 502.20001220703125, + "y1": 330.8399963378906, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 403.55999755859375, + "y0": 298.44000244140625, + "x1": 502.20001220703125, + "y1": 313.9200134277344, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 281.5199890136719, + "x1": 502.20001220703125, + "y1": 297.3599853515625, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 403.55999755859375, + "y0": 264.5999755859375, + "x1": 502.20001220703125, + "y1": 280.44000244140625, + "width": 98.6400146484375, + "height": 15.84002685546875 + }, { + "x0": 403.55999755859375, + "y0": 248.0400390625, + "x1": 502.20001220703125, + "y1": 263.52001953125, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 231.1199951171875, + "x1": 502.20001220703125, + "y1": 246.9599609375, + "width": 98.6400146484375, + "height": 15.8399658203125 + }, { + "x0": 403.55999755859375, + "y0": 215.280029296875, + "x1": 502.20001220703125, + "y1": 230.4000244140625, + "width": 98.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 403.55999755859375, + "y0": 198.719970703125, + "x1": 502.20001220703125, + "y1": 214.20001220703125, + "width": 98.6400146484375, + "height": 15.48004150390625 + }, { + "x0": 403.55999755859375, + "y0": 182.1600341796875, + "x1": 502.20001220703125, + "y1": 197.6400146484375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 165.239990234375, + "x1": 502.20001220703125, + "y1": 180.719970703125, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 148.67999267578125, + "x1": 502.20001220703125, + "y1": 164.1600341796875, + "width": 98.6400146484375, + "height": 15.48004150390625 + }, { + "x0": 403.55999755859375, + "y0": 131.760009765625, + "x1": 502.20001220703125, + "y1": 147.239990234375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 114.8399658203125, + "x1": 502.20001220703125, + "y1": 130.67999267578125, + "width": 98.6400146484375, + "height": 15.84002685546875 + }, { + "x0": 385.55999755859375, + "y0": 331.20001220703125, + "x1": 402.8399963378906, + "y1": 347.0400085449219, + "width": 17.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 385.55999755859375, + "y0": 214.9200439453125, + "x1": 402.8399963378906, + "y1": 230.760009765625, + "width": 17.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 385.9200134277344, + "y0": 315.0, + "x1": 402.4800109863281, + "y1": 330.8399963378906, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 385.9200134277344, + "y0": 281.5199890136719, + "x1": 402.4800109863281, + "y1": 297.3599853515625, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 385.9200134277344, + "y0": 264.5999755859375, + "x1": 402.4800109863281, + "y1": 280.44000244140625, + "width": 16.55999755859375, + "height": 15.84002685546875 + }, { + "x0": 385.9200134277344, + "y0": 231.1199951171875, + "x1": 402.4800109863281, + "y1": 246.9599609375, + "width": 16.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 385.9200134277344, + "y0": 114.8399658203125, + "x1": 402.4800109863281, + "y1": 130.67999267578125, + "width": 16.55999755859375, + "height": 15.84002685546875 + }, { + "x0": 338.0400085449219, + "y0": 431.2799987792969, + "x1": 384.8399963378906, + "y1": 446.760009765625, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 414.7200012207031, + "x1": 384.8399963378906, + "y1": 430.20001220703125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 397.79998779296875, + "x1": 384.8399963378906, + "y1": 413.2799987792969, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 381.239990234375, + "x1": 384.8399963378906, + "y1": 396.7200012207031, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 364.32000732421875, + "x1": 384.8399963378906, + "y1": 379.79998779296875, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 347.760009765625, + "x1": 384.8399963378906, + "y1": 363.239990234375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 331.55999755859375, + "x1": 384.8399963378906, + "y1": 346.67999267578125, + "width": 46.79998779296875, + "height": 15.1199951171875 + }, { + "x0": 338.0400085449219, + "y0": 315.0, + "x1": 384.8399963378906, + "y1": 330.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 338.0400085449219, + "y0": 298.44000244140625, + "x1": 384.8399963378906, + "y1": 313.9200134277344, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 281.5199890136719, + "x1": 384.8399963378906, + "y1": 297.3599853515625, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 338.0400085449219, + "y0": 264.5999755859375, + "x1": 384.8399963378906, + "y1": 280.44000244140625, + "width": 46.79998779296875, + "height": 15.84002685546875 + }, { + "x0": 338.0400085449219, + "y0": 248.0400390625, + "x1": 384.8399963378906, + "y1": 263.52001953125, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 231.1199951171875, + "x1": 384.8399963378906, + "y1": 246.9599609375, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 338.0400085449219, + "y0": 215.280029296875, + "x1": 384.8399963378906, + "y1": 230.4000244140625, + "width": 46.79998779296875, + "height": 15.1199951171875 + }, { + "x0": 338.0400085449219, + "y0": 198.719970703125, + "x1": 384.8399963378906, + "y1": 214.20001220703125, + "width": 46.79998779296875, + "height": 15.48004150390625 + }, { + "x0": 338.0400085449219, + "y0": 182.1600341796875, + "x1": 384.8399963378906, + "y1": 197.6400146484375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 165.239990234375, + "x1": 384.8399963378906, + "y1": 180.719970703125, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 148.67999267578125, + "x1": 384.8399963378906, + "y1": 164.1600341796875, + "width": 46.79998779296875, + "height": 15.48004150390625 + }, { + "x0": 338.0400085449219, + "y0": 131.760009765625, + "x1": 384.8399963378906, + "y1": 147.239990234375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 114.8399658203125, + "x1": 384.8399963378906, + "y1": 130.67999267578125, + "width": 46.79998779296875, + "height": 15.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 431.2799987792969, + "x1": 336.9599914550781, + "y1": 446.760009765625, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 414.7200012207031, + "x1": 336.9599914550781, + "y1": 430.20001220703125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 397.79998779296875, + "x1": 336.9599914550781, + "y1": 413.2799987792969, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 381.239990234375, + "x1": 336.9599914550781, + "y1": 396.7200012207031, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 364.32000732421875, + "x1": 336.9599914550781, + "y1": 379.79998779296875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 347.760009765625, + "x1": 336.9599914550781, + "y1": 363.239990234375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 331.55999755859375, + "x1": 336.9599914550781, + "y1": 346.67999267578125, + "width": 53.279998779296875, + "height": 15.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 315.0, + "x1": 336.9599914550781, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 283.67999267578125, + "y0": 298.44000244140625, + "x1": 336.9599914550781, + "y1": 313.9200134277344, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 281.5199890136719, + "x1": 336.9599914550781, + "y1": 297.3599853515625, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 283.67999267578125, + "y0": 264.5999755859375, + "x1": 336.9599914550781, + "y1": 280.44000244140625, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 248.0400390625, + "x1": 336.9599914550781, + "y1": 263.52001953125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 231.1199951171875, + "x1": 336.9599914550781, + "y1": 246.9599609375, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 283.67999267578125, + "y0": 215.280029296875, + "x1": 336.9599914550781, + "y1": 230.4000244140625, + "width": 53.279998779296875, + "height": 15.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 198.719970703125, + "x1": 336.9599914550781, + "y1": 214.20001220703125, + "width": 53.279998779296875, + "height": 15.48004150390625 + }, { + "x0": 283.67999267578125, + "y0": 182.1600341796875, + "x1": 336.9599914550781, + "y1": 197.6400146484375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 165.239990234375, + "x1": 336.9599914550781, + "y1": 180.719970703125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 148.67999267578125, + "x1": 336.9599914550781, + "y1": 164.1600341796875, + "width": 53.279998779296875, + "height": 15.48004150390625 + }, { + "x0": 283.67999267578125, + "y0": 131.760009765625, + "x1": 336.9599914550781, + "y1": 147.239990234375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 114.8399658203125, + "x1": 336.9599914550781, + "y1": 130.67999267578125, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 227.52001953125, + "y0": 431.2799987792969, + "x1": 282.239990234375, + "y1": 446.760009765625, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 414.7200012207031, + "x1": 282.239990234375, + "y1": 430.20001220703125, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 397.79998779296875, + "x1": 282.239990234375, + "y1": 413.2799987792969, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 381.239990234375, + "x1": 282.239990234375, + "y1": 396.7200012207031, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 364.32000732421875, + "x1": 282.239990234375, + "y1": 379.79998779296875, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 347.760009765625, + "x1": 282.239990234375, + "y1": 363.239990234375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 331.55999755859375, + "x1": 282.239990234375, + "y1": 346.67999267578125, + "width": 54.719970703125, + "height": 15.1199951171875 + }, { + "x0": 227.52001953125, + "y0": 315.0, + "x1": 282.239990234375, + "y1": 330.8399963378906, + "width": 54.719970703125, + "height": 15.839996337890625 + }, { + "x0": 227.52001953125, + "y0": 298.44000244140625, + "x1": 282.239990234375, + "y1": 313.9200134277344, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 281.5199890136719, + "x1": 282.239990234375, + "y1": 297.3599853515625, + "width": 54.719970703125, + "height": 15.839996337890625 + }, { + "x0": 227.52001953125, + "y0": 264.5999755859375, + "x1": 282.239990234375, + "y1": 280.44000244140625, + "width": 54.719970703125, + "height": 15.84002685546875 + }, { + "x0": 227.52001953125, + "y0": 248.0400390625, + "x1": 282.239990234375, + "y1": 263.52001953125, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 231.1199951171875, + "x1": 282.239990234375, + "y1": 246.9599609375, + "width": 54.719970703125, + "height": 15.8399658203125 + }, { + "x0": 227.52001953125, + "y0": 215.280029296875, + "x1": 282.239990234375, + "y1": 230.4000244140625, + "width": 54.719970703125, + "height": 15.1199951171875 + }, { + "x0": 227.52001953125, + "y0": 198.719970703125, + "x1": 282.239990234375, + "y1": 214.20001220703125, + "width": 54.719970703125, + "height": 15.48004150390625 + }, { + "x0": 227.52001953125, + "y0": 182.1600341796875, + "x1": 282.239990234375, + "y1": 197.6400146484375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 165.239990234375, + "x1": 282.239990234375, + "y1": 180.719970703125, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 148.67999267578125, + "x1": 282.239990234375, + "y1": 164.1600341796875, + "width": 54.719970703125, + "height": 15.48004150390625 + }, { + "x0": 227.52001953125, + "y0": 131.760009765625, + "x1": 282.239990234375, + "y1": 147.239990234375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 114.8399658203125, + "x1": 282.239990234375, + "y1": 130.67999267578125, + "width": 54.719970703125, + "height": 15.84002685546875 + }, { + "x0": 123.84002685546875, + "y0": 431.2799987792969, + "x1": 226.44000244140625, + "y1": 446.760009765625, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 414.7200012207031, + "x1": 226.44000244140625, + "y1": 430.20001220703125, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 397.79998779296875, + "x1": 226.44000244140625, + "y1": 413.2799987792969, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 381.239990234375, + "x1": 226.44000244140625, + "y1": 396.7200012207031, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 364.32000732421875, + "x1": 226.44000244140625, + "y1": 379.79998779296875, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 347.760009765625, + "x1": 226.44000244140625, + "y1": 363.239990234375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 331.55999755859375, + "x1": 226.44000244140625, + "y1": 346.67999267578125, + "width": 102.5999755859375, + "height": 15.1199951171875 + }, { + "x0": 123.84002685546875, + "y0": 315.0, + "x1": 226.44000244140625, + "y1": 330.8399963378906, + "width": 102.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 123.84002685546875, + "y0": 298.44000244140625, + "x1": 226.44000244140625, + "y1": 313.9200134277344, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 281.5199890136719, + "x1": 226.44000244140625, + "y1": 297.3599853515625, + "width": 102.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 123.84002685546875, + "y0": 264.5999755859375, + "x1": 226.44000244140625, + "y1": 280.44000244140625, + "width": 102.5999755859375, + "height": 15.84002685546875 + }, { + "x0": 123.84002685546875, + "y0": 248.0400390625, + "x1": 226.44000244140625, + "y1": 263.52001953125, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 231.1199951171875, + "x1": 226.44000244140625, + "y1": 246.9599609375, + "width": 102.5999755859375, + "height": 15.8399658203125 + }, { + "x0": 123.84002685546875, + "y0": 215.280029296875, + "x1": 226.44000244140625, + "y1": 230.4000244140625, + "width": 102.5999755859375, + "height": 15.1199951171875 + }, { + "x0": 123.84002685546875, + "y0": 198.719970703125, + "x1": 226.44000244140625, + "y1": 214.20001220703125, + "width": 102.5999755859375, + "height": 15.48004150390625 + }, { + "x0": 123.84002685546875, + "y0": 182.1600341796875, + "x1": 226.44000244140625, + "y1": 197.6400146484375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 165.239990234375, + "x1": 226.44000244140625, + "y1": 180.719970703125, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 148.67999267578125, + "x1": 226.44000244140625, + "y1": 164.1600341796875, + "width": 102.5999755859375, + "height": 15.48004150390625 + }, { + "x0": 123.84002685546875, + "y0": 131.760009765625, + "x1": 226.44000244140625, + "y1": 147.239990234375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 114.8399658203125, + "x1": 226.44000244140625, + "y1": 130.67999267578125, + "width": 102.5999755859375, + "height": 15.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 106, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 611.280029296875, + "y0": 430.91998291015625, + "x1": 664.9199829101562, + "y1": 446.3999938964844, + "width": 53.63995361328125, + "height": 15.480010986328125 + }, { + "x0": 611.280029296875, + "y0": 414.0, + "x1": 664.9199829101562, + "y1": 429.8399963378906, + "width": 53.63995361328125, + "height": 15.839996337890625 + }, { + "x0": 611.280029296875, + "y0": 397.44000244140625, + "x1": 664.9199829101562, + "y1": 412.91998291015625, + "width": 53.63995361328125, + "height": 15.47998046875 + }, { + "x0": 611.280029296875, + "y0": 380.52001953125, + "x1": 664.9199829101562, + "y1": 396.3599853515625, + "width": 53.63995361328125, + "height": 15.8399658203125 + }, { + "x0": 611.280029296875, + "y0": 363.96002197265625, + "x1": 664.9199829101562, + "y1": 379.44000244140625, + "width": 53.63995361328125, + "height": 15.47998046875 + }, { + "x0": 611.280029296875, + "y0": 347.0400085449219, + "x1": 664.9199829101562, + "y1": 362.52001953125, + "width": 53.63995361328125, + "height": 15.480010986328125 + }, { + "x0": 558.3599853515625, + "y0": 430.91998291015625, + "x1": 609.8399658203125, + "y1": 446.3999938964844, + "width": 51.47998046875, + "height": 15.480010986328125 + }, { + "x0": 558.3599853515625, + "y0": 414.0, + "x1": 609.8399658203125, + "y1": 429.8399963378906, + "width": 51.47998046875, + "height": 15.839996337890625 + }, { + "x0": 558.3599853515625, + "y0": 397.44000244140625, + "x1": 609.8399658203125, + "y1": 412.91998291015625, + "width": 51.47998046875, + "height": 15.47998046875 + }, { + "x0": 558.3599853515625, + "y0": 380.52001953125, + "x1": 609.8399658203125, + "y1": 396.3599853515625, + "width": 51.47998046875, + "height": 15.8399658203125 + }, { + "x0": 558.3599853515625, + "y0": 363.96002197265625, + "x1": 609.8399658203125, + "y1": 379.44000244140625, + "width": 51.47998046875, + "height": 15.47998046875 + }, { + "x0": 558.3599853515625, + "y0": 347.0400085449219, + "x1": 609.8399658203125, + "y1": 362.52001953125, + "width": 51.47998046875, + "height": 15.480010986328125 + }, { + "x0": 501.1199951171875, + "y0": 430.91998291015625, + "x1": 557.280029296875, + "y1": 446.3999938964844, + "width": 56.1600341796875, + "height": 15.480010986328125 + }, { + "x0": 501.1199951171875, + "y0": 414.0, + "x1": 557.280029296875, + "y1": 429.8399963378906, + "width": 56.1600341796875, + "height": 15.839996337890625 + }, { + "x0": 501.1199951171875, + "y0": 397.44000244140625, + "x1": 557.280029296875, + "y1": 412.91998291015625, + "width": 56.1600341796875, + "height": 15.47998046875 + }, { + "x0": 501.1199951171875, + "y0": 380.52001953125, + "x1": 557.280029296875, + "y1": 396.3599853515625, + "width": 56.1600341796875, + "height": 15.8399658203125 + }, { + "x0": 501.1199951171875, + "y0": 363.96002197265625, + "x1": 557.280029296875, + "y1": 379.44000244140625, + "width": 56.1600341796875, + "height": 15.47998046875 + }, { + "x0": 501.1199951171875, + "y0": 347.0400085449219, + "x1": 557.280029296875, + "y1": 362.52001953125, + "width": 56.1600341796875, + "height": 15.480010986328125 + }, { + "x0": 401.3999938964844, + "y0": 430.91998291015625, + "x1": 500.0400085449219, + "y1": 446.3999938964844, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 401.3999938964844, + "y0": 414.0, + "x1": 500.0400085449219, + "y1": 429.8399963378906, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 401.3999938964844, + "y0": 397.44000244140625, + "x1": 500.0400085449219, + "y1": 412.91998291015625, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 401.3999938964844, + "y0": 380.52001953125, + "x1": 500.0400085449219, + "y1": 396.3599853515625, + "width": 98.6400146484375, + "height": 15.8399658203125 + }, { + "x0": 401.3999938964844, + "y0": 363.96002197265625, + "x1": 500.0400085449219, + "y1": 379.44000244140625, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 401.3999938964844, + "y0": 347.0400085449219, + "x1": 500.0400085449219, + "y1": 362.52001953125, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 383.760009765625, + "y0": 414.0, + "x1": 400.32000732421875, + "y1": 429.8399963378906, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 383.760009765625, + "y0": 380.52001953125, + "x1": 400.32000732421875, + "y1": 396.3599853515625, + "width": 16.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 335.8800048828125, + "y0": 430.91998291015625, + "x1": 382.67999267578125, + "y1": 446.3999938964844, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 335.8800048828125, + "y0": 414.0, + "x1": 382.67999267578125, + "y1": 429.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 335.8800048828125, + "y0": 397.44000244140625, + "x1": 382.67999267578125, + "y1": 412.91998291015625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 335.8800048828125, + "y0": 380.52001953125, + "x1": 382.67999267578125, + "y1": 396.3599853515625, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 335.8800048828125, + "y0": 363.96002197265625, + "x1": 382.67999267578125, + "y1": 379.44000244140625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 335.8800048828125, + "y0": 347.0400085449219, + "x1": 382.67999267578125, + "y1": 362.52001953125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 281.1600036621094, + "y0": 430.91998291015625, + "x1": 334.79998779296875, + "y1": 446.3999938964844, + "width": 53.639984130859375, + "height": 15.480010986328125 + }, { + "x0": 281.1600036621094, + "y0": 414.0, + "x1": 334.79998779296875, + "y1": 429.8399963378906, + "width": 53.639984130859375, + "height": 15.839996337890625 + }, { + "x0": 281.1600036621094, + "y0": 397.44000244140625, + "x1": 334.79998779296875, + "y1": 412.91998291015625, + "width": 53.639984130859375, + "height": 15.47998046875 + }, { + "x0": 281.1600036621094, + "y0": 380.52001953125, + "x1": 334.79998779296875, + "y1": 396.3599853515625, + "width": 53.639984130859375, + "height": 15.8399658203125 + }, { + "x0": 281.1600036621094, + "y0": 363.96002197265625, + "x1": 334.79998779296875, + "y1": 379.44000244140625, + "width": 53.639984130859375, + "height": 15.47998046875 + }, { + "x0": 281.1600036621094, + "y0": 347.0400085449219, + "x1": 334.79998779296875, + "y1": 362.52001953125, + "width": 53.639984130859375, + "height": 15.480010986328125 + }, { + "x0": 225.3599853515625, + "y0": 430.91998291015625, + "x1": 280.0799865722656, + "y1": 446.3999938964844, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 225.3599853515625, + "y0": 414.0, + "x1": 280.0799865722656, + "y1": 429.8399963378906, + "width": 54.720001220703125, + "height": 15.839996337890625 + }, { + "x0": 225.3599853515625, + "y0": 397.44000244140625, + "x1": 280.0799865722656, + "y1": 412.91998291015625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 225.3599853515625, + "y0": 380.52001953125, + "x1": 280.0799865722656, + "y1": 396.3599853515625, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 225.3599853515625, + "y0": 363.96002197265625, + "x1": 280.0799865722656, + "y1": 379.44000244140625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 225.3599853515625, + "y0": 347.0400085449219, + "x1": 280.0799865722656, + "y1": 362.52001953125, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 126.3599853515625, + "y0": 430.91998291015625, + "x1": 223.91998291015625, + "y1": 446.3999938964844, + "width": 97.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 126.3599853515625, + "y0": 414.0, + "x1": 223.91998291015625, + "y1": 429.8399963378906, + "width": 97.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 126.3599853515625, + "y0": 397.44000244140625, + "x1": 223.91998291015625, + "y1": 412.91998291015625, + "width": 97.55999755859375, + "height": 15.47998046875 + }, { + "x0": 126.3599853515625, + "y0": 380.52001953125, + "x1": 223.91998291015625, + "y1": 396.3599853515625, + "width": 97.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 126.3599853515625, + "y0": 363.96002197265625, + "x1": 223.91998291015625, + "y1": 379.44000244140625, + "width": 97.55999755859375, + "height": 15.47998046875 + }, { + "x0": 126.3599853515625, + "y0": 347.0400085449219, + "x1": 223.91998291015625, + "y1": 362.52001953125, + "width": 97.55999755859375, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 107, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 563.4000244140625, + "y0": 454.67999267578125, + "x1": 710.6400146484375, + "y1": 475.55999755859375, + "width": 147.239990234375, + "height": 20.8800048828125 + }, { + "x0": 675.0, + "y0": 432.7200012207031, + "x1": 710.6400146484375, + "y1": 454.32000732421875, + "width": 35.6400146484375, + "height": 21.600006103515625 + }, { + "x0": 675.0, + "y0": 406.44000244140625, + "x1": 710.6400146484375, + "y1": 431.6400146484375, + "width": 35.6400146484375, + "height": 25.20001220703125 + }, { + "x0": 675.0, + "y0": 380.1600036621094, + "x1": 710.6400146484375, + "y1": 405.7200012207031, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 354.239990234375, + "x1": 710.6400146484375, + "y1": 379.79998779296875, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 328.32000732421875, + "x1": 710.6400146484375, + "y1": 353.5199890136719, + "width": 35.6400146484375, + "height": 25.199981689453125 + }, { + "x0": 675.0, + "y0": 302.3999938964844, + "x1": 710.6400146484375, + "y1": 327.6000061035156, + "width": 35.6400146484375, + "height": 25.20001220703125 + }, { + "x0": 675.0, + "y0": 276.1199951171875, + "x1": 710.6400146484375, + "y1": 301.67999267578125, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 250.20001220703125, + "x1": 710.6400146484375, + "y1": 275.760009765625, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 223.55999755859375, + "x1": 710.6400146484375, + "y1": 249.47998046875, + "width": 35.6400146484375, + "height": 25.91998291015625 + }, { + "x0": 636.47998046875, + "y0": 432.7200012207031, + "x1": 674.280029296875, + "y1": 454.32000732421875, + "width": 37.800048828125, + "height": 21.600006103515625 + }, { + "x0": 636.47998046875, + "y0": 406.44000244140625, + "x1": 674.280029296875, + "y1": 431.6400146484375, + "width": 37.800048828125, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 380.1600036621094, + "x1": 674.280029296875, + "y1": 405.7200012207031, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 354.239990234375, + "x1": 674.280029296875, + "y1": 379.79998779296875, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 328.32000732421875, + "x1": 674.280029296875, + "y1": 353.5199890136719, + "width": 37.800048828125, + "height": 25.199981689453125 + }, { + "x0": 636.47998046875, + "y0": 302.3999938964844, + "x1": 674.280029296875, + "y1": 327.6000061035156, + "width": 37.800048828125, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 276.1199951171875, + "x1": 674.280029296875, + "y1": 301.67999267578125, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 250.20001220703125, + "x1": 674.280029296875, + "y1": 275.760009765625, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 223.55999755859375, + "x1": 674.280029296875, + "y1": 249.47998046875, + "width": 37.800048828125, + "height": 25.91998291015625 + }, { + "x0": 601.9199829101562, + "y0": 432.7200012207031, + "x1": 635.760009765625, + "y1": 454.32000732421875, + "width": 33.84002685546875, + "height": 21.600006103515625 + }, { + "x0": 601.9199829101562, + "y0": 406.44000244140625, + "x1": 635.760009765625, + "y1": 431.6400146484375, + "width": 33.84002685546875, + "height": 25.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 380.1600036621094, + "x1": 635.760009765625, + "y1": 405.7200012207031, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 354.239990234375, + "x1": 635.760009765625, + "y1": 379.79998779296875, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 328.32000732421875, + "x1": 635.760009765625, + "y1": 353.5199890136719, + "width": 33.84002685546875, + "height": 25.199981689453125 + }, { + "x0": 601.9199829101562, + "y0": 302.3999938964844, + "x1": 635.760009765625, + "y1": 327.6000061035156, + "width": 33.84002685546875, + "height": 25.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 276.1199951171875, + "x1": 635.760009765625, + "y1": 301.67999267578125, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 250.20001220703125, + "x1": 635.760009765625, + "y1": 275.760009765625, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 223.55999755859375, + "x1": 635.760009765625, + "y1": 249.47998046875, + "width": 33.84002685546875, + "height": 25.91998291015625 + }, { + "x0": 563.4000244140625, + "y0": 432.7200012207031, + "x1": 601.2000122070312, + "y1": 454.32000732421875, + "width": 37.79998779296875, + "height": 21.600006103515625 + }, { + "x0": 563.4000244140625, + "y0": 406.44000244140625, + "x1": 601.2000122070312, + "y1": 431.6400146484375, + "width": 37.79998779296875, + "height": 25.20001220703125 + }, { + "x0": 563.4000244140625, + "y0": 380.1600036621094, + "x1": 601.2000122070312, + "y1": 405.7200012207031, + "width": 37.79998779296875, + "height": 25.55999755859375 + }, { + "x0": 563.4000244140625, + "y0": 354.239990234375, + "x1": 601.2000122070312, + "y1": 379.79998779296875, + "width": 37.79998779296875, + "height": 25.55999755859375 + }, { + "x0": 563.4000244140625, + "y0": 328.32000732421875, + "x1": 601.2000122070312, + "y1": 353.5199890136719, + "width": 37.79998779296875, + "height": 25.199981689453125 + }, { + "x0": 563.4000244140625, + "y0": 302.3999938964844, + "x1": 601.2000122070312, + "y1": 327.6000061035156, + "width": 37.79998779296875, + "height": 25.20001220703125 + }, { + "x0": 563.4000244140625, + "y0": 276.1199951171875, + "x1": 601.2000122070312, + "y1": 301.67999267578125, + "width": 37.79998779296875, + "height": 25.55999755859375 + }, { + "x0": 563.4000244140625, + "y0": 250.20001220703125, + "x1": 601.2000122070312, + "y1": 275.760009765625, + "width": 37.79998779296875, + "height": 25.55999755859375 + }, { + "x0": 563.4000244140625, + "y0": 223.55999755859375, + "x1": 601.2000122070312, + "y1": 249.47998046875, + "width": 37.79998779296875, + "height": 25.91998291015625 + }, { + "x0": 526.6799926757812, + "y0": 432.7200012207031, + "x1": 562.6799926757812, + "y1": 454.32000732421875, + "width": 36.0, + "height": 21.600006103515625 + }, { + "x0": 526.6799926757812, + "y0": 406.44000244140625, + "x1": 562.6799926757812, + "y1": 431.6400146484375, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 526.6799926757812, + "y0": 380.1600036621094, + "x1": 562.6799926757812, + "y1": 405.7200012207031, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 354.239990234375, + "x1": 562.6799926757812, + "y1": 379.79998779296875, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 328.32000732421875, + "x1": 562.6799926757812, + "y1": 353.5199890136719, + "width": 36.0, + "height": 25.199981689453125 + }, { + "x0": 526.6799926757812, + "y0": 302.3999938964844, + "x1": 562.6799926757812, + "y1": 327.6000061035156, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 526.6799926757812, + "y0": 276.1199951171875, + "x1": 562.6799926757812, + "y1": 301.67999267578125, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 250.20001220703125, + "x1": 562.6799926757812, + "y1": 275.760009765625, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 223.55999755859375, + "x1": 562.6799926757812, + "y1": 249.47998046875, + "width": 36.0, + "height": 25.91998291015625 + }, { + "x0": 405.3599853515625, + "y0": 454.67999267578125, + "x1": 562.3200073242188, + "y1": 475.55999755859375, + "width": 156.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 486.0, + "y0": 432.7200012207031, + "x1": 525.9599609375, + "y1": 454.32000732421875, + "width": 39.9599609375, + "height": 21.600006103515625 + }, { + "x0": 486.0, + "y0": 406.44000244140625, + "x1": 525.9599609375, + "y1": 431.6400146484375, + "width": 39.9599609375, + "height": 25.20001220703125 + }, { + "x0": 486.0, + "y0": 380.1600036621094, + "x1": 525.9599609375, + "y1": 405.7200012207031, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 354.239990234375, + "x1": 525.9599609375, + "y1": 379.79998779296875, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 328.32000732421875, + "x1": 525.9599609375, + "y1": 353.5199890136719, + "width": 39.9599609375, + "height": 25.199981689453125 + }, { + "x0": 486.0, + "y0": 302.3999938964844, + "x1": 525.9599609375, + "y1": 327.6000061035156, + "width": 39.9599609375, + "height": 25.20001220703125 + }, { + "x0": 486.0, + "y0": 276.1199951171875, + "x1": 525.9599609375, + "y1": 301.67999267578125, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 250.20001220703125, + "x1": 525.9599609375, + "y1": 275.760009765625, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 223.55999755859375, + "x1": 525.9599609375, + "y1": 249.47998046875, + "width": 39.9599609375, + "height": 25.91998291015625 + }, { + "x0": 445.67999267578125, + "y0": 432.7200012207031, + "x1": 485.2799987792969, + "y1": 454.32000732421875, + "width": 39.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 445.67999267578125, + "y0": 406.44000244140625, + "x1": 485.2799987792969, + "y1": 431.6400146484375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 380.1600036621094, + "x1": 485.2799987792969, + "y1": 405.7200012207031, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 354.239990234375, + "x1": 485.2799987792969, + "y1": 379.79998779296875, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 328.32000732421875, + "x1": 485.2799987792969, + "y1": 353.5199890136719, + "width": 39.600006103515625, + "height": 25.199981689453125 + }, { + "x0": 445.67999267578125, + "y0": 302.3999938964844, + "x1": 485.2799987792969, + "y1": 327.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 276.1199951171875, + "x1": 485.2799987792969, + "y1": 301.67999267578125, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 250.20001220703125, + "x1": 485.2799987792969, + "y1": 275.760009765625, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 223.55999755859375, + "x1": 485.2799987792969, + "y1": 249.47998046875, + "width": 39.600006103515625, + "height": 25.91998291015625 + }, { + "x0": 405.3599853515625, + "y0": 432.7200012207031, + "x1": 444.9599914550781, + "y1": 454.32000732421875, + "width": 39.600006103515625, + "height": 21.600006103515625 + }, { + "x0": 405.3599853515625, + "y0": 406.44000244140625, + "x1": 444.9599914550781, + "y1": 431.6400146484375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 405.3599853515625, + "y0": 380.1600036621094, + "x1": 444.9599914550781, + "y1": 405.7200012207031, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 354.239990234375, + "x1": 444.9599914550781, + "y1": 379.79998779296875, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 328.32000732421875, + "x1": 444.9599914550781, + "y1": 353.5199890136719, + "width": 39.600006103515625, + "height": 25.199981689453125 + }, { + "x0": 405.3599853515625, + "y0": 302.3999938964844, + "x1": 444.9599914550781, + "y1": 327.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 405.3599853515625, + "y0": 276.1199951171875, + "x1": 444.9599914550781, + "y1": 301.67999267578125, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 250.20001220703125, + "x1": 444.9599914550781, + "y1": 275.760009765625, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 223.55999755859375, + "x1": 444.9599914550781, + "y1": 249.47998046875, + "width": 39.600006103515625, + "height": 25.91998291015625 + }, { + "x0": 360.0, + "y0": 432.7200012207031, + "x1": 403.9200134277344, + "y1": 475.55999755859375, + "width": 43.920013427734375, + "height": 42.839996337890625 + }, { + "x0": 360.0, + "y0": 406.44000244140625, + "x1": 403.9200134277344, + "y1": 431.6400146484375, + "width": 43.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 360.0, + "y0": 380.1600036621094, + "x1": 403.9200134277344, + "y1": 405.7200012207031, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 354.239990234375, + "x1": 403.9200134277344, + "y1": 379.79998779296875, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 328.32000732421875, + "x1": 403.9200134277344, + "y1": 353.5199890136719, + "width": 43.920013427734375, + "height": 25.199981689453125 + }, { + "x0": 360.0, + "y0": 302.3999938964844, + "x1": 403.9200134277344, + "y1": 327.6000061035156, + "width": 43.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 360.0, + "y0": 276.1199951171875, + "x1": 403.9200134277344, + "y1": 301.67999267578125, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 250.20001220703125, + "x1": 403.9200134277344, + "y1": 275.760009765625, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 223.55999755859375, + "x1": 403.9200134277344, + "y1": 249.47998046875, + "width": 43.920013427734375, + "height": 25.91998291015625 + }, { + "x0": 310.67999267578125, + "y0": 432.7200012207031, + "x1": 359.2799987792969, + "y1": 475.55999755859375, + "width": 48.600006103515625, + "height": 42.839996337890625 + }, { + "x0": 310.67999267578125, + "y0": 406.44000244140625, + "x1": 359.2799987792969, + "y1": 431.6400146484375, + "width": 48.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 310.67999267578125, + "y0": 380.1600036621094, + "x1": 359.2799987792969, + "y1": 405.7200012207031, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 354.239990234375, + "x1": 359.2799987792969, + "y1": 379.79998779296875, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 328.32000732421875, + "x1": 359.2799987792969, + "y1": 353.5199890136719, + "width": 48.600006103515625, + "height": 25.199981689453125 + }, { + "x0": 310.67999267578125, + "y0": 302.3999938964844, + "x1": 359.2799987792969, + "y1": 327.6000061035156, + "width": 48.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 310.67999267578125, + "y0": 276.1199951171875, + "x1": 359.2799987792969, + "y1": 301.67999267578125, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 250.20001220703125, + "x1": 359.2799987792969, + "y1": 275.760009765625, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 223.55999755859375, + "x1": 359.2799987792969, + "y1": 249.47998046875, + "width": 48.600006103515625, + "height": 25.91998291015625 + }, { + "x0": 261.0, + "y0": 432.7200012207031, + "x1": 309.9599914550781, + "y1": 475.55999755859375, + "width": 48.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 261.0, + "y0": 406.44000244140625, + "x1": 309.9599914550781, + "y1": 431.6400146484375, + "width": 48.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 261.0, + "y0": 380.1600036621094, + "x1": 309.9599914550781, + "y1": 405.7200012207031, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 354.239990234375, + "x1": 309.9599914550781, + "y1": 379.79998779296875, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 328.32000732421875, + "x1": 309.9599914550781, + "y1": 353.5199890136719, + "width": 48.959991455078125, + "height": 25.199981689453125 + }, { + "x0": 261.0, + "y0": 302.3999938964844, + "x1": 309.9599914550781, + "y1": 327.6000061035156, + "width": 48.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 261.0, + "y0": 276.1199951171875, + "x1": 309.9599914550781, + "y1": 301.67999267578125, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 250.20001220703125, + "x1": 309.9599914550781, + "y1": 275.760009765625, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 223.55999755859375, + "x1": 309.9599914550781, + "y1": 249.47998046875, + "width": 48.959991455078125, + "height": 25.91998291015625 + }, { + "x0": 234.0, + "y0": 432.7200012207031, + "x1": 260.280029296875, + "y1": 475.55999755859375, + "width": 26.280029296875, + "height": 42.839996337890625 + }, { + "x0": 234.0, + "y0": 406.44000244140625, + "x1": 260.280029296875, + "y1": 431.6400146484375, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 234.0, + "y0": 380.1600036621094, + "x1": 260.280029296875, + "y1": 405.7200012207031, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 354.239990234375, + "x1": 260.280029296875, + "y1": 379.79998779296875, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 328.32000732421875, + "x1": 260.280029296875, + "y1": 353.5199890136719, + "width": 26.280029296875, + "height": 25.199981689453125 + }, { + "x0": 234.0, + "y0": 302.3999938964844, + "x1": 260.280029296875, + "y1": 327.6000061035156, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 234.0, + "y0": 276.1199951171875, + "x1": 260.280029296875, + "y1": 301.67999267578125, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 250.20001220703125, + "x1": 260.280029296875, + "y1": 275.760009765625, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 223.55999755859375, + "x1": 260.280029296875, + "y1": 249.47998046875, + "width": 26.280029296875, + "height": 25.91998291015625 + }, { + "x0": 193.67999267578125, + "y0": 432.7200012207031, + "x1": 233.280029296875, + "y1": 475.55999755859375, + "width": 39.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 193.67999267578125, + "y0": 406.44000244140625, + "x1": 233.280029296875, + "y1": 431.6400146484375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 193.67999267578125, + "y0": 380.1600036621094, + "x1": 233.280029296875, + "y1": 405.7200012207031, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 354.239990234375, + "x1": 233.280029296875, + "y1": 379.79998779296875, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 328.32000732421875, + "x1": 233.280029296875, + "y1": 353.5199890136719, + "width": 39.60003662109375, + "height": 25.199981689453125 + }, { + "x0": 193.67999267578125, + "y0": 302.3999938964844, + "x1": 233.280029296875, + "y1": 327.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 193.67999267578125, + "y0": 276.1199951171875, + "x1": 233.280029296875, + "y1": 301.67999267578125, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 250.20001220703125, + "x1": 233.280029296875, + "y1": 275.760009765625, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 223.55999755859375, + "x1": 233.280029296875, + "y1": 249.47998046875, + "width": 39.60003662109375, + "height": 25.91998291015625 + }, { + "x0": 74.8800048828125, + "y0": 432.7200012207031, + "x1": 192.96002197265625, + "y1": 475.55999755859375, + "width": 118.08001708984375, + "height": 42.839996337890625 + }, { + "x0": 74.8800048828125, + "y0": 406.44000244140625, + "x1": 192.96002197265625, + "y1": 431.6400146484375, + "width": 118.08001708984375, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 380.1600036621094, + "x1": 192.96002197265625, + "y1": 405.7200012207031, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 354.239990234375, + "x1": 192.96002197265625, + "y1": 379.79998779296875, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 328.32000732421875, + "x1": 192.96002197265625, + "y1": 353.5199890136719, + "width": 118.08001708984375, + "height": 25.199981689453125 + }, { + "x0": 74.8800048828125, + "y0": 302.3999938964844, + "x1": 192.96002197265625, + "y1": 327.6000061035156, + "width": 118.08001708984375, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 276.1199951171875, + "x1": 192.96002197265625, + "y1": 301.67999267578125, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 250.20001220703125, + "x1": 192.96002197265625, + "y1": 275.760009765625, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 223.55999755859375, + "x1": 192.96002197265625, + "y1": 249.47998046875, + "width": 118.08001708984375, + "height": 25.91998291015625 + } + ] + }, { + "pageInfo": { + "number": 108, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 562.6799926757812, + "y0": 457.91998291015625, + "x1": 710.280029296875, + "y1": 478.79998779296875, + "width": 147.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 670.6799926757812, + "y0": 435.96002197265625, + "x1": 710.280029296875, + "y1": 457.20001220703125, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 670.6799926757812, + "y0": 409.32000732421875, + "x1": 710.280029296875, + "y1": 434.52001953125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 383.3999938964844, + "x1": 710.280029296875, + "y1": 408.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 357.47998046875, + "x1": 710.280029296875, + "y1": 382.67999267578125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 331.20001220703125, + "x1": 710.280029296875, + "y1": 356.760009765625, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 670.6799926757812, + "y0": 305.2799987792969, + "x1": 710.280029296875, + "y1": 330.8399963378906, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 670.6799926757812, + "y0": 279.3599853515625, + "x1": 710.280029296875, + "y1": 304.55999755859375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 253.44000244140625, + "x1": 710.280029296875, + "y1": 278.6400146484375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 226.44000244140625, + "x1": 710.280029296875, + "y1": 252.719970703125, + "width": 39.60003662109375, + "height": 26.27996826171875 + }, { + "x0": 636.47998046875, + "y0": 435.96002197265625, + "x1": 669.9600219726562, + "y1": 457.20001220703125, + "width": 33.48004150390625, + "height": 21.239990234375 + }, { + "x0": 636.47998046875, + "y0": 409.32000732421875, + "x1": 669.9600219726562, + "y1": 434.52001953125, + "width": 33.48004150390625, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 383.3999938964844, + "x1": 669.9600219726562, + "y1": 408.6000061035156, + "width": 33.48004150390625, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 357.47998046875, + "x1": 669.9600219726562, + "y1": 382.67999267578125, + "width": 33.48004150390625, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 331.20001220703125, + "x1": 669.9600219726562, + "y1": 356.760009765625, + "width": 33.48004150390625, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 305.2799987792969, + "x1": 669.9600219726562, + "y1": 330.8399963378906, + "width": 33.48004150390625, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 279.3599853515625, + "x1": 669.9600219726562, + "y1": 304.55999755859375, + "width": 33.48004150390625, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 253.44000244140625, + "x1": 669.9600219726562, + "y1": 278.6400146484375, + "width": 33.48004150390625, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 226.44000244140625, + "x1": 669.9600219726562, + "y1": 252.719970703125, + "width": 33.48004150390625, + "height": 26.27996826171875 + }, { + "x0": 603.0, + "y0": 435.96002197265625, + "x1": 635.760009765625, + "y1": 457.20001220703125, + "width": 32.760009765625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 409.32000732421875, + "x1": 635.760009765625, + "y1": 434.52001953125, + "width": 32.760009765625, + "height": 25.20001220703125 + }, { + "x0": 603.0, + "y0": 383.3999938964844, + "x1": 635.760009765625, + "y1": 408.6000061035156, + "width": 32.760009765625, + "height": 25.20001220703125 + }, { + "x0": 603.0, + "y0": 357.47998046875, + "x1": 635.760009765625, + "y1": 382.67999267578125, + "width": 32.760009765625, + "height": 25.20001220703125 + }, { + "x0": 603.0, + "y0": 331.20001220703125, + "x1": 635.760009765625, + "y1": 356.760009765625, + "width": 32.760009765625, + "height": 25.55999755859375 + }, { + "x0": 603.0, + "y0": 305.2799987792969, + "x1": 635.760009765625, + "y1": 330.8399963378906, + "width": 32.760009765625, + "height": 25.55999755859375 + }, { + "x0": 603.0, + "y0": 279.3599853515625, + "x1": 635.760009765625, + "y1": 304.55999755859375, + "width": 32.760009765625, + "height": 25.20001220703125 + }, { + "x0": 603.0, + "y0": 253.44000244140625, + "x1": 635.760009765625, + "y1": 278.6400146484375, + "width": 32.760009765625, + "height": 25.20001220703125 + }, { + "x0": 603.0, + "y0": 226.44000244140625, + "x1": 635.760009765625, + "y1": 252.719970703125, + "width": 32.760009765625, + "height": 26.27996826171875 + }, { + "x0": 562.6799926757812, + "y0": 435.96002197265625, + "x1": 602.280029296875, + "y1": 457.20001220703125, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 562.6799926757812, + "y0": 409.32000732421875, + "x1": 602.280029296875, + "y1": 434.52001953125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 562.6799926757812, + "y0": 383.3999938964844, + "x1": 602.280029296875, + "y1": 408.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 562.6799926757812, + "y0": 357.47998046875, + "x1": 602.280029296875, + "y1": 382.67999267578125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 562.6799926757812, + "y0": 331.20001220703125, + "x1": 602.280029296875, + "y1": 356.760009765625, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 562.6799926757812, + "y0": 305.2799987792969, + "x1": 602.280029296875, + "y1": 330.8399963378906, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 562.6799926757812, + "y0": 279.3599853515625, + "x1": 602.280029296875, + "y1": 304.55999755859375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 562.6799926757812, + "y0": 253.44000244140625, + "x1": 602.280029296875, + "y1": 278.6400146484375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 562.6799926757812, + "y0": 226.44000244140625, + "x1": 602.280029296875, + "y1": 252.719970703125, + "width": 39.60003662109375, + "height": 26.27996826171875 + }, { + "x0": 408.239990234375, + "y0": 457.91998291015625, + "x1": 561.5999755859375, + "y1": 478.79998779296875, + "width": 153.3599853515625, + "height": 20.8800048828125 + }, { + "x0": 525.5999755859375, + "y0": 435.96002197265625, + "x1": 561.5999755859375, + "y1": 457.20001220703125, + "width": 36.0, + "height": 21.239990234375 + }, { + "x0": 525.5999755859375, + "y0": 409.32000732421875, + "x1": 561.5999755859375, + "y1": 434.52001953125, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 525.5999755859375, + "y0": 383.3999938964844, + "x1": 561.5999755859375, + "y1": 408.6000061035156, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 525.5999755859375, + "y0": 357.47998046875, + "x1": 561.5999755859375, + "y1": 382.67999267578125, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 525.5999755859375, + "y0": 331.20001220703125, + "x1": 561.5999755859375, + "y1": 356.760009765625, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 525.5999755859375, + "y0": 305.2799987792969, + "x1": 561.5999755859375, + "y1": 330.8399963378906, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 525.5999755859375, + "y0": 279.3599853515625, + "x1": 561.5999755859375, + "y1": 304.55999755859375, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 525.5999755859375, + "y0": 253.44000244140625, + "x1": 561.5999755859375, + "y1": 278.6400146484375, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 525.5999755859375, + "y0": 226.44000244140625, + "x1": 561.5999755859375, + "y1": 252.719970703125, + "width": 36.0, + "height": 26.27996826171875 + }, { + "x0": 485.2799987792969, + "y0": 435.96002197265625, + "x1": 524.8800048828125, + "y1": 457.20001220703125, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 485.2799987792969, + "y0": 409.32000732421875, + "x1": 524.8800048828125, + "y1": 434.52001953125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 485.2799987792969, + "y0": 383.3999938964844, + "x1": 524.8800048828125, + "y1": 408.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 485.2799987792969, + "y0": 357.47998046875, + "x1": 524.8800048828125, + "y1": 382.67999267578125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 485.2799987792969, + "y0": 331.20001220703125, + "x1": 524.8800048828125, + "y1": 356.760009765625, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 485.2799987792969, + "y0": 305.2799987792969, + "x1": 524.8800048828125, + "y1": 330.8399963378906, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 485.2799987792969, + "y0": 279.3599853515625, + "x1": 524.8800048828125, + "y1": 304.55999755859375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 485.2799987792969, + "y0": 253.44000244140625, + "x1": 524.8800048828125, + "y1": 278.6400146484375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 485.2799987792969, + "y0": 226.44000244140625, + "x1": 524.8800048828125, + "y1": 252.719970703125, + "width": 39.600006103515625, + "height": 26.27996826171875 + }, { + "x0": 448.55999755859375, + "y0": 435.96002197265625, + "x1": 484.55999755859375, + "y1": 457.20001220703125, + "width": 36.0, + "height": 21.239990234375 + }, { + "x0": 448.55999755859375, + "y0": 409.32000732421875, + "x1": 484.55999755859375, + "y1": 434.52001953125, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 448.55999755859375, + "y0": 383.3999938964844, + "x1": 484.55999755859375, + "y1": 408.6000061035156, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 448.55999755859375, + "y0": 357.47998046875, + "x1": 484.55999755859375, + "y1": 382.67999267578125, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 448.55999755859375, + "y0": 331.20001220703125, + "x1": 484.55999755859375, + "y1": 356.760009765625, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 448.55999755859375, + "y0": 305.2799987792969, + "x1": 484.55999755859375, + "y1": 330.8399963378906, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 448.55999755859375, + "y0": 279.3599853515625, + "x1": 484.55999755859375, + "y1": 304.55999755859375, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 448.55999755859375, + "y0": 253.44000244140625, + "x1": 484.55999755859375, + "y1": 278.6400146484375, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 448.55999755859375, + "y0": 226.44000244140625, + "x1": 484.55999755859375, + "y1": 252.719970703125, + "width": 36.0, + "height": 26.27996826171875 + }, { + "x0": 408.239990234375, + "y0": 435.96002197265625, + "x1": 447.8399963378906, + "y1": 457.20001220703125, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 408.239990234375, + "y0": 409.32000732421875, + "x1": 447.8399963378906, + "y1": 434.52001953125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 408.239990234375, + "y0": 383.3999938964844, + "x1": 447.8399963378906, + "y1": 408.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 408.239990234375, + "y0": 357.47998046875, + "x1": 447.8399963378906, + "y1": 382.67999267578125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 408.239990234375, + "y0": 331.20001220703125, + "x1": 447.8399963378906, + "y1": 356.760009765625, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 408.239990234375, + "y0": 305.2799987792969, + "x1": 447.8399963378906, + "y1": 330.8399963378906, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 408.239990234375, + "y0": 279.3599853515625, + "x1": 447.8399963378906, + "y1": 304.55999755859375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 408.239990234375, + "y0": 253.44000244140625, + "x1": 447.8399963378906, + "y1": 278.6400146484375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 408.239990234375, + "y0": 226.44000244140625, + "x1": 447.8399963378906, + "y1": 252.719970703125, + "width": 39.600006103515625, + "height": 26.27996826171875 + }, { + "x0": 376.55999755859375, + "y0": 435.96002197265625, + "x1": 406.79998779296875, + "y1": 478.79998779296875, + "width": 30.239990234375, + "height": 42.8399658203125 + }, { + "x0": 376.55999755859375, + "y0": 409.32000732421875, + "x1": 406.79998779296875, + "y1": 434.52001953125, + "width": 30.239990234375, + "height": 25.20001220703125 + }, { + "x0": 376.55999755859375, + "y0": 383.3999938964844, + "x1": 406.79998779296875, + "y1": 408.6000061035156, + "width": 30.239990234375, + "height": 25.20001220703125 + }, { + "x0": 376.55999755859375, + "y0": 357.47998046875, + "x1": 406.79998779296875, + "y1": 382.67999267578125, + "width": 30.239990234375, + "height": 25.20001220703125 + }, { + "x0": 376.55999755859375, + "y0": 331.20001220703125, + "x1": 406.79998779296875, + "y1": 356.760009765625, + "width": 30.239990234375, + "height": 25.55999755859375 + }, { + "x0": 376.55999755859375, + "y0": 305.2799987792969, + "x1": 406.79998779296875, + "y1": 330.8399963378906, + "width": 30.239990234375, + "height": 25.55999755859375 + }, { + "x0": 376.55999755859375, + "y0": 279.3599853515625, + "x1": 406.79998779296875, + "y1": 304.55999755859375, + "width": 30.239990234375, + "height": 25.20001220703125 + }, { + "x0": 376.55999755859375, + "y0": 253.44000244140625, + "x1": 406.79998779296875, + "y1": 278.6400146484375, + "width": 30.239990234375, + "height": 25.20001220703125 + }, { + "x0": 376.55999755859375, + "y0": 226.44000244140625, + "x1": 406.79998779296875, + "y1": 252.719970703125, + "width": 30.239990234375, + "height": 26.27996826171875 + }, { + "x0": 322.55999755859375, + "y0": 435.96002197265625, + "x1": 375.8399963378906, + "y1": 478.79998779296875, + "width": 53.279998779296875, + "height": 42.8399658203125 + }, { + "x0": 322.55999755859375, + "y0": 409.32000732421875, + "x1": 375.8399963378906, + "y1": 434.52001953125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 322.55999755859375, + "y0": 383.3999938964844, + "x1": 375.8399963378906, + "y1": 408.6000061035156, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 322.55999755859375, + "y0": 357.47998046875, + "x1": 375.8399963378906, + "y1": 382.67999267578125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 322.55999755859375, + "y0": 331.20001220703125, + "x1": 375.8399963378906, + "y1": 356.760009765625, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 322.55999755859375, + "y0": 305.2799987792969, + "x1": 375.8399963378906, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 322.55999755859375, + "y0": 279.3599853515625, + "x1": 375.8399963378906, + "y1": 304.55999755859375, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 322.55999755859375, + "y0": 253.44000244140625, + "x1": 375.8399963378906, + "y1": 278.6400146484375, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 322.55999755859375, + "y0": 226.44000244140625, + "x1": 375.8399963378906, + "y1": 252.719970703125, + "width": 53.279998779296875, + "height": 26.27996826171875 + }, { + "x0": 268.55999755859375, + "y0": 435.96002197265625, + "x1": 321.8399963378906, + "y1": 478.79998779296875, + "width": 53.279998779296875, + "height": 42.8399658203125 + }, { + "x0": 268.55999755859375, + "y0": 409.32000732421875, + "x1": 321.8399963378906, + "y1": 434.52001953125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 268.55999755859375, + "y0": 383.3999938964844, + "x1": 321.8399963378906, + "y1": 408.6000061035156, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 268.55999755859375, + "y0": 357.47998046875, + "x1": 321.8399963378906, + "y1": 382.67999267578125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 268.55999755859375, + "y0": 331.20001220703125, + "x1": 321.8399963378906, + "y1": 356.760009765625, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 268.55999755859375, + "y0": 305.2799987792969, + "x1": 321.8399963378906, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 268.55999755859375, + "y0": 279.3599853515625, + "x1": 321.8399963378906, + "y1": 304.55999755859375, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 268.55999755859375, + "y0": 253.44000244140625, + "x1": 321.8399963378906, + "y1": 278.6400146484375, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 268.55999755859375, + "y0": 226.44000244140625, + "x1": 321.8399963378906, + "y1": 252.719970703125, + "width": 53.279998779296875, + "height": 26.27996826171875 + }, { + "x0": 241.55999755859375, + "y0": 435.96002197265625, + "x1": 267.84002685546875, + "y1": 478.79998779296875, + "width": 26.280029296875, + "height": 42.8399658203125 + }, { + "x0": 241.55999755859375, + "y0": 409.32000732421875, + "x1": 267.84002685546875, + "y1": 434.52001953125, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 241.55999755859375, + "y0": 383.3999938964844, + "x1": 267.84002685546875, + "y1": 408.6000061035156, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 241.55999755859375, + "y0": 357.47998046875, + "x1": 267.84002685546875, + "y1": 382.67999267578125, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 241.55999755859375, + "y0": 331.20001220703125, + "x1": 267.84002685546875, + "y1": 356.760009765625, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 241.55999755859375, + "y0": 305.2799987792969, + "x1": 267.84002685546875, + "y1": 330.8399963378906, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 241.55999755859375, + "y0": 279.3599853515625, + "x1": 267.84002685546875, + "y1": 304.55999755859375, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 241.55999755859375, + "y0": 253.44000244140625, + "x1": 267.84002685546875, + "y1": 278.6400146484375, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 241.55999755859375, + "y0": 226.44000244140625, + "x1": 267.84002685546875, + "y1": 252.719970703125, + "width": 26.280029296875, + "height": 26.27996826171875 + }, { + "x0": 195.47998046875, + "y0": 435.96002197265625, + "x1": 240.84002685546875, + "y1": 478.79998779296875, + "width": 45.36004638671875, + "height": 42.8399658203125 + }, { + "x0": 195.47998046875, + "y0": 409.32000732421875, + "x1": 240.84002685546875, + "y1": 434.52001953125, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 195.47998046875, + "y0": 383.3999938964844, + "x1": 240.84002685546875, + "y1": 408.6000061035156, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 195.47998046875, + "y0": 357.47998046875, + "x1": 240.84002685546875, + "y1": 382.67999267578125, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 195.47998046875, + "y0": 331.20001220703125, + "x1": 240.84002685546875, + "y1": 356.760009765625, + "width": 45.36004638671875, + "height": 25.55999755859375 + }, { + "x0": 195.47998046875, + "y0": 305.2799987792969, + "x1": 240.84002685546875, + "y1": 330.8399963378906, + "width": 45.36004638671875, + "height": 25.55999755859375 + }, { + "x0": 195.47998046875, + "y0": 279.3599853515625, + "x1": 240.84002685546875, + "y1": 304.55999755859375, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 195.47998046875, + "y0": 253.44000244140625, + "x1": 240.84002685546875, + "y1": 278.6400146484375, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 195.47998046875, + "y0": 226.44000244140625, + "x1": 240.84002685546875, + "y1": 252.719970703125, + "width": 45.36004638671875, + "height": 26.27996826171875 + }, { + "x0": 74.8800048828125, + "y0": 435.96002197265625, + "x1": 194.760009765625, + "y1": 478.79998779296875, + "width": 119.8800048828125, + "height": 42.8399658203125 + }, { + "x0": 74.8800048828125, + "y0": 409.32000732421875, + "x1": 194.760009765625, + "y1": 434.52001953125, + "width": 119.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 383.3999938964844, + "x1": 194.760009765625, + "y1": 408.6000061035156, + "width": 119.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 357.47998046875, + "x1": 194.760009765625, + "y1": 382.67999267578125, + "width": 119.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 331.20001220703125, + "x1": 194.760009765625, + "y1": 356.760009765625, + "width": 119.8800048828125, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 305.2799987792969, + "x1": 194.760009765625, + "y1": 330.8399963378906, + "width": 119.8800048828125, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 279.3599853515625, + "x1": 194.760009765625, + "y1": 304.55999755859375, + "width": 119.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 253.44000244140625, + "x1": 194.760009765625, + "y1": 278.6400146484375, + "width": 119.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 226.44000244140625, + "x1": 194.760009765625, + "y1": 252.719970703125, + "width": 119.8800048828125, + "height": 26.27996826171875 + } + ] + }, { + "pageInfo": { + "number": 109, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 613.4400024414062, + "y0": 431.2799987792969, + "x1": 667.4400024414062, + "y1": 446.760009765625, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 414.7200012207031, + "x1": 667.4400024414062, + "y1": 430.20001220703125, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 397.79998779296875, + "x1": 667.4400024414062, + "y1": 413.2799987792969, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 381.239990234375, + "x1": 667.4400024414062, + "y1": 396.7200012207031, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 364.32000732421875, + "x1": 667.4400024414062, + "y1": 379.79998779296875, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 347.760009765625, + "x1": 667.4400024414062, + "y1": 363.239990234375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 331.55999755859375, + "x1": 667.4400024414062, + "y1": 346.67999267578125, + "width": 54.0, + "height": 15.1199951171875 + }, { + "x0": 613.4400024414062, + "y0": 315.0, + "x1": 667.4400024414062, + "y1": 330.8399963378906, + "width": 54.0, + "height": 15.839996337890625 + }, { + "x0": 613.4400024414062, + "y0": 298.44000244140625, + "x1": 667.4400024414062, + "y1": 313.9200134277344, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 281.5199890136719, + "x1": 667.4400024414062, + "y1": 297.3599853515625, + "width": 54.0, + "height": 15.839996337890625 + }, { + "x0": 613.4400024414062, + "y0": 264.5999755859375, + "x1": 667.4400024414062, + "y1": 280.44000244140625, + "width": 54.0, + "height": 15.84002685546875 + }, { + "x0": 613.4400024414062, + "y0": 248.0400390625, + "x1": 667.4400024414062, + "y1": 263.52001953125, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 231.1199951171875, + "x1": 667.4400024414062, + "y1": 246.9599609375, + "width": 54.0, + "height": 15.8399658203125 + }, { + "x0": 613.4400024414062, + "y0": 215.280029296875, + "x1": 667.4400024414062, + "y1": 230.4000244140625, + "width": 54.0, + "height": 15.1199951171875 + }, { + "x0": 613.4400024414062, + "y0": 198.719970703125, + "x1": 667.4400024414062, + "y1": 214.20001220703125, + "width": 54.0, + "height": 15.48004150390625 + }, { + "x0": 613.4400024414062, + "y0": 182.1600341796875, + "x1": 667.4400024414062, + "y1": 197.6400146484375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 165.239990234375, + "x1": 667.4400024414062, + "y1": 180.719970703125, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 148.67999267578125, + "x1": 667.4400024414062, + "y1": 164.1600341796875, + "width": 54.0, + "height": 15.48004150390625 + }, { + "x0": 613.4400024414062, + "y0": 131.760009765625, + "x1": 667.4400024414062, + "y1": 147.239990234375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 114.8399658203125, + "x1": 667.4400024414062, + "y1": 130.67999267578125, + "width": 54.0, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 431.2799987792969, + "x1": 612.3599853515625, + "y1": 446.760009765625, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 414.7200012207031, + "x1": 612.3599853515625, + "y1": 430.20001220703125, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 397.79998779296875, + "x1": 612.3599853515625, + "y1": 413.2799987792969, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 381.239990234375, + "x1": 612.3599853515625, + "y1": 396.7200012207031, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 364.32000732421875, + "x1": 612.3599853515625, + "y1": 379.79998779296875, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 347.760009765625, + "x1": 612.3599853515625, + "y1": 363.239990234375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 331.55999755859375, + "x1": 612.3599853515625, + "y1": 346.67999267578125, + "width": 49.67999267578125, + "height": 15.1199951171875 + }, { + "x0": 562.6799926757812, + "y0": 315.0, + "x1": 612.3599853515625, + "y1": 330.8399963378906, + "width": 49.67999267578125, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 298.44000244140625, + "x1": 612.3599853515625, + "y1": 313.9200134277344, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 281.5199890136719, + "x1": 612.3599853515625, + "y1": 297.3599853515625, + "width": 49.67999267578125, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 264.5999755859375, + "x1": 612.3599853515625, + "y1": 280.44000244140625, + "width": 49.67999267578125, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 248.0400390625, + "x1": 612.3599853515625, + "y1": 263.52001953125, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 231.1199951171875, + "x1": 612.3599853515625, + "y1": 246.9599609375, + "width": 49.67999267578125, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 215.280029296875, + "x1": 612.3599853515625, + "y1": 230.4000244140625, + "width": 49.67999267578125, + "height": 15.1199951171875 + }, { + "x0": 562.6799926757812, + "y0": 198.719970703125, + "x1": 612.3599853515625, + "y1": 214.20001220703125, + "width": 49.67999267578125, + "height": 15.48004150390625 + }, { + "x0": 562.6799926757812, + "y0": 182.1600341796875, + "x1": 612.3599853515625, + "y1": 197.6400146484375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 165.239990234375, + "x1": 612.3599853515625, + "y1": 180.719970703125, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 148.67999267578125, + "x1": 612.3599853515625, + "y1": 164.1600341796875, + "width": 49.67999267578125, + "height": 15.48004150390625 + }, { + "x0": 562.6799926757812, + "y0": 131.760009765625, + "x1": 612.3599853515625, + "y1": 147.239990234375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 114.8399658203125, + "x1": 612.3599853515625, + "y1": 130.67999267578125, + "width": 49.67999267578125, + "height": 15.84002685546875 + }, { + "x0": 503.2799987792969, + "y0": 431.2799987792969, + "x1": 561.5999755859375, + "y1": 446.760009765625, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 414.7200012207031, + "x1": 561.5999755859375, + "y1": 430.20001220703125, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 397.79998779296875, + "x1": 561.5999755859375, + "y1": 413.2799987792969, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 381.239990234375, + "x1": 561.5999755859375, + "y1": 396.7200012207031, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 364.32000732421875, + "x1": 561.5999755859375, + "y1": 379.79998779296875, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 347.760009765625, + "x1": 561.5999755859375, + "y1": 363.239990234375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 331.55999755859375, + "x1": 561.5999755859375, + "y1": 346.67999267578125, + "width": 58.319976806640625, + "height": 15.1199951171875 + }, { + "x0": 503.2799987792969, + "y0": 315.0, + "x1": 561.5999755859375, + "y1": 330.8399963378906, + "width": 58.319976806640625, + "height": 15.839996337890625 + }, { + "x0": 503.2799987792969, + "y0": 298.44000244140625, + "x1": 561.5999755859375, + "y1": 313.9200134277344, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 281.5199890136719, + "x1": 561.5999755859375, + "y1": 297.3599853515625, + "width": 58.319976806640625, + "height": 15.839996337890625 + }, { + "x0": 503.2799987792969, + "y0": 264.5999755859375, + "x1": 561.5999755859375, + "y1": 280.44000244140625, + "width": 58.319976806640625, + "height": 15.84002685546875 + }, { + "x0": 503.2799987792969, + "y0": 248.0400390625, + "x1": 561.5999755859375, + "y1": 263.52001953125, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 231.1199951171875, + "x1": 561.5999755859375, + "y1": 246.9599609375, + "width": 58.319976806640625, + "height": 15.8399658203125 + }, { + "x0": 503.2799987792969, + "y0": 215.280029296875, + "x1": 561.5999755859375, + "y1": 230.4000244140625, + "width": 58.319976806640625, + "height": 15.1199951171875 + }, { + "x0": 503.2799987792969, + "y0": 198.719970703125, + "x1": 561.5999755859375, + "y1": 214.20001220703125, + "width": 58.319976806640625, + "height": 15.48004150390625 + }, { + "x0": 503.2799987792969, + "y0": 182.1600341796875, + "x1": 561.5999755859375, + "y1": 197.6400146484375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 165.239990234375, + "x1": 561.5999755859375, + "y1": 180.719970703125, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 148.67999267578125, + "x1": 561.5999755859375, + "y1": 164.1600341796875, + "width": 58.319976806640625, + "height": 15.48004150390625 + }, { + "x0": 503.2799987792969, + "y0": 131.760009765625, + "x1": 561.5999755859375, + "y1": 147.239990234375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 114.8399658203125, + "x1": 561.5999755859375, + "y1": 130.67999267578125, + "width": 58.319976806640625, + "height": 15.84002685546875 + }, { + "x0": 403.55999755859375, + "y0": 431.2799987792969, + "x1": 502.20001220703125, + "y1": 446.760009765625, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 414.7200012207031, + "x1": 502.20001220703125, + "y1": 430.20001220703125, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 397.79998779296875, + "x1": 502.20001220703125, + "y1": 413.2799987792969, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 381.239990234375, + "x1": 502.20001220703125, + "y1": 396.7200012207031, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 364.32000732421875, + "x1": 502.20001220703125, + "y1": 379.79998779296875, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 347.760009765625, + "x1": 502.20001220703125, + "y1": 363.239990234375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 331.55999755859375, + "x1": 502.20001220703125, + "y1": 346.67999267578125, + "width": 98.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 403.55999755859375, + "y0": 315.0, + "x1": 502.20001220703125, + "y1": 330.8399963378906, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 403.55999755859375, + "y0": 298.44000244140625, + "x1": 502.20001220703125, + "y1": 313.9200134277344, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 281.5199890136719, + "x1": 502.20001220703125, + "y1": 297.3599853515625, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 403.55999755859375, + "y0": 264.5999755859375, + "x1": 502.20001220703125, + "y1": 280.44000244140625, + "width": 98.6400146484375, + "height": 15.84002685546875 + }, { + "x0": 403.55999755859375, + "y0": 248.0400390625, + "x1": 502.20001220703125, + "y1": 263.52001953125, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 231.1199951171875, + "x1": 502.20001220703125, + "y1": 246.9599609375, + "width": 98.6400146484375, + "height": 15.8399658203125 + }, { + "x0": 403.55999755859375, + "y0": 215.280029296875, + "x1": 502.20001220703125, + "y1": 230.4000244140625, + "width": 98.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 403.55999755859375, + "y0": 198.719970703125, + "x1": 502.20001220703125, + "y1": 214.20001220703125, + "width": 98.6400146484375, + "height": 15.48004150390625 + }, { + "x0": 403.55999755859375, + "y0": 182.1600341796875, + "x1": 502.20001220703125, + "y1": 197.6400146484375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 165.239990234375, + "x1": 502.20001220703125, + "y1": 180.719970703125, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 148.67999267578125, + "x1": 502.20001220703125, + "y1": 164.1600341796875, + "width": 98.6400146484375, + "height": 15.48004150390625 + }, { + "x0": 403.55999755859375, + "y0": 131.760009765625, + "x1": 502.20001220703125, + "y1": 147.239990234375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 114.8399658203125, + "x1": 502.20001220703125, + "y1": 130.67999267578125, + "width": 98.6400146484375, + "height": 15.84002685546875 + }, { + "x0": 385.55999755859375, + "y0": 331.20001220703125, + "x1": 402.8399963378906, + "y1": 347.0400085449219, + "width": 17.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 385.55999755859375, + "y0": 214.9200439453125, + "x1": 402.8399963378906, + "y1": 230.760009765625, + "width": 17.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 385.9200134277344, + "y0": 315.0, + "x1": 402.4800109863281, + "y1": 330.8399963378906, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 385.9200134277344, + "y0": 281.5199890136719, + "x1": 402.4800109863281, + "y1": 297.3599853515625, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 385.9200134277344, + "y0": 264.5999755859375, + "x1": 402.4800109863281, + "y1": 280.44000244140625, + "width": 16.55999755859375, + "height": 15.84002685546875 + }, { + "x0": 385.9200134277344, + "y0": 231.1199951171875, + "x1": 402.4800109863281, + "y1": 246.9599609375, + "width": 16.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 385.9200134277344, + "y0": 114.8399658203125, + "x1": 402.4800109863281, + "y1": 130.67999267578125, + "width": 16.55999755859375, + "height": 15.84002685546875 + }, { + "x0": 338.0400085449219, + "y0": 431.2799987792969, + "x1": 384.8399963378906, + "y1": 446.760009765625, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 414.7200012207031, + "x1": 384.8399963378906, + "y1": 430.20001220703125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 397.79998779296875, + "x1": 384.8399963378906, + "y1": 413.2799987792969, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 381.239990234375, + "x1": 384.8399963378906, + "y1": 396.7200012207031, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 364.32000732421875, + "x1": 384.8399963378906, + "y1": 379.79998779296875, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 347.760009765625, + "x1": 384.8399963378906, + "y1": 363.239990234375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 331.55999755859375, + "x1": 384.8399963378906, + "y1": 346.67999267578125, + "width": 46.79998779296875, + "height": 15.1199951171875 + }, { + "x0": 338.0400085449219, + "y0": 315.0, + "x1": 384.8399963378906, + "y1": 330.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 338.0400085449219, + "y0": 298.44000244140625, + "x1": 384.8399963378906, + "y1": 313.9200134277344, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 281.5199890136719, + "x1": 384.8399963378906, + "y1": 297.3599853515625, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 338.0400085449219, + "y0": 264.5999755859375, + "x1": 384.8399963378906, + "y1": 280.44000244140625, + "width": 46.79998779296875, + "height": 15.84002685546875 + }, { + "x0": 338.0400085449219, + "y0": 248.0400390625, + "x1": 384.8399963378906, + "y1": 263.52001953125, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 231.1199951171875, + "x1": 384.8399963378906, + "y1": 246.9599609375, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 338.0400085449219, + "y0": 215.280029296875, + "x1": 384.8399963378906, + "y1": 230.4000244140625, + "width": 46.79998779296875, + "height": 15.1199951171875 + }, { + "x0": 338.0400085449219, + "y0": 198.719970703125, + "x1": 384.8399963378906, + "y1": 214.20001220703125, + "width": 46.79998779296875, + "height": 15.48004150390625 + }, { + "x0": 338.0400085449219, + "y0": 182.1600341796875, + "x1": 384.8399963378906, + "y1": 197.6400146484375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 165.239990234375, + "x1": 384.8399963378906, + "y1": 180.719970703125, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 148.67999267578125, + "x1": 384.8399963378906, + "y1": 164.1600341796875, + "width": 46.79998779296875, + "height": 15.48004150390625 + }, { + "x0": 338.0400085449219, + "y0": 131.760009765625, + "x1": 384.8399963378906, + "y1": 147.239990234375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 114.8399658203125, + "x1": 384.8399963378906, + "y1": 130.67999267578125, + "width": 46.79998779296875, + "height": 15.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 431.2799987792969, + "x1": 336.9599914550781, + "y1": 446.760009765625, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 414.7200012207031, + "x1": 336.9599914550781, + "y1": 430.20001220703125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 397.79998779296875, + "x1": 336.9599914550781, + "y1": 413.2799987792969, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 381.239990234375, + "x1": 336.9599914550781, + "y1": 396.7200012207031, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 364.32000732421875, + "x1": 336.9599914550781, + "y1": 379.79998779296875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 347.760009765625, + "x1": 336.9599914550781, + "y1": 363.239990234375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 331.55999755859375, + "x1": 336.9599914550781, + "y1": 346.67999267578125, + "width": 53.279998779296875, + "height": 15.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 315.0, + "x1": 336.9599914550781, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 283.67999267578125, + "y0": 298.44000244140625, + "x1": 336.9599914550781, + "y1": 313.9200134277344, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 281.5199890136719, + "x1": 336.9599914550781, + "y1": 297.3599853515625, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 283.67999267578125, + "y0": 264.5999755859375, + "x1": 336.9599914550781, + "y1": 280.44000244140625, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 248.0400390625, + "x1": 336.9599914550781, + "y1": 263.52001953125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 231.1199951171875, + "x1": 336.9599914550781, + "y1": 246.9599609375, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 283.67999267578125, + "y0": 215.280029296875, + "x1": 336.9599914550781, + "y1": 230.4000244140625, + "width": 53.279998779296875, + "height": 15.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 198.719970703125, + "x1": 336.9599914550781, + "y1": 214.20001220703125, + "width": 53.279998779296875, + "height": 15.48004150390625 + }, { + "x0": 283.67999267578125, + "y0": 182.1600341796875, + "x1": 336.9599914550781, + "y1": 197.6400146484375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 165.239990234375, + "x1": 336.9599914550781, + "y1": 180.719970703125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 148.67999267578125, + "x1": 336.9599914550781, + "y1": 164.1600341796875, + "width": 53.279998779296875, + "height": 15.48004150390625 + }, { + "x0": 283.67999267578125, + "y0": 131.760009765625, + "x1": 336.9599914550781, + "y1": 147.239990234375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 114.8399658203125, + "x1": 336.9599914550781, + "y1": 130.67999267578125, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 227.52001953125, + "y0": 431.2799987792969, + "x1": 282.239990234375, + "y1": 446.760009765625, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 414.7200012207031, + "x1": 282.239990234375, + "y1": 430.20001220703125, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 397.79998779296875, + "x1": 282.239990234375, + "y1": 413.2799987792969, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 381.239990234375, + "x1": 282.239990234375, + "y1": 396.7200012207031, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 364.32000732421875, + "x1": 282.239990234375, + "y1": 379.79998779296875, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 347.760009765625, + "x1": 282.239990234375, + "y1": 363.239990234375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 331.55999755859375, + "x1": 282.239990234375, + "y1": 346.67999267578125, + "width": 54.719970703125, + "height": 15.1199951171875 + }, { + "x0": 227.52001953125, + "y0": 315.0, + "x1": 282.239990234375, + "y1": 330.8399963378906, + "width": 54.719970703125, + "height": 15.839996337890625 + }, { + "x0": 227.52001953125, + "y0": 298.44000244140625, + "x1": 282.239990234375, + "y1": 313.9200134277344, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 281.5199890136719, + "x1": 282.239990234375, + "y1": 297.3599853515625, + "width": 54.719970703125, + "height": 15.839996337890625 + }, { + "x0": 227.52001953125, + "y0": 264.5999755859375, + "x1": 282.239990234375, + "y1": 280.44000244140625, + "width": 54.719970703125, + "height": 15.84002685546875 + }, { + "x0": 227.52001953125, + "y0": 248.0400390625, + "x1": 282.239990234375, + "y1": 263.52001953125, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 231.1199951171875, + "x1": 282.239990234375, + "y1": 246.9599609375, + "width": 54.719970703125, + "height": 15.8399658203125 + }, { + "x0": 227.52001953125, + "y0": 215.280029296875, + "x1": 282.239990234375, + "y1": 230.4000244140625, + "width": 54.719970703125, + "height": 15.1199951171875 + }, { + "x0": 227.52001953125, + "y0": 198.719970703125, + "x1": 282.239990234375, + "y1": 214.20001220703125, + "width": 54.719970703125, + "height": 15.48004150390625 + }, { + "x0": 227.52001953125, + "y0": 182.1600341796875, + "x1": 282.239990234375, + "y1": 197.6400146484375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 165.239990234375, + "x1": 282.239990234375, + "y1": 180.719970703125, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 148.67999267578125, + "x1": 282.239990234375, + "y1": 164.1600341796875, + "width": 54.719970703125, + "height": 15.48004150390625 + }, { + "x0": 227.52001953125, + "y0": 131.760009765625, + "x1": 282.239990234375, + "y1": 147.239990234375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 114.8399658203125, + "x1": 282.239990234375, + "y1": 130.67999267578125, + "width": 54.719970703125, + "height": 15.84002685546875 + }, { + "x0": 123.84002685546875, + "y0": 431.2799987792969, + "x1": 226.44000244140625, + "y1": 446.760009765625, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 414.7200012207031, + "x1": 226.44000244140625, + "y1": 430.20001220703125, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 397.79998779296875, + "x1": 226.44000244140625, + "y1": 413.2799987792969, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 381.239990234375, + "x1": 226.44000244140625, + "y1": 396.7200012207031, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 364.32000732421875, + "x1": 226.44000244140625, + "y1": 379.79998779296875, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 347.760009765625, + "x1": 226.44000244140625, + "y1": 363.239990234375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 331.55999755859375, + "x1": 226.44000244140625, + "y1": 346.67999267578125, + "width": 102.5999755859375, + "height": 15.1199951171875 + }, { + "x0": 123.84002685546875, + "y0": 315.0, + "x1": 226.44000244140625, + "y1": 330.8399963378906, + "width": 102.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 123.84002685546875, + "y0": 298.44000244140625, + "x1": 226.44000244140625, + "y1": 313.9200134277344, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 281.5199890136719, + "x1": 226.44000244140625, + "y1": 297.3599853515625, + "width": 102.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 123.84002685546875, + "y0": 264.5999755859375, + "x1": 226.44000244140625, + "y1": 280.44000244140625, + "width": 102.5999755859375, + "height": 15.84002685546875 + }, { + "x0": 123.84002685546875, + "y0": 248.0400390625, + "x1": 226.44000244140625, + "y1": 263.52001953125, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 231.1199951171875, + "x1": 226.44000244140625, + "y1": 246.9599609375, + "width": 102.5999755859375, + "height": 15.8399658203125 + }, { + "x0": 123.84002685546875, + "y0": 215.280029296875, + "x1": 226.44000244140625, + "y1": 230.4000244140625, + "width": 102.5999755859375, + "height": 15.1199951171875 + }, { + "x0": 123.84002685546875, + "y0": 198.719970703125, + "x1": 226.44000244140625, + "y1": 214.20001220703125, + "width": 102.5999755859375, + "height": 15.48004150390625 + }, { + "x0": 123.84002685546875, + "y0": 182.1600341796875, + "x1": 226.44000244140625, + "y1": 197.6400146484375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 165.239990234375, + "x1": 226.44000244140625, + "y1": 180.719970703125, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 148.67999267578125, + "x1": 226.44000244140625, + "y1": 164.1600341796875, + "width": 102.5999755859375, + "height": 15.48004150390625 + }, { + "x0": 123.84002685546875, + "y0": 131.760009765625, + "x1": 226.44000244140625, + "y1": 147.239990234375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 114.8399658203125, + "x1": 226.44000244140625, + "y1": 130.67999267578125, + "width": 102.5999755859375, + "height": 15.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 110, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 611.280029296875, + "y0": 430.91998291015625, + "x1": 664.9199829101562, + "y1": 446.3999938964844, + "width": 53.63995361328125, + "height": 15.480010986328125 + }, { + "x0": 611.280029296875, + "y0": 414.0, + "x1": 664.9199829101562, + "y1": 429.8399963378906, + "width": 53.63995361328125, + "height": 15.839996337890625 + }, { + "x0": 611.280029296875, + "y0": 397.44000244140625, + "x1": 664.9199829101562, + "y1": 412.91998291015625, + "width": 53.63995361328125, + "height": 15.47998046875 + }, { + "x0": 611.280029296875, + "y0": 380.52001953125, + "x1": 664.9199829101562, + "y1": 396.3599853515625, + "width": 53.63995361328125, + "height": 15.8399658203125 + }, { + "x0": 611.280029296875, + "y0": 363.96002197265625, + "x1": 664.9199829101562, + "y1": 379.44000244140625, + "width": 53.63995361328125, + "height": 15.47998046875 + }, { + "x0": 611.280029296875, + "y0": 347.0400085449219, + "x1": 664.9199829101562, + "y1": 362.52001953125, + "width": 53.63995361328125, + "height": 15.480010986328125 + }, { + "x0": 558.3599853515625, + "y0": 430.91998291015625, + "x1": 609.8399658203125, + "y1": 446.3999938964844, + "width": 51.47998046875, + "height": 15.480010986328125 + }, { + "x0": 558.3599853515625, + "y0": 414.0, + "x1": 609.8399658203125, + "y1": 429.8399963378906, + "width": 51.47998046875, + "height": 15.839996337890625 + }, { + "x0": 558.3599853515625, + "y0": 397.44000244140625, + "x1": 609.8399658203125, + "y1": 412.91998291015625, + "width": 51.47998046875, + "height": 15.47998046875 + }, { + "x0": 558.3599853515625, + "y0": 380.52001953125, + "x1": 609.8399658203125, + "y1": 396.3599853515625, + "width": 51.47998046875, + "height": 15.8399658203125 + }, { + "x0": 558.3599853515625, + "y0": 363.96002197265625, + "x1": 609.8399658203125, + "y1": 379.44000244140625, + "width": 51.47998046875, + "height": 15.47998046875 + }, { + "x0": 558.3599853515625, + "y0": 347.0400085449219, + "x1": 609.8399658203125, + "y1": 362.52001953125, + "width": 51.47998046875, + "height": 15.480010986328125 + }, { + "x0": 501.1199951171875, + "y0": 430.91998291015625, + "x1": 557.280029296875, + "y1": 446.3999938964844, + "width": 56.1600341796875, + "height": 15.480010986328125 + }, { + "x0": 501.1199951171875, + "y0": 414.0, + "x1": 557.280029296875, + "y1": 429.8399963378906, + "width": 56.1600341796875, + "height": 15.839996337890625 + }, { + "x0": 501.1199951171875, + "y0": 397.44000244140625, + "x1": 557.280029296875, + "y1": 412.91998291015625, + "width": 56.1600341796875, + "height": 15.47998046875 + }, { + "x0": 501.1199951171875, + "y0": 380.52001953125, + "x1": 557.280029296875, + "y1": 396.3599853515625, + "width": 56.1600341796875, + "height": 15.8399658203125 + }, { + "x0": 501.1199951171875, + "y0": 363.96002197265625, + "x1": 557.280029296875, + "y1": 379.44000244140625, + "width": 56.1600341796875, + "height": 15.47998046875 + }, { + "x0": 501.1199951171875, + "y0": 347.0400085449219, + "x1": 557.280029296875, + "y1": 362.52001953125, + "width": 56.1600341796875, + "height": 15.480010986328125 + }, { + "x0": 401.3999938964844, + "y0": 430.91998291015625, + "x1": 500.0400085449219, + "y1": 446.3999938964844, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 401.3999938964844, + "y0": 414.0, + "x1": 500.0400085449219, + "y1": 429.8399963378906, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 401.3999938964844, + "y0": 397.44000244140625, + "x1": 500.0400085449219, + "y1": 412.91998291015625, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 401.3999938964844, + "y0": 380.52001953125, + "x1": 500.0400085449219, + "y1": 396.3599853515625, + "width": 98.6400146484375, + "height": 15.8399658203125 + }, { + "x0": 401.3999938964844, + "y0": 363.96002197265625, + "x1": 500.0400085449219, + "y1": 379.44000244140625, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 401.3999938964844, + "y0": 347.0400085449219, + "x1": 500.0400085449219, + "y1": 362.52001953125, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 383.760009765625, + "y0": 414.0, + "x1": 400.32000732421875, + "y1": 429.8399963378906, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 383.760009765625, + "y0": 380.52001953125, + "x1": 400.32000732421875, + "y1": 396.3599853515625, + "width": 16.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 335.8800048828125, + "y0": 430.91998291015625, + "x1": 382.67999267578125, + "y1": 446.3999938964844, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 335.8800048828125, + "y0": 414.0, + "x1": 382.67999267578125, + "y1": 429.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 335.8800048828125, + "y0": 397.44000244140625, + "x1": 382.67999267578125, + "y1": 412.91998291015625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 335.8800048828125, + "y0": 380.52001953125, + "x1": 382.67999267578125, + "y1": 396.3599853515625, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 335.8800048828125, + "y0": 363.96002197265625, + "x1": 382.67999267578125, + "y1": 379.44000244140625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 335.8800048828125, + "y0": 347.0400085449219, + "x1": 382.67999267578125, + "y1": 362.52001953125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 281.1600036621094, + "y0": 430.91998291015625, + "x1": 334.79998779296875, + "y1": 446.3999938964844, + "width": 53.639984130859375, + "height": 15.480010986328125 + }, { + "x0": 281.1600036621094, + "y0": 414.0, + "x1": 334.79998779296875, + "y1": 429.8399963378906, + "width": 53.639984130859375, + "height": 15.839996337890625 + }, { + "x0": 281.1600036621094, + "y0": 397.44000244140625, + "x1": 334.79998779296875, + "y1": 412.91998291015625, + "width": 53.639984130859375, + "height": 15.47998046875 + }, { + "x0": 281.1600036621094, + "y0": 380.52001953125, + "x1": 334.79998779296875, + "y1": 396.3599853515625, + "width": 53.639984130859375, + "height": 15.8399658203125 + }, { + "x0": 281.1600036621094, + "y0": 363.96002197265625, + "x1": 334.79998779296875, + "y1": 379.44000244140625, + "width": 53.639984130859375, + "height": 15.47998046875 + }, { + "x0": 281.1600036621094, + "y0": 347.0400085449219, + "x1": 334.79998779296875, + "y1": 362.52001953125, + "width": 53.639984130859375, + "height": 15.480010986328125 + }, { + "x0": 225.3599853515625, + "y0": 430.91998291015625, + "x1": 280.0799865722656, + "y1": 446.3999938964844, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 225.3599853515625, + "y0": 414.0, + "x1": 280.0799865722656, + "y1": 429.8399963378906, + "width": 54.720001220703125, + "height": 15.839996337890625 + }, { + "x0": 225.3599853515625, + "y0": 397.44000244140625, + "x1": 280.0799865722656, + "y1": 412.91998291015625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 225.3599853515625, + "y0": 380.52001953125, + "x1": 280.0799865722656, + "y1": 396.3599853515625, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 225.3599853515625, + "y0": 363.96002197265625, + "x1": 280.0799865722656, + "y1": 379.44000244140625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 225.3599853515625, + "y0": 347.0400085449219, + "x1": 280.0799865722656, + "y1": 362.52001953125, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 126.3599853515625, + "y0": 430.91998291015625, + "x1": 223.91998291015625, + "y1": 446.3999938964844, + "width": 97.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 126.3599853515625, + "y0": 414.0, + "x1": 223.91998291015625, + "y1": 429.8399963378906, + "width": 97.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 126.3599853515625, + "y0": 397.44000244140625, + "x1": 223.91998291015625, + "y1": 412.91998291015625, + "width": 97.55999755859375, + "height": 15.47998046875 + }, { + "x0": 126.3599853515625, + "y0": 380.52001953125, + "x1": 223.91998291015625, + "y1": 396.3599853515625, + "width": 97.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 126.3599853515625, + "y0": 363.96002197265625, + "x1": 223.91998291015625, + "y1": 379.44000244140625, + "width": 97.55999755859375, + "height": 15.47998046875 + }, { + "x0": 126.3599853515625, + "y0": 347.0400085449219, + "x1": 223.91998291015625, + "y1": 362.52001953125, + "width": 97.55999755859375, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 111, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 567.3599853515625, + "y0": 472.67999267578125, + "x1": 710.6400146484375, + "y1": 493.55999755859375, + "width": 143.280029296875, + "height": 20.8800048828125 + }, { + "x0": 675.0, + "y0": 450.7200012207031, + "x1": 710.6400146484375, + "y1": 471.96002197265625, + "width": 35.6400146484375, + "height": 21.240020751953125 + }, { + "x0": 675.0, + "y0": 424.44000244140625, + "x1": 710.6400146484375, + "y1": 449.6400146484375, + "width": 35.6400146484375, + "height": 25.20001220703125 + }, { + "x0": 675.0, + "y0": 398.1600036621094, + "x1": 710.6400146484375, + "y1": 423.7200012207031, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 372.239990234375, + "x1": 710.6400146484375, + "y1": 397.79998779296875, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 346.32000732421875, + "x1": 710.6400146484375, + "y1": 371.52001953125, + "width": 35.6400146484375, + "height": 25.20001220703125 + }, { + "x0": 675.0, + "y0": 320.3999938964844, + "x1": 710.6400146484375, + "y1": 345.6000061035156, + "width": 35.6400146484375, + "height": 25.20001220703125 + }, { + "x0": 675.0, + "y0": 294.1199951171875, + "x1": 710.6400146484375, + "y1": 319.67999267578125, + "width": 35.6400146484375, + "height": 25.55999755859375 + }, { + "x0": 675.0, + "y0": 267.47998046875, + "x1": 710.6400146484375, + "y1": 293.760009765625, + "width": 35.6400146484375, + "height": 26.280029296875 + }, { + "x0": 636.47998046875, + "y0": 450.7200012207031, + "x1": 674.280029296875, + "y1": 471.96002197265625, + "width": 37.800048828125, + "height": 21.240020751953125 + }, { + "x0": 636.47998046875, + "y0": 424.44000244140625, + "x1": 674.280029296875, + "y1": 449.6400146484375, + "width": 37.800048828125, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 398.1600036621094, + "x1": 674.280029296875, + "y1": 423.7200012207031, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 372.239990234375, + "x1": 674.280029296875, + "y1": 397.79998779296875, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 346.32000732421875, + "x1": 674.280029296875, + "y1": 371.52001953125, + "width": 37.800048828125, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 320.3999938964844, + "x1": 674.280029296875, + "y1": 345.6000061035156, + "width": 37.800048828125, + "height": 25.20001220703125 + }, { + "x0": 636.47998046875, + "y0": 294.1199951171875, + "x1": 674.280029296875, + "y1": 319.67999267578125, + "width": 37.800048828125, + "height": 25.55999755859375 + }, { + "x0": 636.47998046875, + "y0": 267.47998046875, + "x1": 674.280029296875, + "y1": 293.760009765625, + "width": 37.800048828125, + "height": 26.280029296875 + }, { + "x0": 601.9199829101562, + "y0": 450.7200012207031, + "x1": 635.760009765625, + "y1": 471.96002197265625, + "width": 33.84002685546875, + "height": 21.240020751953125 + }, { + "x0": 601.9199829101562, + "y0": 424.44000244140625, + "x1": 635.760009765625, + "y1": 449.6400146484375, + "width": 33.84002685546875, + "height": 25.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 398.1600036621094, + "x1": 635.760009765625, + "y1": 423.7200012207031, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 372.239990234375, + "x1": 635.760009765625, + "y1": 397.79998779296875, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 346.32000732421875, + "x1": 635.760009765625, + "y1": 371.52001953125, + "width": 33.84002685546875, + "height": 25.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 320.3999938964844, + "x1": 635.760009765625, + "y1": 345.6000061035156, + "width": 33.84002685546875, + "height": 25.20001220703125 + }, { + "x0": 601.9199829101562, + "y0": 294.1199951171875, + "x1": 635.760009765625, + "y1": 319.67999267578125, + "width": 33.84002685546875, + "height": 25.55999755859375 + }, { + "x0": 601.9199829101562, + "y0": 267.47998046875, + "x1": 635.760009765625, + "y1": 293.760009765625, + "width": 33.84002685546875, + "height": 26.280029296875 + }, { + "x0": 567.0, + "y0": 450.7200012207031, + "x1": 601.2000122070312, + "y1": 471.96002197265625, + "width": 34.20001220703125, + "height": 21.240020751953125 + }, { + "x0": 567.0, + "y0": 424.44000244140625, + "x1": 601.2000122070312, + "y1": 449.6400146484375, + "width": 34.20001220703125, + "height": 25.20001220703125 + }, { + "x0": 567.0, + "y0": 398.1600036621094, + "x1": 601.2000122070312, + "y1": 423.7200012207031, + "width": 34.20001220703125, + "height": 25.55999755859375 + }, { + "x0": 567.0, + "y0": 372.239990234375, + "x1": 601.2000122070312, + "y1": 397.79998779296875, + "width": 34.20001220703125, + "height": 25.55999755859375 + }, { + "x0": 567.0, + "y0": 346.32000732421875, + "x1": 601.2000122070312, + "y1": 371.52001953125, + "width": 34.20001220703125, + "height": 25.20001220703125 + }, { + "x0": 567.0, + "y0": 320.3999938964844, + "x1": 601.2000122070312, + "y1": 345.6000061035156, + "width": 34.20001220703125, + "height": 25.20001220703125 + }, { + "x0": 567.0, + "y0": 294.1199951171875, + "x1": 601.2000122070312, + "y1": 319.67999267578125, + "width": 34.20001220703125, + "height": 25.55999755859375 + }, { + "x0": 567.0, + "y0": 267.47998046875, + "x1": 601.2000122070312, + "y1": 293.760009765625, + "width": 34.20001220703125, + "height": 26.280029296875 + }, { + "x0": 526.6799926757812, + "y0": 450.7200012207031, + "x1": 566.280029296875, + "y1": 471.96002197265625, + "width": 39.60003662109375, + "height": 21.240020751953125 + }, { + "x0": 526.6799926757812, + "y0": 424.44000244140625, + "x1": 566.280029296875, + "y1": 449.6400146484375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 526.6799926757812, + "y0": 398.1600036621094, + "x1": 566.280029296875, + "y1": 423.7200012207031, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 372.239990234375, + "x1": 566.280029296875, + "y1": 397.79998779296875, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 346.32000732421875, + "x1": 566.280029296875, + "y1": 371.52001953125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 526.6799926757812, + "y0": 320.3999938964844, + "x1": 566.280029296875, + "y1": 345.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 526.6799926757812, + "y0": 294.1199951171875, + "x1": 566.280029296875, + "y1": 319.67999267578125, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 526.6799926757812, + "y0": 267.47998046875, + "x1": 566.280029296875, + "y1": 293.760009765625, + "width": 39.60003662109375, + "height": 26.280029296875 + }, { + "x0": 405.3599853515625, + "y0": 472.67999267578125, + "x1": 565.9199829101562, + "y1": 493.55999755859375, + "width": 160.55999755859375, + "height": 20.8800048828125 + }, { + "x0": 486.0, + "y0": 450.7200012207031, + "x1": 525.9599609375, + "y1": 471.96002197265625, + "width": 39.9599609375, + "height": 21.240020751953125 + }, { + "x0": 486.0, + "y0": 424.44000244140625, + "x1": 525.9599609375, + "y1": 449.6400146484375, + "width": 39.9599609375, + "height": 25.20001220703125 + }, { + "x0": 486.0, + "y0": 398.1600036621094, + "x1": 525.9599609375, + "y1": 423.7200012207031, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 372.239990234375, + "x1": 525.9599609375, + "y1": 397.79998779296875, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 346.32000732421875, + "x1": 525.9599609375, + "y1": 371.52001953125, + "width": 39.9599609375, + "height": 25.20001220703125 + }, { + "x0": 486.0, + "y0": 320.3999938964844, + "x1": 525.9599609375, + "y1": 345.6000061035156, + "width": 39.9599609375, + "height": 25.20001220703125 + }, { + "x0": 486.0, + "y0": 294.1199951171875, + "x1": 525.9599609375, + "y1": 319.67999267578125, + "width": 39.9599609375, + "height": 25.55999755859375 + }, { + "x0": 486.0, + "y0": 267.47998046875, + "x1": 525.9599609375, + "y1": 293.760009765625, + "width": 39.9599609375, + "height": 26.280029296875 + }, { + "x0": 445.67999267578125, + "y0": 450.7200012207031, + "x1": 485.2799987792969, + "y1": 471.96002197265625, + "width": 39.600006103515625, + "height": 21.240020751953125 + }, { + "x0": 445.67999267578125, + "y0": 424.44000244140625, + "x1": 485.2799987792969, + "y1": 449.6400146484375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 398.1600036621094, + "x1": 485.2799987792969, + "y1": 423.7200012207031, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 372.239990234375, + "x1": 485.2799987792969, + "y1": 397.79998779296875, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 346.32000732421875, + "x1": 485.2799987792969, + "y1": 371.52001953125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 320.3999938964844, + "x1": 485.2799987792969, + "y1": 345.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 445.67999267578125, + "y0": 294.1199951171875, + "x1": 485.2799987792969, + "y1": 319.67999267578125, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 445.67999267578125, + "y0": 267.47998046875, + "x1": 485.2799987792969, + "y1": 293.760009765625, + "width": 39.600006103515625, + "height": 26.280029296875 + }, { + "x0": 405.3599853515625, + "y0": 450.7200012207031, + "x1": 444.9599914550781, + "y1": 471.96002197265625, + "width": 39.600006103515625, + "height": 21.240020751953125 + }, { + "x0": 405.3599853515625, + "y0": 424.44000244140625, + "x1": 444.9599914550781, + "y1": 449.6400146484375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 405.3599853515625, + "y0": 398.1600036621094, + "x1": 444.9599914550781, + "y1": 423.7200012207031, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 372.239990234375, + "x1": 444.9599914550781, + "y1": 397.79998779296875, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 346.32000732421875, + "x1": 444.9599914550781, + "y1": 371.52001953125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 405.3599853515625, + "y0": 320.3999938964844, + "x1": 444.9599914550781, + "y1": 345.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 405.3599853515625, + "y0": 294.1199951171875, + "x1": 444.9599914550781, + "y1": 319.67999267578125, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 405.3599853515625, + "y0": 267.47998046875, + "x1": 444.9599914550781, + "y1": 293.760009765625, + "width": 39.600006103515625, + "height": 26.280029296875 + }, { + "x0": 360.0, + "y0": 450.7200012207031, + "x1": 403.9200134277344, + "y1": 493.55999755859375, + "width": 43.920013427734375, + "height": 42.839996337890625 + }, { + "x0": 360.0, + "y0": 424.44000244140625, + "x1": 403.9200134277344, + "y1": 449.6400146484375, + "width": 43.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 360.0, + "y0": 398.1600036621094, + "x1": 403.9200134277344, + "y1": 423.7200012207031, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 372.239990234375, + "x1": 403.9200134277344, + "y1": 397.79998779296875, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 346.32000732421875, + "x1": 403.9200134277344, + "y1": 371.52001953125, + "width": 43.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 360.0, + "y0": 320.3999938964844, + "x1": 403.9200134277344, + "y1": 345.6000061035156, + "width": 43.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 360.0, + "y0": 294.1199951171875, + "x1": 403.9200134277344, + "y1": 319.67999267578125, + "width": 43.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 360.0, + "y0": 267.47998046875, + "x1": 403.9200134277344, + "y1": 293.760009765625, + "width": 43.920013427734375, + "height": 26.280029296875 + }, { + "x0": 310.67999267578125, + "y0": 450.7200012207031, + "x1": 359.2799987792969, + "y1": 493.55999755859375, + "width": 48.600006103515625, + "height": 42.839996337890625 + }, { + "x0": 310.67999267578125, + "y0": 424.44000244140625, + "x1": 359.2799987792969, + "y1": 449.6400146484375, + "width": 48.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 310.67999267578125, + "y0": 398.1600036621094, + "x1": 359.2799987792969, + "y1": 423.7200012207031, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 372.239990234375, + "x1": 359.2799987792969, + "y1": 397.79998779296875, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 346.32000732421875, + "x1": 359.2799987792969, + "y1": 371.52001953125, + "width": 48.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 310.67999267578125, + "y0": 320.3999938964844, + "x1": 359.2799987792969, + "y1": 345.6000061035156, + "width": 48.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 310.67999267578125, + "y0": 294.1199951171875, + "x1": 359.2799987792969, + "y1": 319.67999267578125, + "width": 48.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 310.67999267578125, + "y0": 267.47998046875, + "x1": 359.2799987792969, + "y1": 293.760009765625, + "width": 48.600006103515625, + "height": 26.280029296875 + }, { + "x0": 261.0, + "y0": 450.7200012207031, + "x1": 309.9599914550781, + "y1": 493.55999755859375, + "width": 48.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 261.0, + "y0": 424.44000244140625, + "x1": 309.9599914550781, + "y1": 449.6400146484375, + "width": 48.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 261.0, + "y0": 398.1600036621094, + "x1": 309.9599914550781, + "y1": 423.7200012207031, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 372.239990234375, + "x1": 309.9599914550781, + "y1": 397.79998779296875, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 346.32000732421875, + "x1": 309.9599914550781, + "y1": 371.52001953125, + "width": 48.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 261.0, + "y0": 320.3999938964844, + "x1": 309.9599914550781, + "y1": 345.6000061035156, + "width": 48.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 261.0, + "y0": 294.1199951171875, + "x1": 309.9599914550781, + "y1": 319.67999267578125, + "width": 48.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 261.0, + "y0": 267.47998046875, + "x1": 309.9599914550781, + "y1": 293.760009765625, + "width": 48.959991455078125, + "height": 26.280029296875 + }, { + "x0": 234.0, + "y0": 450.7200012207031, + "x1": 260.280029296875, + "y1": 493.55999755859375, + "width": 26.280029296875, + "height": 42.839996337890625 + }, { + "x0": 234.0, + "y0": 424.44000244140625, + "x1": 260.280029296875, + "y1": 449.6400146484375, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 234.0, + "y0": 398.1600036621094, + "x1": 260.280029296875, + "y1": 423.7200012207031, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 372.239990234375, + "x1": 260.280029296875, + "y1": 397.79998779296875, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 346.32000732421875, + "x1": 260.280029296875, + "y1": 371.52001953125, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 234.0, + "y0": 320.3999938964844, + "x1": 260.280029296875, + "y1": 345.6000061035156, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 234.0, + "y0": 294.1199951171875, + "x1": 260.280029296875, + "y1": 319.67999267578125, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 234.0, + "y0": 267.47998046875, + "x1": 260.280029296875, + "y1": 293.760009765625, + "width": 26.280029296875, + "height": 26.280029296875 + }, { + "x0": 193.67999267578125, + "y0": 450.7200012207031, + "x1": 233.280029296875, + "y1": 493.55999755859375, + "width": 39.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 193.67999267578125, + "y0": 424.44000244140625, + "x1": 233.280029296875, + "y1": 449.6400146484375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 193.67999267578125, + "y0": 398.1600036621094, + "x1": 233.280029296875, + "y1": 423.7200012207031, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 372.239990234375, + "x1": 233.280029296875, + "y1": 397.79998779296875, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 346.32000732421875, + "x1": 233.280029296875, + "y1": 371.52001953125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 193.67999267578125, + "y0": 320.3999938964844, + "x1": 233.280029296875, + "y1": 345.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 193.67999267578125, + "y0": 294.1199951171875, + "x1": 233.280029296875, + "y1": 319.67999267578125, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 193.67999267578125, + "y0": 267.47998046875, + "x1": 233.280029296875, + "y1": 293.760009765625, + "width": 39.60003662109375, + "height": 26.280029296875 + }, { + "x0": 74.8800048828125, + "y0": 450.7200012207031, + "x1": 192.96002197265625, + "y1": 493.55999755859375, + "width": 118.08001708984375, + "height": 42.839996337890625 + }, { + "x0": 74.8800048828125, + "y0": 424.44000244140625, + "x1": 192.96002197265625, + "y1": 449.6400146484375, + "width": 118.08001708984375, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 398.1600036621094, + "x1": 192.96002197265625, + "y1": 423.7200012207031, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 372.239990234375, + "x1": 192.96002197265625, + "y1": 397.79998779296875, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 346.32000732421875, + "x1": 192.96002197265625, + "y1": 371.52001953125, + "width": 118.08001708984375, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 320.3999938964844, + "x1": 192.96002197265625, + "y1": 345.6000061035156, + "width": 118.08001708984375, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 294.1199951171875, + "x1": 192.96002197265625, + "y1": 319.67999267578125, + "width": 118.08001708984375, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 267.47998046875, + "x1": 192.96002197265625, + "y1": 293.760009765625, + "width": 118.08001708984375, + "height": 26.280029296875 + } + ] + }, { + "pageInfo": { + "number": 112, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 558.3599853515625, + "y0": 457.91998291015625, + "x1": 710.280029296875, + "y1": 478.79998779296875, + "width": 151.9200439453125, + "height": 20.8800048828125 + }, { + "x0": 670.6799926757812, + "y0": 435.96002197265625, + "x1": 710.280029296875, + "y1": 457.20001220703125, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 670.6799926757812, + "y0": 409.32000732421875, + "x1": 710.280029296875, + "y1": 434.52001953125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 383.3999938964844, + "x1": 710.280029296875, + "y1": 408.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 357.47998046875, + "x1": 710.280029296875, + "y1": 382.67999267578125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 331.20001220703125, + "x1": 710.280029296875, + "y1": 356.760009765625, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 670.6799926757812, + "y0": 305.2799987792969, + "x1": 710.280029296875, + "y1": 330.8399963378906, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 670.6799926757812, + "y0": 279.3599853515625, + "x1": 710.280029296875, + "y1": 304.55999755859375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 670.6799926757812, + "y0": 252.3599853515625, + "x1": 710.280029296875, + "y1": 278.6400146484375, + "width": 39.60003662109375, + "height": 26.280029296875 + }, { + "x0": 634.6799926757812, + "y0": 435.96002197265625, + "x1": 669.9600219726562, + "y1": 457.20001220703125, + "width": 35.280029296875, + "height": 21.239990234375 + }, { + "x0": 634.6799926757812, + "y0": 409.32000732421875, + "x1": 669.9600219726562, + "y1": 434.52001953125, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 634.6799926757812, + "y0": 383.3999938964844, + "x1": 669.9600219726562, + "y1": 408.6000061035156, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 634.6799926757812, + "y0": 357.47998046875, + "x1": 669.9600219726562, + "y1": 382.67999267578125, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 634.6799926757812, + "y0": 331.20001220703125, + "x1": 669.9600219726562, + "y1": 356.760009765625, + "width": 35.280029296875, + "height": 25.55999755859375 + }, { + "x0": 634.6799926757812, + "y0": 305.2799987792969, + "x1": 669.9600219726562, + "y1": 330.8399963378906, + "width": 35.280029296875, + "height": 25.55999755859375 + }, { + "x0": 634.6799926757812, + "y0": 279.3599853515625, + "x1": 669.9600219726562, + "y1": 304.55999755859375, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 634.6799926757812, + "y0": 252.3599853515625, + "x1": 669.9600219726562, + "y1": 278.6400146484375, + "width": 35.280029296875, + "height": 26.280029296875 + }, { + "x0": 598.6799926757812, + "y0": 435.96002197265625, + "x1": 633.9600219726562, + "y1": 457.20001220703125, + "width": 35.280029296875, + "height": 21.239990234375 + }, { + "x0": 598.6799926757812, + "y0": 409.32000732421875, + "x1": 633.9600219726562, + "y1": 434.52001953125, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 598.6799926757812, + "y0": 383.3999938964844, + "x1": 633.9600219726562, + "y1": 408.6000061035156, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 598.6799926757812, + "y0": 357.47998046875, + "x1": 633.9600219726562, + "y1": 382.67999267578125, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 598.6799926757812, + "y0": 331.20001220703125, + "x1": 633.9600219726562, + "y1": 356.760009765625, + "width": 35.280029296875, + "height": 25.55999755859375 + }, { + "x0": 598.6799926757812, + "y0": 305.2799987792969, + "x1": 633.9600219726562, + "y1": 330.8399963378906, + "width": 35.280029296875, + "height": 25.55999755859375 + }, { + "x0": 598.6799926757812, + "y0": 279.3599853515625, + "x1": 633.9600219726562, + "y1": 304.55999755859375, + "width": 35.280029296875, + "height": 25.20001220703125 + }, { + "x0": 598.6799926757812, + "y0": 252.3599853515625, + "x1": 633.9600219726562, + "y1": 278.6400146484375, + "width": 35.280029296875, + "height": 26.280029296875 + }, { + "x0": 558.3599853515625, + "y0": 435.96002197265625, + "x1": 597.9600219726562, + "y1": 457.20001220703125, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 558.3599853515625, + "y0": 409.32000732421875, + "x1": 597.9600219726562, + "y1": 434.52001953125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 558.3599853515625, + "y0": 383.3999938964844, + "x1": 597.9600219726562, + "y1": 408.6000061035156, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 558.3599853515625, + "y0": 357.47998046875, + "x1": 597.9600219726562, + "y1": 382.67999267578125, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 558.3599853515625, + "y0": 331.20001220703125, + "x1": 597.9600219726562, + "y1": 356.760009765625, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 558.3599853515625, + "y0": 305.2799987792969, + "x1": 597.9600219726562, + "y1": 330.8399963378906, + "width": 39.60003662109375, + "height": 25.55999755859375 + }, { + "x0": 558.3599853515625, + "y0": 279.3599853515625, + "x1": 597.9600219726562, + "y1": 304.55999755859375, + "width": 39.60003662109375, + "height": 25.20001220703125 + }, { + "x0": 558.3599853515625, + "y0": 252.3599853515625, + "x1": 597.9600219726562, + "y1": 278.6400146484375, + "width": 39.60003662109375, + "height": 26.280029296875 + }, { + "x0": 403.55999755859375, + "y0": 457.91998291015625, + "x1": 556.9199829101562, + "y1": 478.79998779296875, + "width": 153.3599853515625, + "height": 20.8800048828125 + }, { + "x0": 521.280029296875, + "y0": 435.96002197265625, + "x1": 556.9199829101562, + "y1": 457.20001220703125, + "width": 35.63995361328125, + "height": 21.239990234375 + }, { + "x0": 521.280029296875, + "y0": 409.32000732421875, + "x1": 556.9199829101562, + "y1": 434.52001953125, + "width": 35.63995361328125, + "height": 25.20001220703125 + }, { + "x0": 521.280029296875, + "y0": 383.3999938964844, + "x1": 556.9199829101562, + "y1": 408.6000061035156, + "width": 35.63995361328125, + "height": 25.20001220703125 + }, { + "x0": 521.280029296875, + "y0": 357.47998046875, + "x1": 556.9199829101562, + "y1": 382.67999267578125, + "width": 35.63995361328125, + "height": 25.20001220703125 + }, { + "x0": 521.280029296875, + "y0": 331.20001220703125, + "x1": 556.9199829101562, + "y1": 356.760009765625, + "width": 35.63995361328125, + "height": 25.55999755859375 + }, { + "x0": 521.280029296875, + "y0": 305.2799987792969, + "x1": 556.9199829101562, + "y1": 330.8399963378906, + "width": 35.63995361328125, + "height": 25.55999755859375 + }, { + "x0": 521.280029296875, + "y0": 279.3599853515625, + "x1": 556.9199829101562, + "y1": 304.55999755859375, + "width": 35.63995361328125, + "height": 25.20001220703125 + }, { + "x0": 521.280029296875, + "y0": 252.3599853515625, + "x1": 556.9199829101562, + "y1": 278.6400146484375, + "width": 35.63995361328125, + "height": 26.280029296875 + }, { + "x0": 480.6000061035156, + "y0": 435.96002197265625, + "x1": 520.5599975585938, + "y1": 457.20001220703125, + "width": 39.959991455078125, + "height": 21.239990234375 + }, { + "x0": 480.6000061035156, + "y0": 409.32000732421875, + "x1": 520.5599975585938, + "y1": 434.52001953125, + "width": 39.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 480.6000061035156, + "y0": 383.3999938964844, + "x1": 520.5599975585938, + "y1": 408.6000061035156, + "width": 39.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 480.6000061035156, + "y0": 357.47998046875, + "x1": 520.5599975585938, + "y1": 382.67999267578125, + "width": 39.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 480.6000061035156, + "y0": 331.20001220703125, + "x1": 520.5599975585938, + "y1": 356.760009765625, + "width": 39.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 480.6000061035156, + "y0": 305.2799987792969, + "x1": 520.5599975585938, + "y1": 330.8399963378906, + "width": 39.959991455078125, + "height": 25.55999755859375 + }, { + "x0": 480.6000061035156, + "y0": 279.3599853515625, + "x1": 520.5599975585938, + "y1": 304.55999755859375, + "width": 39.959991455078125, + "height": 25.20001220703125 + }, { + "x0": 480.6000061035156, + "y0": 252.3599853515625, + "x1": 520.5599975585938, + "y1": 278.6400146484375, + "width": 39.959991455078125, + "height": 26.280029296875 + }, { + "x0": 443.8800048828125, + "y0": 435.96002197265625, + "x1": 479.8800048828125, + "y1": 457.20001220703125, + "width": 36.0, + "height": 21.239990234375 + }, { + "x0": 443.8800048828125, + "y0": 409.32000732421875, + "x1": 479.8800048828125, + "y1": 434.52001953125, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 443.8800048828125, + "y0": 383.3999938964844, + "x1": 479.8800048828125, + "y1": 408.6000061035156, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 443.8800048828125, + "y0": 357.47998046875, + "x1": 479.8800048828125, + "y1": 382.67999267578125, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 443.8800048828125, + "y0": 331.20001220703125, + "x1": 479.8800048828125, + "y1": 356.760009765625, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 443.8800048828125, + "y0": 305.2799987792969, + "x1": 479.8800048828125, + "y1": 330.8399963378906, + "width": 36.0, + "height": 25.55999755859375 + }, { + "x0": 443.8800048828125, + "y0": 279.3599853515625, + "x1": 479.8800048828125, + "y1": 304.55999755859375, + "width": 36.0, + "height": 25.20001220703125 + }, { + "x0": 443.8800048828125, + "y0": 252.3599853515625, + "x1": 479.8800048828125, + "y1": 278.6400146484375, + "width": 36.0, + "height": 26.280029296875 + }, { + "x0": 403.55999755859375, + "y0": 435.96002197265625, + "x1": 443.1600036621094, + "y1": 457.20001220703125, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 403.55999755859375, + "y0": 409.32000732421875, + "x1": 443.1600036621094, + "y1": 434.52001953125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 403.55999755859375, + "y0": 383.3999938964844, + "x1": 443.1600036621094, + "y1": 408.6000061035156, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 403.55999755859375, + "y0": 357.47998046875, + "x1": 443.1600036621094, + "y1": 382.67999267578125, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 403.55999755859375, + "y0": 331.20001220703125, + "x1": 443.1600036621094, + "y1": 356.760009765625, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 403.55999755859375, + "y0": 305.2799987792969, + "x1": 443.1600036621094, + "y1": 330.8399963378906, + "width": 39.600006103515625, + "height": 25.55999755859375 + }, { + "x0": 403.55999755859375, + "y0": 279.3599853515625, + "x1": 443.1600036621094, + "y1": 304.55999755859375, + "width": 39.600006103515625, + "height": 25.20001220703125 + }, { + "x0": 403.55999755859375, + "y0": 252.3599853515625, + "x1": 443.1600036621094, + "y1": 278.6400146484375, + "width": 39.600006103515625, + "height": 26.280029296875 + }, { + "x0": 367.55999755859375, + "y0": 435.96002197265625, + "x1": 402.4800109863281, + "y1": 478.79998779296875, + "width": 34.920013427734375, + "height": 42.8399658203125 + }, { + "x0": 367.55999755859375, + "y0": 409.32000732421875, + "x1": 402.4800109863281, + "y1": 434.52001953125, + "width": 34.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 367.55999755859375, + "y0": 383.3999938964844, + "x1": 402.4800109863281, + "y1": 408.6000061035156, + "width": 34.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 367.55999755859375, + "y0": 357.47998046875, + "x1": 402.4800109863281, + "y1": 382.67999267578125, + "width": 34.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 367.55999755859375, + "y0": 331.20001220703125, + "x1": 402.4800109863281, + "y1": 356.760009765625, + "width": 34.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 367.55999755859375, + "y0": 305.2799987792969, + "x1": 402.4800109863281, + "y1": 330.8399963378906, + "width": 34.920013427734375, + "height": 25.55999755859375 + }, { + "x0": 367.55999755859375, + "y0": 279.3599853515625, + "x1": 402.4800109863281, + "y1": 304.55999755859375, + "width": 34.920013427734375, + "height": 25.20001220703125 + }, { + "x0": 367.55999755859375, + "y0": 252.3599853515625, + "x1": 402.4800109863281, + "y1": 278.6400146484375, + "width": 34.920013427734375, + "height": 26.280029296875 + }, { + "x0": 313.55999755859375, + "y0": 435.96002197265625, + "x1": 366.8399963378906, + "y1": 478.79998779296875, + "width": 53.279998779296875, + "height": 42.8399658203125 + }, { + "x0": 313.55999755859375, + "y0": 409.32000732421875, + "x1": 366.8399963378906, + "y1": 434.52001953125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 313.55999755859375, + "y0": 383.3999938964844, + "x1": 366.8399963378906, + "y1": 408.6000061035156, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 313.55999755859375, + "y0": 357.47998046875, + "x1": 366.8399963378906, + "y1": 382.67999267578125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 313.55999755859375, + "y0": 331.20001220703125, + "x1": 366.8399963378906, + "y1": 356.760009765625, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 313.55999755859375, + "y0": 305.2799987792969, + "x1": 366.8399963378906, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 313.55999755859375, + "y0": 279.3599853515625, + "x1": 366.8399963378906, + "y1": 304.55999755859375, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 313.55999755859375, + "y0": 252.3599853515625, + "x1": 366.8399963378906, + "y1": 278.6400146484375, + "width": 53.279998779296875, + "height": 26.280029296875 + }, { + "x0": 259.55999755859375, + "y0": 435.96002197265625, + "x1": 312.8399963378906, + "y1": 478.79998779296875, + "width": 53.279998779296875, + "height": 42.8399658203125 + }, { + "x0": 259.55999755859375, + "y0": 409.32000732421875, + "x1": 312.8399963378906, + "y1": 434.52001953125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 259.55999755859375, + "y0": 383.3999938964844, + "x1": 312.8399963378906, + "y1": 408.6000061035156, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 259.55999755859375, + "y0": 357.47998046875, + "x1": 312.8399963378906, + "y1": 382.67999267578125, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 259.55999755859375, + "y0": 331.20001220703125, + "x1": 312.8399963378906, + "y1": 356.760009765625, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 259.55999755859375, + "y0": 305.2799987792969, + "x1": 312.8399963378906, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 25.55999755859375 + }, { + "x0": 259.55999755859375, + "y0": 279.3599853515625, + "x1": 312.8399963378906, + "y1": 304.55999755859375, + "width": 53.279998779296875, + "height": 25.20001220703125 + }, { + "x0": 259.55999755859375, + "y0": 252.3599853515625, + "x1": 312.8399963378906, + "y1": 278.6400146484375, + "width": 53.279998779296875, + "height": 26.280029296875 + }, { + "x0": 232.55999755859375, + "y0": 435.96002197265625, + "x1": 258.84002685546875, + "y1": 478.79998779296875, + "width": 26.280029296875, + "height": 42.8399658203125 + }, { + "x0": 232.55999755859375, + "y0": 409.32000732421875, + "x1": 258.84002685546875, + "y1": 434.52001953125, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 232.55999755859375, + "y0": 383.3999938964844, + "x1": 258.84002685546875, + "y1": 408.6000061035156, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 232.55999755859375, + "y0": 357.47998046875, + "x1": 258.84002685546875, + "y1": 382.67999267578125, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 232.55999755859375, + "y0": 331.20001220703125, + "x1": 258.84002685546875, + "y1": 356.760009765625, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 232.55999755859375, + "y0": 305.2799987792969, + "x1": 258.84002685546875, + "y1": 330.8399963378906, + "width": 26.280029296875, + "height": 25.55999755859375 + }, { + "x0": 232.55999755859375, + "y0": 279.3599853515625, + "x1": 258.84002685546875, + "y1": 304.55999755859375, + "width": 26.280029296875, + "height": 25.20001220703125 + }, { + "x0": 232.55999755859375, + "y0": 252.3599853515625, + "x1": 258.84002685546875, + "y1": 278.6400146484375, + "width": 26.280029296875, + "height": 26.280029296875 + }, { + "x0": 186.47998046875, + "y0": 435.96002197265625, + "x1": 231.84002685546875, + "y1": 478.79998779296875, + "width": 45.36004638671875, + "height": 42.8399658203125 + }, { + "x0": 186.47998046875, + "y0": 409.32000732421875, + "x1": 231.84002685546875, + "y1": 434.52001953125, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 186.47998046875, + "y0": 383.3999938964844, + "x1": 231.84002685546875, + "y1": 408.6000061035156, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 186.47998046875, + "y0": 357.47998046875, + "x1": 231.84002685546875, + "y1": 382.67999267578125, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 186.47998046875, + "y0": 331.20001220703125, + "x1": 231.84002685546875, + "y1": 356.760009765625, + "width": 45.36004638671875, + "height": 25.55999755859375 + }, { + "x0": 186.47998046875, + "y0": 305.2799987792969, + "x1": 231.84002685546875, + "y1": 330.8399963378906, + "width": 45.36004638671875, + "height": 25.55999755859375 + }, { + "x0": 186.47998046875, + "y0": 279.3599853515625, + "x1": 231.84002685546875, + "y1": 304.55999755859375, + "width": 45.36004638671875, + "height": 25.20001220703125 + }, { + "x0": 186.47998046875, + "y0": 252.3599853515625, + "x1": 231.84002685546875, + "y1": 278.6400146484375, + "width": 45.36004638671875, + "height": 26.280029296875 + }, { + "x0": 74.8800048828125, + "y0": 435.96002197265625, + "x1": 185.760009765625, + "y1": 478.79998779296875, + "width": 110.8800048828125, + "height": 42.8399658203125 + }, { + "x0": 74.8800048828125, + "y0": 409.32000732421875, + "x1": 185.760009765625, + "y1": 434.52001953125, + "width": 110.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 383.3999938964844, + "x1": 185.760009765625, + "y1": 408.6000061035156, + "width": 110.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 357.47998046875, + "x1": 185.760009765625, + "y1": 382.67999267578125, + "width": 110.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 331.20001220703125, + "x1": 185.760009765625, + "y1": 356.760009765625, + "width": 110.8800048828125, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 305.2799987792969, + "x1": 185.760009765625, + "y1": 330.8399963378906, + "width": 110.8800048828125, + "height": 25.55999755859375 + }, { + "x0": 74.8800048828125, + "y0": 279.3599853515625, + "x1": 185.760009765625, + "y1": 304.55999755859375, + "width": 110.8800048828125, + "height": 25.20001220703125 + }, { + "x0": 74.8800048828125, + "y0": 252.3599853515625, + "x1": 185.760009765625, + "y1": 278.6400146484375, + "width": 110.8800048828125, + "height": 26.280029296875 + } + ] + }, { + "pageInfo": { + "number": 113, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 613.4400024414062, + "y0": 431.2799987792969, + "x1": 667.4400024414062, + "y1": 446.760009765625, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 414.7200012207031, + "x1": 667.4400024414062, + "y1": 430.20001220703125, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 397.79998779296875, + "x1": 667.4400024414062, + "y1": 413.2799987792969, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 381.239990234375, + "x1": 667.4400024414062, + "y1": 396.7200012207031, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 364.32000732421875, + "x1": 667.4400024414062, + "y1": 379.79998779296875, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 347.760009765625, + "x1": 667.4400024414062, + "y1": 363.239990234375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 331.55999755859375, + "x1": 667.4400024414062, + "y1": 346.67999267578125, + "width": 54.0, + "height": 15.1199951171875 + }, { + "x0": 613.4400024414062, + "y0": 315.0, + "x1": 667.4400024414062, + "y1": 330.8399963378906, + "width": 54.0, + "height": 15.839996337890625 + }, { + "x0": 613.4400024414062, + "y0": 298.44000244140625, + "x1": 667.4400024414062, + "y1": 313.9200134277344, + "width": 54.0, + "height": 15.480010986328125 + }, { + "x0": 613.4400024414062, + "y0": 281.5199890136719, + "x1": 667.4400024414062, + "y1": 297.3599853515625, + "width": 54.0, + "height": 15.839996337890625 + }, { + "x0": 613.4400024414062, + "y0": 264.5999755859375, + "x1": 667.4400024414062, + "y1": 280.44000244140625, + "width": 54.0, + "height": 15.84002685546875 + }, { + "x0": 613.4400024414062, + "y0": 248.0400390625, + "x1": 667.4400024414062, + "y1": 263.52001953125, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 231.1199951171875, + "x1": 667.4400024414062, + "y1": 246.9599609375, + "width": 54.0, + "height": 15.8399658203125 + }, { + "x0": 613.4400024414062, + "y0": 215.280029296875, + "x1": 667.4400024414062, + "y1": 230.4000244140625, + "width": 54.0, + "height": 15.1199951171875 + }, { + "x0": 613.4400024414062, + "y0": 198.719970703125, + "x1": 667.4400024414062, + "y1": 214.20001220703125, + "width": 54.0, + "height": 15.48004150390625 + }, { + "x0": 613.4400024414062, + "y0": 182.1600341796875, + "x1": 667.4400024414062, + "y1": 197.6400146484375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 165.239990234375, + "x1": 667.4400024414062, + "y1": 180.719970703125, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 148.67999267578125, + "x1": 667.4400024414062, + "y1": 164.1600341796875, + "width": 54.0, + "height": 15.48004150390625 + }, { + "x0": 613.4400024414062, + "y0": 131.760009765625, + "x1": 667.4400024414062, + "y1": 147.239990234375, + "width": 54.0, + "height": 15.47998046875 + }, { + "x0": 613.4400024414062, + "y0": 114.8399658203125, + "x1": 667.4400024414062, + "y1": 130.67999267578125, + "width": 54.0, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 431.2799987792969, + "x1": 612.3599853515625, + "y1": 446.760009765625, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 414.7200012207031, + "x1": 612.3599853515625, + "y1": 430.20001220703125, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 397.79998779296875, + "x1": 612.3599853515625, + "y1": 413.2799987792969, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 381.239990234375, + "x1": 612.3599853515625, + "y1": 396.7200012207031, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 364.32000732421875, + "x1": 612.3599853515625, + "y1": 379.79998779296875, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 347.760009765625, + "x1": 612.3599853515625, + "y1": 363.239990234375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 331.55999755859375, + "x1": 612.3599853515625, + "y1": 346.67999267578125, + "width": 49.67999267578125, + "height": 15.1199951171875 + }, { + "x0": 562.6799926757812, + "y0": 315.0, + "x1": 612.3599853515625, + "y1": 330.8399963378906, + "width": 49.67999267578125, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 298.44000244140625, + "x1": 612.3599853515625, + "y1": 313.9200134277344, + "width": 49.67999267578125, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 281.5199890136719, + "x1": 612.3599853515625, + "y1": 297.3599853515625, + "width": 49.67999267578125, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 264.5999755859375, + "x1": 612.3599853515625, + "y1": 280.44000244140625, + "width": 49.67999267578125, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 248.0400390625, + "x1": 612.3599853515625, + "y1": 263.52001953125, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 231.1199951171875, + "x1": 612.3599853515625, + "y1": 246.9599609375, + "width": 49.67999267578125, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 215.280029296875, + "x1": 612.3599853515625, + "y1": 230.4000244140625, + "width": 49.67999267578125, + "height": 15.1199951171875 + }, { + "x0": 562.6799926757812, + "y0": 198.719970703125, + "x1": 612.3599853515625, + "y1": 214.20001220703125, + "width": 49.67999267578125, + "height": 15.48004150390625 + }, { + "x0": 562.6799926757812, + "y0": 182.1600341796875, + "x1": 612.3599853515625, + "y1": 197.6400146484375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 165.239990234375, + "x1": 612.3599853515625, + "y1": 180.719970703125, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 148.67999267578125, + "x1": 612.3599853515625, + "y1": 164.1600341796875, + "width": 49.67999267578125, + "height": 15.48004150390625 + }, { + "x0": 562.6799926757812, + "y0": 131.760009765625, + "x1": 612.3599853515625, + "y1": 147.239990234375, + "width": 49.67999267578125, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 114.8399658203125, + "x1": 612.3599853515625, + "y1": 130.67999267578125, + "width": 49.67999267578125, + "height": 15.84002685546875 + }, { + "x0": 503.2799987792969, + "y0": 431.2799987792969, + "x1": 561.5999755859375, + "y1": 446.760009765625, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 414.7200012207031, + "x1": 561.5999755859375, + "y1": 430.20001220703125, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 397.79998779296875, + "x1": 561.5999755859375, + "y1": 413.2799987792969, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 381.239990234375, + "x1": 561.5999755859375, + "y1": 396.7200012207031, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 364.32000732421875, + "x1": 561.5999755859375, + "y1": 379.79998779296875, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 347.760009765625, + "x1": 561.5999755859375, + "y1": 363.239990234375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 331.55999755859375, + "x1": 561.5999755859375, + "y1": 346.67999267578125, + "width": 58.319976806640625, + "height": 15.1199951171875 + }, { + "x0": 503.2799987792969, + "y0": 315.0, + "x1": 561.5999755859375, + "y1": 330.8399963378906, + "width": 58.319976806640625, + "height": 15.839996337890625 + }, { + "x0": 503.2799987792969, + "y0": 298.44000244140625, + "x1": 561.5999755859375, + "y1": 313.9200134277344, + "width": 58.319976806640625, + "height": 15.480010986328125 + }, { + "x0": 503.2799987792969, + "y0": 281.5199890136719, + "x1": 561.5999755859375, + "y1": 297.3599853515625, + "width": 58.319976806640625, + "height": 15.839996337890625 + }, { + "x0": 503.2799987792969, + "y0": 264.5999755859375, + "x1": 561.5999755859375, + "y1": 280.44000244140625, + "width": 58.319976806640625, + "height": 15.84002685546875 + }, { + "x0": 503.2799987792969, + "y0": 248.0400390625, + "x1": 561.5999755859375, + "y1": 263.52001953125, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 231.1199951171875, + "x1": 561.5999755859375, + "y1": 246.9599609375, + "width": 58.319976806640625, + "height": 15.8399658203125 + }, { + "x0": 503.2799987792969, + "y0": 215.280029296875, + "x1": 561.5999755859375, + "y1": 230.4000244140625, + "width": 58.319976806640625, + "height": 15.1199951171875 + }, { + "x0": 503.2799987792969, + "y0": 198.719970703125, + "x1": 561.5999755859375, + "y1": 214.20001220703125, + "width": 58.319976806640625, + "height": 15.48004150390625 + }, { + "x0": 503.2799987792969, + "y0": 182.1600341796875, + "x1": 561.5999755859375, + "y1": 197.6400146484375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 165.239990234375, + "x1": 561.5999755859375, + "y1": 180.719970703125, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 148.67999267578125, + "x1": 561.5999755859375, + "y1": 164.1600341796875, + "width": 58.319976806640625, + "height": 15.48004150390625 + }, { + "x0": 503.2799987792969, + "y0": 131.760009765625, + "x1": 561.5999755859375, + "y1": 147.239990234375, + "width": 58.319976806640625, + "height": 15.47998046875 + }, { + "x0": 503.2799987792969, + "y0": 114.8399658203125, + "x1": 561.5999755859375, + "y1": 130.67999267578125, + "width": 58.319976806640625, + "height": 15.84002685546875 + }, { + "x0": 403.55999755859375, + "y0": 431.2799987792969, + "x1": 502.20001220703125, + "y1": 446.760009765625, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 414.7200012207031, + "x1": 502.20001220703125, + "y1": 430.20001220703125, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 397.79998779296875, + "x1": 502.20001220703125, + "y1": 413.2799987792969, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 381.239990234375, + "x1": 502.20001220703125, + "y1": 396.7200012207031, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 364.32000732421875, + "x1": 502.20001220703125, + "y1": 379.79998779296875, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 347.760009765625, + "x1": 502.20001220703125, + "y1": 363.239990234375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 331.55999755859375, + "x1": 502.20001220703125, + "y1": 346.67999267578125, + "width": 98.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 403.55999755859375, + "y0": 315.0, + "x1": 502.20001220703125, + "y1": 330.8399963378906, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 403.55999755859375, + "y0": 298.44000244140625, + "x1": 502.20001220703125, + "y1": 313.9200134277344, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 403.55999755859375, + "y0": 281.5199890136719, + "x1": 502.20001220703125, + "y1": 297.3599853515625, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 403.55999755859375, + "y0": 264.5999755859375, + "x1": 502.20001220703125, + "y1": 280.44000244140625, + "width": 98.6400146484375, + "height": 15.84002685546875 + }, { + "x0": 403.55999755859375, + "y0": 248.0400390625, + "x1": 502.20001220703125, + "y1": 263.52001953125, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 231.1199951171875, + "x1": 502.20001220703125, + "y1": 246.9599609375, + "width": 98.6400146484375, + "height": 15.8399658203125 + }, { + "x0": 403.55999755859375, + "y0": 215.280029296875, + "x1": 502.20001220703125, + "y1": 230.4000244140625, + "width": 98.6400146484375, + "height": 15.1199951171875 + }, { + "x0": 403.55999755859375, + "y0": 198.719970703125, + "x1": 502.20001220703125, + "y1": 214.20001220703125, + "width": 98.6400146484375, + "height": 15.48004150390625 + }, { + "x0": 403.55999755859375, + "y0": 182.1600341796875, + "x1": 502.20001220703125, + "y1": 197.6400146484375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 165.239990234375, + "x1": 502.20001220703125, + "y1": 180.719970703125, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 148.67999267578125, + "x1": 502.20001220703125, + "y1": 164.1600341796875, + "width": 98.6400146484375, + "height": 15.48004150390625 + }, { + "x0": 403.55999755859375, + "y0": 131.760009765625, + "x1": 502.20001220703125, + "y1": 147.239990234375, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 403.55999755859375, + "y0": 114.8399658203125, + "x1": 502.20001220703125, + "y1": 130.67999267578125, + "width": 98.6400146484375, + "height": 15.84002685546875 + }, { + "x0": 385.55999755859375, + "y0": 331.20001220703125, + "x1": 402.8399963378906, + "y1": 347.0400085449219, + "width": 17.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 385.55999755859375, + "y0": 214.9200439453125, + "x1": 402.8399963378906, + "y1": 230.760009765625, + "width": 17.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 385.9200134277344, + "y0": 315.0, + "x1": 402.4800109863281, + "y1": 330.8399963378906, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 385.9200134277344, + "y0": 281.5199890136719, + "x1": 402.4800109863281, + "y1": 297.3599853515625, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 385.9200134277344, + "y0": 264.5999755859375, + "x1": 402.4800109863281, + "y1": 280.44000244140625, + "width": 16.55999755859375, + "height": 15.84002685546875 + }, { + "x0": 385.9200134277344, + "y0": 231.1199951171875, + "x1": 402.4800109863281, + "y1": 246.9599609375, + "width": 16.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 385.9200134277344, + "y0": 114.8399658203125, + "x1": 402.4800109863281, + "y1": 130.67999267578125, + "width": 16.55999755859375, + "height": 15.84002685546875 + }, { + "x0": 338.0400085449219, + "y0": 431.2799987792969, + "x1": 384.8399963378906, + "y1": 446.760009765625, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 414.7200012207031, + "x1": 384.8399963378906, + "y1": 430.20001220703125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 397.79998779296875, + "x1": 384.8399963378906, + "y1": 413.2799987792969, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 381.239990234375, + "x1": 384.8399963378906, + "y1": 396.7200012207031, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 364.32000732421875, + "x1": 384.8399963378906, + "y1": 379.79998779296875, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 347.760009765625, + "x1": 384.8399963378906, + "y1": 363.239990234375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 331.55999755859375, + "x1": 384.8399963378906, + "y1": 346.67999267578125, + "width": 46.79998779296875, + "height": 15.1199951171875 + }, { + "x0": 338.0400085449219, + "y0": 315.0, + "x1": 384.8399963378906, + "y1": 330.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 338.0400085449219, + "y0": 298.44000244140625, + "x1": 384.8399963378906, + "y1": 313.9200134277344, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 338.0400085449219, + "y0": 281.5199890136719, + "x1": 384.8399963378906, + "y1": 297.3599853515625, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 338.0400085449219, + "y0": 264.5999755859375, + "x1": 384.8399963378906, + "y1": 280.44000244140625, + "width": 46.79998779296875, + "height": 15.84002685546875 + }, { + "x0": 338.0400085449219, + "y0": 248.0400390625, + "x1": 384.8399963378906, + "y1": 263.52001953125, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 231.1199951171875, + "x1": 384.8399963378906, + "y1": 246.9599609375, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 338.0400085449219, + "y0": 215.280029296875, + "x1": 384.8399963378906, + "y1": 230.4000244140625, + "width": 46.79998779296875, + "height": 15.1199951171875 + }, { + "x0": 338.0400085449219, + "y0": 198.719970703125, + "x1": 384.8399963378906, + "y1": 214.20001220703125, + "width": 46.79998779296875, + "height": 15.48004150390625 + }, { + "x0": 338.0400085449219, + "y0": 182.1600341796875, + "x1": 384.8399963378906, + "y1": 197.6400146484375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 165.239990234375, + "x1": 384.8399963378906, + "y1": 180.719970703125, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 148.67999267578125, + "x1": 384.8399963378906, + "y1": 164.1600341796875, + "width": 46.79998779296875, + "height": 15.48004150390625 + }, { + "x0": 338.0400085449219, + "y0": 131.760009765625, + "x1": 384.8399963378906, + "y1": 147.239990234375, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 338.0400085449219, + "y0": 114.8399658203125, + "x1": 384.8399963378906, + "y1": 130.67999267578125, + "width": 46.79998779296875, + "height": 15.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 431.2799987792969, + "x1": 336.9599914550781, + "y1": 446.760009765625, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 414.7200012207031, + "x1": 336.9599914550781, + "y1": 430.20001220703125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 397.79998779296875, + "x1": 336.9599914550781, + "y1": 413.2799987792969, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 381.239990234375, + "x1": 336.9599914550781, + "y1": 396.7200012207031, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 364.32000732421875, + "x1": 336.9599914550781, + "y1": 379.79998779296875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 347.760009765625, + "x1": 336.9599914550781, + "y1": 363.239990234375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 331.55999755859375, + "x1": 336.9599914550781, + "y1": 346.67999267578125, + "width": 53.279998779296875, + "height": 15.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 315.0, + "x1": 336.9599914550781, + "y1": 330.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 283.67999267578125, + "y0": 298.44000244140625, + "x1": 336.9599914550781, + "y1": 313.9200134277344, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 283.67999267578125, + "y0": 281.5199890136719, + "x1": 336.9599914550781, + "y1": 297.3599853515625, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 283.67999267578125, + "y0": 264.5999755859375, + "x1": 336.9599914550781, + "y1": 280.44000244140625, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 248.0400390625, + "x1": 336.9599914550781, + "y1": 263.52001953125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 231.1199951171875, + "x1": 336.9599914550781, + "y1": 246.9599609375, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 283.67999267578125, + "y0": 215.280029296875, + "x1": 336.9599914550781, + "y1": 230.4000244140625, + "width": 53.279998779296875, + "height": 15.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 198.719970703125, + "x1": 336.9599914550781, + "y1": 214.20001220703125, + "width": 53.279998779296875, + "height": 15.48004150390625 + }, { + "x0": 283.67999267578125, + "y0": 182.1600341796875, + "x1": 336.9599914550781, + "y1": 197.6400146484375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 165.239990234375, + "x1": 336.9599914550781, + "y1": 180.719970703125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 148.67999267578125, + "x1": 336.9599914550781, + "y1": 164.1600341796875, + "width": 53.279998779296875, + "height": 15.48004150390625 + }, { + "x0": 283.67999267578125, + "y0": 131.760009765625, + "x1": 336.9599914550781, + "y1": 147.239990234375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 283.67999267578125, + "y0": 114.8399658203125, + "x1": 336.9599914550781, + "y1": 130.67999267578125, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 227.52001953125, + "y0": 431.2799987792969, + "x1": 282.239990234375, + "y1": 446.760009765625, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 414.7200012207031, + "x1": 282.239990234375, + "y1": 430.20001220703125, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 397.79998779296875, + "x1": 282.239990234375, + "y1": 413.2799987792969, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 381.239990234375, + "x1": 282.239990234375, + "y1": 396.7200012207031, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 364.32000732421875, + "x1": 282.239990234375, + "y1": 379.79998779296875, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 347.760009765625, + "x1": 282.239990234375, + "y1": 363.239990234375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 331.55999755859375, + "x1": 282.239990234375, + "y1": 346.67999267578125, + "width": 54.719970703125, + "height": 15.1199951171875 + }, { + "x0": 227.52001953125, + "y0": 315.0, + "x1": 282.239990234375, + "y1": 330.8399963378906, + "width": 54.719970703125, + "height": 15.839996337890625 + }, { + "x0": 227.52001953125, + "y0": 298.44000244140625, + "x1": 282.239990234375, + "y1": 313.9200134277344, + "width": 54.719970703125, + "height": 15.480010986328125 + }, { + "x0": 227.52001953125, + "y0": 281.5199890136719, + "x1": 282.239990234375, + "y1": 297.3599853515625, + "width": 54.719970703125, + "height": 15.839996337890625 + }, { + "x0": 227.52001953125, + "y0": 264.5999755859375, + "x1": 282.239990234375, + "y1": 280.44000244140625, + "width": 54.719970703125, + "height": 15.84002685546875 + }, { + "x0": 227.52001953125, + "y0": 248.0400390625, + "x1": 282.239990234375, + "y1": 263.52001953125, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 231.1199951171875, + "x1": 282.239990234375, + "y1": 246.9599609375, + "width": 54.719970703125, + "height": 15.8399658203125 + }, { + "x0": 227.52001953125, + "y0": 215.280029296875, + "x1": 282.239990234375, + "y1": 230.4000244140625, + "width": 54.719970703125, + "height": 15.1199951171875 + }, { + "x0": 227.52001953125, + "y0": 198.719970703125, + "x1": 282.239990234375, + "y1": 214.20001220703125, + "width": 54.719970703125, + "height": 15.48004150390625 + }, { + "x0": 227.52001953125, + "y0": 182.1600341796875, + "x1": 282.239990234375, + "y1": 197.6400146484375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 165.239990234375, + "x1": 282.239990234375, + "y1": 180.719970703125, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 148.67999267578125, + "x1": 282.239990234375, + "y1": 164.1600341796875, + "width": 54.719970703125, + "height": 15.48004150390625 + }, { + "x0": 227.52001953125, + "y0": 131.760009765625, + "x1": 282.239990234375, + "y1": 147.239990234375, + "width": 54.719970703125, + "height": 15.47998046875 + }, { + "x0": 227.52001953125, + "y0": 114.8399658203125, + "x1": 282.239990234375, + "y1": 130.67999267578125, + "width": 54.719970703125, + "height": 15.84002685546875 + }, { + "x0": 123.84002685546875, + "y0": 431.2799987792969, + "x1": 226.44000244140625, + "y1": 446.760009765625, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 414.7200012207031, + "x1": 226.44000244140625, + "y1": 430.20001220703125, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 397.79998779296875, + "x1": 226.44000244140625, + "y1": 413.2799987792969, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 381.239990234375, + "x1": 226.44000244140625, + "y1": 396.7200012207031, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 364.32000732421875, + "x1": 226.44000244140625, + "y1": 379.79998779296875, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 347.760009765625, + "x1": 226.44000244140625, + "y1": 363.239990234375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 331.55999755859375, + "x1": 226.44000244140625, + "y1": 346.67999267578125, + "width": 102.5999755859375, + "height": 15.1199951171875 + }, { + "x0": 123.84002685546875, + "y0": 315.0, + "x1": 226.44000244140625, + "y1": 330.8399963378906, + "width": 102.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 123.84002685546875, + "y0": 298.44000244140625, + "x1": 226.44000244140625, + "y1": 313.9200134277344, + "width": 102.5999755859375, + "height": 15.480010986328125 + }, { + "x0": 123.84002685546875, + "y0": 281.5199890136719, + "x1": 226.44000244140625, + "y1": 297.3599853515625, + "width": 102.5999755859375, + "height": 15.839996337890625 + }, { + "x0": 123.84002685546875, + "y0": 264.5999755859375, + "x1": 226.44000244140625, + "y1": 280.44000244140625, + "width": 102.5999755859375, + "height": 15.84002685546875 + }, { + "x0": 123.84002685546875, + "y0": 248.0400390625, + "x1": 226.44000244140625, + "y1": 263.52001953125, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 231.1199951171875, + "x1": 226.44000244140625, + "y1": 246.9599609375, + "width": 102.5999755859375, + "height": 15.8399658203125 + }, { + "x0": 123.84002685546875, + "y0": 215.280029296875, + "x1": 226.44000244140625, + "y1": 230.4000244140625, + "width": 102.5999755859375, + "height": 15.1199951171875 + }, { + "x0": 123.84002685546875, + "y0": 198.719970703125, + "x1": 226.44000244140625, + "y1": 214.20001220703125, + "width": 102.5999755859375, + "height": 15.48004150390625 + }, { + "x0": 123.84002685546875, + "y0": 182.1600341796875, + "x1": 226.44000244140625, + "y1": 197.6400146484375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 165.239990234375, + "x1": 226.44000244140625, + "y1": 180.719970703125, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 148.67999267578125, + "x1": 226.44000244140625, + "y1": 164.1600341796875, + "width": 102.5999755859375, + "height": 15.48004150390625 + }, { + "x0": 123.84002685546875, + "y0": 131.760009765625, + "x1": 226.44000244140625, + "y1": 147.239990234375, + "width": 102.5999755859375, + "height": 15.47998046875 + }, { + "x0": 123.84002685546875, + "y0": 114.8399658203125, + "x1": 226.44000244140625, + "y1": 130.67999267578125, + "width": 102.5999755859375, + "height": 15.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 114, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 611.280029296875, + "y0": 430.91998291015625, + "x1": 664.9199829101562, + "y1": 446.3999938964844, + "width": 53.63995361328125, + "height": 15.480010986328125 + }, { + "x0": 611.280029296875, + "y0": 414.0, + "x1": 664.9199829101562, + "y1": 429.8399963378906, + "width": 53.63995361328125, + "height": 15.839996337890625 + }, { + "x0": 611.280029296875, + "y0": 397.44000244140625, + "x1": 664.9199829101562, + "y1": 412.91998291015625, + "width": 53.63995361328125, + "height": 15.47998046875 + }, { + "x0": 611.280029296875, + "y0": 380.52001953125, + "x1": 664.9199829101562, + "y1": 396.3599853515625, + "width": 53.63995361328125, + "height": 15.8399658203125 + }, { + "x0": 611.280029296875, + "y0": 363.96002197265625, + "x1": 664.9199829101562, + "y1": 379.44000244140625, + "width": 53.63995361328125, + "height": 15.47998046875 + }, { + "x0": 611.280029296875, + "y0": 347.0400085449219, + "x1": 664.9199829101562, + "y1": 362.52001953125, + "width": 53.63995361328125, + "height": 15.480010986328125 + }, { + "x0": 558.3599853515625, + "y0": 430.91998291015625, + "x1": 609.8399658203125, + "y1": 446.3999938964844, + "width": 51.47998046875, + "height": 15.480010986328125 + }, { + "x0": 558.3599853515625, + "y0": 414.0, + "x1": 609.8399658203125, + "y1": 429.8399963378906, + "width": 51.47998046875, + "height": 15.839996337890625 + }, { + "x0": 558.3599853515625, + "y0": 397.44000244140625, + "x1": 609.8399658203125, + "y1": 412.91998291015625, + "width": 51.47998046875, + "height": 15.47998046875 + }, { + "x0": 558.3599853515625, + "y0": 380.52001953125, + "x1": 609.8399658203125, + "y1": 396.3599853515625, + "width": 51.47998046875, + "height": 15.8399658203125 + }, { + "x0": 558.3599853515625, + "y0": 363.96002197265625, + "x1": 609.8399658203125, + "y1": 379.44000244140625, + "width": 51.47998046875, + "height": 15.47998046875 + }, { + "x0": 558.3599853515625, + "y0": 347.0400085449219, + "x1": 609.8399658203125, + "y1": 362.52001953125, + "width": 51.47998046875, + "height": 15.480010986328125 + }, { + "x0": 501.1199951171875, + "y0": 430.91998291015625, + "x1": 557.280029296875, + "y1": 446.3999938964844, + "width": 56.1600341796875, + "height": 15.480010986328125 + }, { + "x0": 501.1199951171875, + "y0": 414.0, + "x1": 557.280029296875, + "y1": 429.8399963378906, + "width": 56.1600341796875, + "height": 15.839996337890625 + }, { + "x0": 501.1199951171875, + "y0": 397.44000244140625, + "x1": 557.280029296875, + "y1": 412.91998291015625, + "width": 56.1600341796875, + "height": 15.47998046875 + }, { + "x0": 501.1199951171875, + "y0": 380.52001953125, + "x1": 557.280029296875, + "y1": 396.3599853515625, + "width": 56.1600341796875, + "height": 15.8399658203125 + }, { + "x0": 501.1199951171875, + "y0": 363.96002197265625, + "x1": 557.280029296875, + "y1": 379.44000244140625, + "width": 56.1600341796875, + "height": 15.47998046875 + }, { + "x0": 501.1199951171875, + "y0": 347.0400085449219, + "x1": 557.280029296875, + "y1": 362.52001953125, + "width": 56.1600341796875, + "height": 15.480010986328125 + }, { + "x0": 401.3999938964844, + "y0": 430.91998291015625, + "x1": 500.0400085449219, + "y1": 446.3999938964844, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 401.3999938964844, + "y0": 414.0, + "x1": 500.0400085449219, + "y1": 429.8399963378906, + "width": 98.6400146484375, + "height": 15.839996337890625 + }, { + "x0": 401.3999938964844, + "y0": 397.44000244140625, + "x1": 500.0400085449219, + "y1": 412.91998291015625, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 401.3999938964844, + "y0": 380.52001953125, + "x1": 500.0400085449219, + "y1": 396.3599853515625, + "width": 98.6400146484375, + "height": 15.8399658203125 + }, { + "x0": 401.3999938964844, + "y0": 363.96002197265625, + "x1": 500.0400085449219, + "y1": 379.44000244140625, + "width": 98.6400146484375, + "height": 15.47998046875 + }, { + "x0": 401.3999938964844, + "y0": 347.0400085449219, + "x1": 500.0400085449219, + "y1": 362.52001953125, + "width": 98.6400146484375, + "height": 15.480010986328125 + }, { + "x0": 383.760009765625, + "y0": 414.0, + "x1": 400.32000732421875, + "y1": 429.8399963378906, + "width": 16.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 383.760009765625, + "y0": 380.52001953125, + "x1": 400.32000732421875, + "y1": 396.3599853515625, + "width": 16.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 335.8800048828125, + "y0": 430.91998291015625, + "x1": 382.67999267578125, + "y1": 446.3999938964844, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 335.8800048828125, + "y0": 414.0, + "x1": 382.67999267578125, + "y1": 429.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 335.8800048828125, + "y0": 397.44000244140625, + "x1": 382.67999267578125, + "y1": 412.91998291015625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 335.8800048828125, + "y0": 380.52001953125, + "x1": 382.67999267578125, + "y1": 396.3599853515625, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 335.8800048828125, + "y0": 363.96002197265625, + "x1": 382.67999267578125, + "y1": 379.44000244140625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 335.8800048828125, + "y0": 347.0400085449219, + "x1": 382.67999267578125, + "y1": 362.52001953125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 281.1600036621094, + "y0": 430.91998291015625, + "x1": 334.79998779296875, + "y1": 446.3999938964844, + "width": 53.639984130859375, + "height": 15.480010986328125 + }, { + "x0": 281.1600036621094, + "y0": 414.0, + "x1": 334.79998779296875, + "y1": 429.8399963378906, + "width": 53.639984130859375, + "height": 15.839996337890625 + }, { + "x0": 281.1600036621094, + "y0": 397.44000244140625, + "x1": 334.79998779296875, + "y1": 412.91998291015625, + "width": 53.639984130859375, + "height": 15.47998046875 + }, { + "x0": 281.1600036621094, + "y0": 380.52001953125, + "x1": 334.79998779296875, + "y1": 396.3599853515625, + "width": 53.639984130859375, + "height": 15.8399658203125 + }, { + "x0": 281.1600036621094, + "y0": 363.96002197265625, + "x1": 334.79998779296875, + "y1": 379.44000244140625, + "width": 53.639984130859375, + "height": 15.47998046875 + }, { + "x0": 281.1600036621094, + "y0": 347.0400085449219, + "x1": 334.79998779296875, + "y1": 362.52001953125, + "width": 53.639984130859375, + "height": 15.480010986328125 + }, { + "x0": 225.3599853515625, + "y0": 430.91998291015625, + "x1": 280.0799865722656, + "y1": 446.3999938964844, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 225.3599853515625, + "y0": 414.0, + "x1": 280.0799865722656, + "y1": 429.8399963378906, + "width": 54.720001220703125, + "height": 15.839996337890625 + }, { + "x0": 225.3599853515625, + "y0": 397.44000244140625, + "x1": 280.0799865722656, + "y1": 412.91998291015625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 225.3599853515625, + "y0": 380.52001953125, + "x1": 280.0799865722656, + "y1": 396.3599853515625, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 225.3599853515625, + "y0": 363.96002197265625, + "x1": 280.0799865722656, + "y1": 379.44000244140625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 225.3599853515625, + "y0": 347.0400085449219, + "x1": 280.0799865722656, + "y1": 362.52001953125, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 126.3599853515625, + "y0": 430.91998291015625, + "x1": 223.91998291015625, + "y1": 446.3999938964844, + "width": 97.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 126.3599853515625, + "y0": 414.0, + "x1": 223.91998291015625, + "y1": 429.8399963378906, + "width": 97.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 126.3599853515625, + "y0": 397.44000244140625, + "x1": 223.91998291015625, + "y1": 412.91998291015625, + "width": 97.55999755859375, + "height": 15.47998046875 + }, { + "x0": 126.3599853515625, + "y0": 380.52001953125, + "x1": 223.91998291015625, + "y1": 396.3599853515625, + "width": 97.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 126.3599853515625, + "y0": 363.96002197265625, + "x1": 223.91998291015625, + "y1": 379.44000244140625, + "width": 97.55999755859375, + "height": 15.47998046875 + }, { + "x0": 126.3599853515625, + "y0": 347.0400085449219, + "x1": 223.91998291015625, + "y1": 362.52001953125, + "width": 97.55999755859375, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 115, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 674.6400146484375, + "y0": 452.8800048828125, + "x1": 715.3200073242188, + "y1": 473.760009765625, + "width": 40.67999267578125, + "height": 20.8800048828125 + }, { + "x0": 674.6400146484375, + "y0": 427.67999267578125, + "x1": 715.3200073242188, + "y1": 451.79998779296875, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 403.20001220703125, + "x1": 715.3200073242188, + "y1": 426.96002197265625, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 378.7200012207031, + "x1": 715.3200073242188, + "y1": 402.47998046875, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 354.239990234375, + "x1": 715.3200073242188, + "y1": 378.0, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 329.760009765625, + "x1": 715.3200073242188, + "y1": 353.5199890136719, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 305.2799987792969, + "x1": 715.3200073242188, + "y1": 329.0400085449219, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 452.8800048828125, + "x1": 673.9199829101562, + "y1": 473.760009765625, + "width": 32.39996337890625, + "height": 20.8800048828125 + }, { + "x0": 641.52001953125, + "y0": 427.67999267578125, + "x1": 673.9199829101562, + "y1": 451.79998779296875, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 403.20001220703125, + "x1": 673.9199829101562, + "y1": 426.96002197265625, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 378.7200012207031, + "x1": 673.9199829101562, + "y1": 402.47998046875, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 354.239990234375, + "x1": 673.9199829101562, + "y1": 378.0, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 329.760009765625, + "x1": 673.9199829101562, + "y1": 353.5199890136719, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 305.2799987792969, + "x1": 673.9199829101562, + "y1": 329.0400085449219, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 452.8800048828125, + "x1": 640.7999877929688, + "y1": 473.760009765625, + "width": 33.8399658203125, + "height": 20.8800048828125 + }, { + "x0": 606.9600219726562, + "y0": 427.67999267578125, + "x1": 640.7999877929688, + "y1": 451.79998779296875, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 403.20001220703125, + "x1": 640.7999877929688, + "y1": 426.96002197265625, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 378.7200012207031, + "x1": 640.7999877929688, + "y1": 402.47998046875, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 354.239990234375, + "x1": 640.7999877929688, + "y1": 378.0, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 329.760009765625, + "x1": 640.7999877929688, + "y1": 353.5199890136719, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 305.2799987792969, + "x1": 640.7999877929688, + "y1": 329.0400085449219, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 452.8800048828125, + "x1": 606.239990234375, + "y1": 473.760009765625, + "width": 38.15997314453125, + "height": 20.8800048828125 + }, { + "x0": 568.0800170898438, + "y0": 427.67999267578125, + "x1": 606.239990234375, + "y1": 451.79998779296875, + "width": 38.15997314453125, + "height": 24.1199951171875 + }, { + "x0": 568.0800170898438, + "y0": 403.20001220703125, + "x1": 606.239990234375, + "y1": 426.96002197265625, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 378.7200012207031, + "x1": 606.239990234375, + "y1": 402.47998046875, + "width": 38.15997314453125, + "height": 23.759979248046875 + }, { + "x0": 568.0800170898438, + "y0": 354.239990234375, + "x1": 606.239990234375, + "y1": 378.0, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 329.760009765625, + "x1": 606.239990234375, + "y1": 353.5199890136719, + "width": 38.15997314453125, + "height": 23.759979248046875 + }, { + "x0": 568.0800170898438, + "y0": 305.2799987792969, + "x1": 606.239990234375, + "y1": 329.0400085449219, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 452.8800048828125, + "x1": 567.3599853515625, + "y1": 473.760009765625, + "width": 37.43994140625, + "height": 20.8800048828125 + }, { + "x0": 529.9200439453125, + "y0": 427.67999267578125, + "x1": 567.3599853515625, + "y1": 451.79998779296875, + "width": 37.43994140625, + "height": 24.1199951171875 + }, { + "x0": 529.9200439453125, + "y0": 403.20001220703125, + "x1": 567.3599853515625, + "y1": 426.96002197265625, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 378.7200012207031, + "x1": 567.3599853515625, + "y1": 402.47998046875, + "width": 37.43994140625, + "height": 23.759979248046875 + }, { + "x0": 529.9200439453125, + "y0": 354.239990234375, + "x1": 567.3599853515625, + "y1": 378.0, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 329.760009765625, + "x1": 567.3599853515625, + "y1": 353.5199890136719, + "width": 37.43994140625, + "height": 23.759979248046875 + }, { + "x0": 529.9200439453125, + "y0": 305.2799987792969, + "x1": 567.3599853515625, + "y1": 329.0400085449219, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 452.8800048828125, + "x1": 529.2000122070312, + "y1": 473.760009765625, + "width": 38.52001953125, + "height": 20.8800048828125 + }, { + "x0": 490.67999267578125, + "y0": 427.67999267578125, + "x1": 529.2000122070312, + "y1": 451.79998779296875, + "width": 38.52001953125, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 403.20001220703125, + "x1": 529.2000122070312, + "y1": 426.96002197265625, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 378.7200012207031, + "x1": 529.2000122070312, + "y1": 402.47998046875, + "width": 38.52001953125, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 354.239990234375, + "x1": 529.2000122070312, + "y1": 378.0, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 329.760009765625, + "x1": 529.2000122070312, + "y1": 353.5199890136719, + "width": 38.52001953125, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 305.2799987792969, + "x1": 529.2000122070312, + "y1": 329.0400085449219, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 452.8800048828125, + "x1": 489.9599914550781, + "y1": 473.760009765625, + "width": 39.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 450.0, + "y0": 427.67999267578125, + "x1": 489.9599914550781, + "y1": 451.79998779296875, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 403.20001220703125, + "x1": 489.9599914550781, + "y1": 426.96002197265625, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 378.7200012207031, + "x1": 489.9599914550781, + "y1": 402.47998046875, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 354.239990234375, + "x1": 489.9599914550781, + "y1": 378.0, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 329.760009765625, + "x1": 489.9599914550781, + "y1": 353.5199890136719, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 305.2799987792969, + "x1": 489.9599914550781, + "y1": 329.0400085449219, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 452.8800048828125, + "x1": 449.2799987792969, + "y1": 473.760009765625, + "width": 39.600006103515625, + "height": 20.8800048828125 + }, { + "x0": 409.67999267578125, + "y0": 427.67999267578125, + "x1": 449.2799987792969, + "y1": 451.79998779296875, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 403.20001220703125, + "x1": 449.2799987792969, + "y1": 426.96002197265625, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 378.7200012207031, + "x1": 449.2799987792969, + "y1": 402.47998046875, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 354.239990234375, + "x1": 449.2799987792969, + "y1": 378.0, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 329.760009765625, + "x1": 449.2799987792969, + "y1": 353.5199890136719, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 305.2799987792969, + "x1": 449.2799987792969, + "y1": 329.0400085449219, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 452.8800048828125, + "x1": 408.6000061035156, + "y1": 484.55999755859375, + "width": 30.600006103515625, + "height": 31.67999267578125 + }, { + "x0": 378.0, + "y0": 427.67999267578125, + "x1": 408.6000061035156, + "y1": 451.79998779296875, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 403.20001220703125, + "x1": 408.6000061035156, + "y1": 426.96002197265625, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 378.7200012207031, + "x1": 408.6000061035156, + "y1": 402.47998046875, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 354.239990234375, + "x1": 408.6000061035156, + "y1": 378.0, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 329.760009765625, + "x1": 408.6000061035156, + "y1": 353.5199890136719, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 305.2799987792969, + "x1": 408.6000061035156, + "y1": 329.0400085449219, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 452.8800048828125, + "x1": 377.2799987792969, + "y1": 484.55999755859375, + "width": 48.600006103515625, + "height": 31.67999267578125 + }, { + "x0": 328.67999267578125, + "y0": 427.67999267578125, + "x1": 377.2799987792969, + "y1": 451.79998779296875, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 403.20001220703125, + "x1": 377.2799987792969, + "y1": 426.96002197265625, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 378.7200012207031, + "x1": 377.2799987792969, + "y1": 402.47998046875, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 354.239990234375, + "x1": 377.2799987792969, + "y1": 378.0, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 329.760009765625, + "x1": 377.2799987792969, + "y1": 353.5199890136719, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 305.2799987792969, + "x1": 377.2799987792969, + "y1": 329.0400085449219, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 452.8800048828125, + "x1": 327.9599914550781, + "y1": 484.55999755859375, + "width": 48.959991455078125, + "height": 31.67999267578125 + }, { + "x0": 279.0, + "y0": 427.67999267578125, + "x1": 327.9599914550781, + "y1": 451.79998779296875, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 403.20001220703125, + "x1": 327.9599914550781, + "y1": 426.96002197265625, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 378.7200012207031, + "x1": 327.9599914550781, + "y1": 402.47998046875, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 354.239990234375, + "x1": 327.9599914550781, + "y1": 378.0, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 329.760009765625, + "x1": 327.9599914550781, + "y1": 353.5199890136719, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 305.2799987792969, + "x1": 327.9599914550781, + "y1": 329.0400085449219, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 452.8800048828125, + "x1": 278.280029296875, + "y1": 484.55999755859375, + "width": 21.60003662109375, + "height": 31.67999267578125 + }, { + "x0": 256.67999267578125, + "y0": 427.67999267578125, + "x1": 278.280029296875, + "y1": 451.79998779296875, + "width": 21.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 256.67999267578125, + "y0": 403.20001220703125, + "x1": 278.280029296875, + "y1": 426.96002197265625, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 378.7200012207031, + "x1": 278.280029296875, + "y1": 402.47998046875, + "width": 21.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 256.67999267578125, + "y0": 354.239990234375, + "x1": 278.280029296875, + "y1": 378.0, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 329.760009765625, + "x1": 278.280029296875, + "y1": 353.5199890136719, + "width": 21.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 256.67999267578125, + "y0": 305.2799987792969, + "x1": 278.280029296875, + "y1": 329.0400085449219, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 452.8800048828125, + "x1": 255.96002197265625, + "y1": 484.55999755859375, + "width": 48.96002197265625, + "height": 31.67999267578125 + }, { + "x0": 207.0, + "y0": 427.67999267578125, + "x1": 255.96002197265625, + "y1": 451.79998779296875, + "width": 48.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 207.0, + "y0": 403.20001220703125, + "x1": 255.96002197265625, + "y1": 426.96002197265625, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 378.7200012207031, + "x1": 255.96002197265625, + "y1": 402.47998046875, + "width": 48.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 207.0, + "y0": 354.239990234375, + "x1": 255.96002197265625, + "y1": 378.0, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 329.760009765625, + "x1": 255.96002197265625, + "y1": 353.5199890136719, + "width": 48.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 207.0, + "y0": 305.2799987792969, + "x1": 255.96002197265625, + "y1": 329.0400085449219, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 452.8800048828125, + "x1": 206.280029296875, + "y1": 484.55999755859375, + "width": 131.4000244140625, + "height": 31.67999267578125 + }, { + "x0": 74.8800048828125, + "y0": 427.67999267578125, + "x1": 206.280029296875, + "y1": 451.79998779296875, + "width": 131.4000244140625, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 403.20001220703125, + "x1": 206.280029296875, + "y1": 426.96002197265625, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 378.7200012207031, + "x1": 206.280029296875, + "y1": 402.47998046875, + "width": 131.4000244140625, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 354.239990234375, + "x1": 206.280029296875, + "y1": 378.0, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 329.760009765625, + "x1": 206.280029296875, + "y1": 353.5199890136719, + "width": 131.4000244140625, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 305.2799987792969, + "x1": 206.280029296875, + "y1": 329.0400085449219, + "width": 131.4000244140625, + "height": 23.760009765625 + } + ] + }, { + "pageInfo": { + "number": 116, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 674.6400146484375, + "y0": 446.760009765625, + "x1": 715.3200073242188, + "y1": 468.0, + "width": 40.67999267578125, + "height": 21.239990234375 + }, { + "x0": 674.6400146484375, + "y0": 421.91998291015625, + "x1": 715.3200073242188, + "y1": 445.67999267578125, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 397.44000244140625, + "x1": 715.3200073242188, + "y1": 421.20001220703125, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 372.96002197265625, + "x1": 715.3200073242188, + "y1": 396.7200012207031, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 348.1199951171875, + "x1": 715.3200073242188, + "y1": 372.239990234375, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 323.6400146484375, + "x1": 715.3200073242188, + "y1": 347.760009765625, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 299.1600036621094, + "x1": 715.3200073242188, + "y1": 323.2799987792969, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 446.760009765625, + "x1": 673.9199829101562, + "y1": 468.0, + "width": 32.39996337890625, + "height": 21.239990234375 + }, { + "x0": 641.52001953125, + "y0": 421.91998291015625, + "x1": 673.9199829101562, + "y1": 445.67999267578125, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 397.44000244140625, + "x1": 673.9199829101562, + "y1": 421.20001220703125, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 372.96002197265625, + "x1": 673.9199829101562, + "y1": 396.7200012207031, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 348.1199951171875, + "x1": 673.9199829101562, + "y1": 372.239990234375, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 323.6400146484375, + "x1": 673.9199829101562, + "y1": 347.760009765625, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 299.1600036621094, + "x1": 673.9199829101562, + "y1": 323.2799987792969, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 446.760009765625, + "x1": 640.7999877929688, + "y1": 468.0, + "width": 33.8399658203125, + "height": 21.239990234375 + }, { + "x0": 606.9600219726562, + "y0": 421.91998291015625, + "x1": 640.7999877929688, + "y1": 445.67999267578125, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 397.44000244140625, + "x1": 640.7999877929688, + "y1": 421.20001220703125, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 372.96002197265625, + "x1": 640.7999877929688, + "y1": 396.7200012207031, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 348.1199951171875, + "x1": 640.7999877929688, + "y1": 372.239990234375, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 323.6400146484375, + "x1": 640.7999877929688, + "y1": 347.760009765625, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 299.1600036621094, + "x1": 640.7999877929688, + "y1": 323.2799987792969, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 446.760009765625, + "x1": 606.239990234375, + "y1": 468.0, + "width": 34.55999755859375, + "height": 21.239990234375 + }, { + "x0": 571.6799926757812, + "y0": 421.91998291015625, + "x1": 606.239990234375, + "y1": 445.67999267578125, + "width": 34.55999755859375, + "height": 23.760009765625 + }, { + "x0": 571.6799926757812, + "y0": 397.44000244140625, + "x1": 606.239990234375, + "y1": 421.20001220703125, + "width": 34.55999755859375, + "height": 23.760009765625 + }, { + "x0": 571.6799926757812, + "y0": 372.96002197265625, + "x1": 606.239990234375, + "y1": 396.7200012207031, + "width": 34.55999755859375, + "height": 23.759979248046875 + }, { + "x0": 571.6799926757812, + "y0": 348.1199951171875, + "x1": 606.239990234375, + "y1": 372.239990234375, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 323.6400146484375, + "x1": 606.239990234375, + "y1": 347.760009765625, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 299.1600036621094, + "x1": 606.239990234375, + "y1": 323.2799987792969, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 446.760009765625, + "x1": 570.9600219726562, + "y1": 468.0, + "width": 39.96002197265625, + "height": 21.239990234375 + }, { + "x0": 531.0, + "y0": 421.91998291015625, + "x1": 570.9600219726562, + "y1": 445.67999267578125, + "width": 39.96002197265625, + "height": 23.760009765625 + }, { + "x0": 531.0, + "y0": 397.44000244140625, + "x1": 570.9600219726562, + "y1": 421.20001220703125, + "width": 39.96002197265625, + "height": 23.760009765625 + }, { + "x0": 531.0, + "y0": 372.96002197265625, + "x1": 570.9600219726562, + "y1": 396.7200012207031, + "width": 39.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 531.0, + "y0": 348.1199951171875, + "x1": 570.9600219726562, + "y1": 372.239990234375, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 323.6400146484375, + "x1": 570.9600219726562, + "y1": 347.760009765625, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 299.1600036621094, + "x1": 570.9600219726562, + "y1": 323.2799987792969, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 446.760009765625, + "x1": 530.280029296875, + "y1": 468.0, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 490.67999267578125, + "y0": 421.91998291015625, + "x1": 530.280029296875, + "y1": 445.67999267578125, + "width": 39.60003662109375, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 397.44000244140625, + "x1": 530.280029296875, + "y1": 421.20001220703125, + "width": 39.60003662109375, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 372.96002197265625, + "x1": 530.280029296875, + "y1": 396.7200012207031, + "width": 39.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 348.1199951171875, + "x1": 530.280029296875, + "y1": 372.239990234375, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 323.6400146484375, + "x1": 530.280029296875, + "y1": 347.760009765625, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 299.1600036621094, + "x1": 530.280029296875, + "y1": 323.2799987792969, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 446.760009765625, + "x1": 489.9599914550781, + "y1": 468.0, + "width": 39.959991455078125, + "height": 21.239990234375 + }, { + "x0": 450.0, + "y0": 421.91998291015625, + "x1": 489.9599914550781, + "y1": 445.67999267578125, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 397.44000244140625, + "x1": 489.9599914550781, + "y1": 421.20001220703125, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 372.96002197265625, + "x1": 489.9599914550781, + "y1": 396.7200012207031, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 348.1199951171875, + "x1": 489.9599914550781, + "y1": 372.239990234375, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 323.6400146484375, + "x1": 489.9599914550781, + "y1": 347.760009765625, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 299.1600036621094, + "x1": 489.9599914550781, + "y1": 323.2799987792969, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 446.760009765625, + "x1": 449.2799987792969, + "y1": 468.0, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 409.67999267578125, + "y0": 421.91998291015625, + "x1": 449.2799987792969, + "y1": 445.67999267578125, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 397.44000244140625, + "x1": 449.2799987792969, + "y1": 421.20001220703125, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 372.96002197265625, + "x1": 449.2799987792969, + "y1": 396.7200012207031, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 348.1199951171875, + "x1": 449.2799987792969, + "y1": 372.239990234375, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 323.6400146484375, + "x1": 449.2799987792969, + "y1": 347.760009765625, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 299.1600036621094, + "x1": 449.2799987792969, + "y1": 323.2799987792969, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 446.760009765625, + "x1": 408.6000061035156, + "y1": 478.79998779296875, + "width": 30.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 378.0, + "y0": 421.91998291015625, + "x1": 408.6000061035156, + "y1": 445.67999267578125, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 397.44000244140625, + "x1": 408.6000061035156, + "y1": 421.20001220703125, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 372.96002197265625, + "x1": 408.6000061035156, + "y1": 396.7200012207031, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 348.1199951171875, + "x1": 408.6000061035156, + "y1": 372.239990234375, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 323.6400146484375, + "x1": 408.6000061035156, + "y1": 347.760009765625, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 299.1600036621094, + "x1": 408.6000061035156, + "y1": 323.2799987792969, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 446.760009765625, + "x1": 377.2799987792969, + "y1": 478.79998779296875, + "width": 48.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 421.91998291015625, + "x1": 377.2799987792969, + "y1": 445.67999267578125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 397.44000244140625, + "x1": 377.2799987792969, + "y1": 421.20001220703125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 372.96002197265625, + "x1": 377.2799987792969, + "y1": 396.7200012207031, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 348.1199951171875, + "x1": 377.2799987792969, + "y1": 372.239990234375, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 323.6400146484375, + "x1": 377.2799987792969, + "y1": 347.760009765625, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 299.1600036621094, + "x1": 377.2799987792969, + "y1": 323.2799987792969, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 446.760009765625, + "x1": 327.9599914550781, + "y1": 478.79998779296875, + "width": 48.959991455078125, + "height": 32.03997802734375 + }, { + "x0": 279.0, + "y0": 421.91998291015625, + "x1": 327.9599914550781, + "y1": 445.67999267578125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 397.44000244140625, + "x1": 327.9599914550781, + "y1": 421.20001220703125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 372.96002197265625, + "x1": 327.9599914550781, + "y1": 396.7200012207031, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 348.1199951171875, + "x1": 327.9599914550781, + "y1": 372.239990234375, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 323.6400146484375, + "x1": 327.9599914550781, + "y1": 347.760009765625, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 299.1600036621094, + "x1": 327.9599914550781, + "y1": 323.2799987792969, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 446.760009765625, + "x1": 278.280029296875, + "y1": 478.79998779296875, + "width": 26.280029296875, + "height": 32.03997802734375 + }, { + "x0": 252.0, + "y0": 421.91998291015625, + "x1": 278.280029296875, + "y1": 445.67999267578125, + "width": 26.280029296875, + "height": 23.760009765625 + }, { + "x0": 252.0, + "y0": 397.44000244140625, + "x1": 278.280029296875, + "y1": 421.20001220703125, + "width": 26.280029296875, + "height": 23.760009765625 + }, { + "x0": 252.0, + "y0": 372.96002197265625, + "x1": 278.280029296875, + "y1": 396.7200012207031, + "width": 26.280029296875, + "height": 23.759979248046875 + }, { + "x0": 252.0, + "y0": 348.1199951171875, + "x1": 278.280029296875, + "y1": 372.239990234375, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 323.6400146484375, + "x1": 278.280029296875, + "y1": 347.760009765625, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 299.1600036621094, + "x1": 278.280029296875, + "y1": 323.2799987792969, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 446.760009765625, + "x1": 251.280029296875, + "y1": 478.79998779296875, + "width": 48.60003662109375, + "height": 32.03997802734375 + }, { + "x0": 202.67999267578125, + "y0": 421.91998291015625, + "x1": 251.280029296875, + "y1": 445.67999267578125, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 202.67999267578125, + "y0": 397.44000244140625, + "x1": 251.280029296875, + "y1": 421.20001220703125, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 202.67999267578125, + "y0": 372.96002197265625, + "x1": 251.280029296875, + "y1": 396.7200012207031, + "width": 48.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 202.67999267578125, + "y0": 348.1199951171875, + "x1": 251.280029296875, + "y1": 372.239990234375, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 323.6400146484375, + "x1": 251.280029296875, + "y1": 347.760009765625, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 299.1600036621094, + "x1": 251.280029296875, + "y1": 323.2799987792969, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 446.760009765625, + "x1": 201.96002197265625, + "y1": 478.79998779296875, + "width": 127.08001708984375, + "height": 32.03997802734375 + }, { + "x0": 74.8800048828125, + "y0": 421.91998291015625, + "x1": 201.96002197265625, + "y1": 445.67999267578125, + "width": 127.08001708984375, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 397.44000244140625, + "x1": 201.96002197265625, + "y1": 421.20001220703125, + "width": 127.08001708984375, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 372.96002197265625, + "x1": 201.96002197265625, + "y1": 396.7200012207031, + "width": 127.08001708984375, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 348.1199951171875, + "x1": 201.96002197265625, + "y1": 372.239990234375, + "width": 127.08001708984375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 323.6400146484375, + "x1": 201.96002197265625, + "y1": 347.760009765625, + "width": 127.08001708984375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 299.1600036621094, + "x1": 201.96002197265625, + "y1": 323.2799987792969, + "width": 127.08001708984375, + "height": 24.1199951171875 + } + ] + }, { + "pageInfo": { + "number": 117, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 616.6799926757812, + "y0": 430.91998291015625, + "x1": 666.0, + "y1": 446.3999938964844, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 414.0, + "x1": 666.0, + "y1": 429.8399963378906, + "width": 49.32000732421875, + "height": 15.839996337890625 + }, { + "x0": 616.6799926757812, + "y0": 397.44000244140625, + "x1": 666.0, + "y1": 412.91998291015625, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 380.52001953125, + "x1": 666.0, + "y1": 396.3599853515625, + "width": 49.32000732421875, + "height": 15.8399658203125 + }, { + "x0": 616.6799926757812, + "y0": 363.96002197265625, + "x1": 666.0, + "y1": 379.44000244140625, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 347.0400085449219, + "x1": 666.0, + "y1": 362.52001953125, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 330.8399963378906, + "x1": 666.0, + "y1": 345.6000061035156, + "width": 49.32000732421875, + "height": 14.760009765625 + }, { + "x0": 616.6799926757812, + "y0": 313.55999755859375, + "x1": 666.0, + "y1": 329.0400085449219, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 297.0, + "x1": 666.0, + "y1": 312.4800109863281, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 280.0799865722656, + "x1": 666.0, + "y1": 295.55999755859375, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 263.1600341796875, + "x1": 666.0, + "y1": 279.0, + "width": 49.32000732421875, + "height": 15.8399658203125 + }, { + "x0": 616.6799926757812, + "y0": 246.5999755859375, + "x1": 666.0, + "y1": 262.0799560546875, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 229.67999267578125, + "x1": 666.0, + "y1": 245.52001953125, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 213.47998046875, + "x1": 666.0, + "y1": 228.239990234375, + "width": 49.32000732421875, + "height": 14.760009765625 + }, { + "x0": 616.6799926757812, + "y0": 196.20001220703125, + "x1": 666.0, + "y1": 212.0400390625, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 179.6400146484375, + "x1": 666.0, + "y1": 195.1199951171875, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 162.719970703125, + "x1": 666.0, + "y1": 178.55999755859375, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 146.1600341796875, + "x1": 666.0, + "y1": 161.6400146484375, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 129.239990234375, + "x1": 666.0, + "y1": 144.719970703125, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 112.32000732421875, + "x1": 666.0, + "y1": 128.1600341796875, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 430.91998291015625, + "x1": 615.5999755859375, + "y1": 446.3999938964844, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 414.0, + "x1": 615.5999755859375, + "y1": 429.8399963378906, + "width": 52.91998291015625, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 397.44000244140625, + "x1": 615.5999755859375, + "y1": 412.91998291015625, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 380.52001953125, + "x1": 615.5999755859375, + "y1": 396.3599853515625, + "width": 52.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 363.96002197265625, + "x1": 615.5999755859375, + "y1": 379.44000244140625, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 347.0400085449219, + "x1": 615.5999755859375, + "y1": 362.52001953125, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 330.8399963378906, + "x1": 615.5999755859375, + "y1": 345.6000061035156, + "width": 52.91998291015625, + "height": 14.760009765625 + }, { + "x0": 562.6799926757812, + "y0": 313.55999755859375, + "x1": 615.5999755859375, + "y1": 329.0400085449219, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 297.0, + "x1": 615.5999755859375, + "y1": 312.4800109863281, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 280.0799865722656, + "x1": 615.5999755859375, + "y1": 295.55999755859375, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 263.1600341796875, + "x1": 615.5999755859375, + "y1": 279.0, + "width": 52.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 246.5999755859375, + "x1": 615.5999755859375, + "y1": 262.0799560546875, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 229.67999267578125, + "x1": 615.5999755859375, + "y1": 245.52001953125, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 213.47998046875, + "x1": 615.5999755859375, + "y1": 228.239990234375, + "width": 52.91998291015625, + "height": 14.760009765625 + }, { + "x0": 562.6799926757812, + "y0": 196.20001220703125, + "x1": 615.5999755859375, + "y1": 212.0400390625, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 179.6400146484375, + "x1": 615.5999755859375, + "y1": 195.1199951171875, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 162.719970703125, + "x1": 615.5999755859375, + "y1": 178.55999755859375, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 146.1600341796875, + "x1": 615.5999755859375, + "y1": 161.6400146484375, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 129.239990234375, + "x1": 615.5999755859375, + "y1": 144.719970703125, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 112.32000732421875, + "x1": 615.5999755859375, + "y1": 128.1600341796875, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 430.91998291015625, + "x1": 561.5999755859375, + "y1": 446.3999938964844, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 414.0, + "x1": 561.5999755859375, + "y1": 429.8399963378906, + "width": 59.39996337890625, + "height": 15.839996337890625 + }, { + "x0": 502.20001220703125, + "y0": 397.44000244140625, + "x1": 561.5999755859375, + "y1": 412.91998291015625, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 380.52001953125, + "x1": 561.5999755859375, + "y1": 396.3599853515625, + "width": 59.39996337890625, + "height": 15.8399658203125 + }, { + "x0": 502.20001220703125, + "y0": 363.96002197265625, + "x1": 561.5999755859375, + "y1": 379.44000244140625, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 347.0400085449219, + "x1": 561.5999755859375, + "y1": 362.52001953125, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 330.8399963378906, + "x1": 561.5999755859375, + "y1": 345.6000061035156, + "width": 59.39996337890625, + "height": 14.760009765625 + }, { + "x0": 502.20001220703125, + "y0": 313.55999755859375, + "x1": 561.5999755859375, + "y1": 329.0400085449219, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 297.0, + "x1": 561.5999755859375, + "y1": 312.4800109863281, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 280.0799865722656, + "x1": 561.5999755859375, + "y1": 295.55999755859375, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 263.1600341796875, + "x1": 561.5999755859375, + "y1": 279.0, + "width": 59.39996337890625, + "height": 15.8399658203125 + }, { + "x0": 502.20001220703125, + "y0": 246.5999755859375, + "x1": 561.5999755859375, + "y1": 262.0799560546875, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 229.67999267578125, + "x1": 561.5999755859375, + "y1": 245.52001953125, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 213.47998046875, + "x1": 561.5999755859375, + "y1": 228.239990234375, + "width": 59.39996337890625, + "height": 14.760009765625 + }, { + "x0": 502.20001220703125, + "y0": 196.20001220703125, + "x1": 561.5999755859375, + "y1": 212.0400390625, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 179.6400146484375, + "x1": 561.5999755859375, + "y1": 195.1199951171875, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 162.719970703125, + "x1": 561.5999755859375, + "y1": 178.55999755859375, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 146.1600341796875, + "x1": 561.5999755859375, + "y1": 161.6400146484375, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 129.239990234375, + "x1": 561.5999755859375, + "y1": 144.719970703125, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 112.32000732421875, + "x1": 561.5999755859375, + "y1": 128.1600341796875, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 430.91998291015625, + "x1": 501.1199951171875, + "y1": 446.3999938964844, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 414.0, + "x1": 501.1199951171875, + "y1": 429.8399963378906, + "width": 98.63998413085938, + "height": 15.839996337890625 + }, { + "x0": 402.4800109863281, + "y0": 397.44000244140625, + "x1": 501.1199951171875, + "y1": 412.91998291015625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 380.52001953125, + "x1": 501.1199951171875, + "y1": 396.3599853515625, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 402.4800109863281, + "y0": 363.96002197265625, + "x1": 501.1199951171875, + "y1": 379.44000244140625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 347.0400085449219, + "x1": 501.1199951171875, + "y1": 362.52001953125, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 330.8399963378906, + "x1": 501.1199951171875, + "y1": 345.6000061035156, + "width": 98.63998413085938, + "height": 14.760009765625 + }, { + "x0": 402.4800109863281, + "y0": 313.55999755859375, + "x1": 501.1199951171875, + "y1": 329.0400085449219, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 297.0, + "x1": 501.1199951171875, + "y1": 312.4800109863281, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 280.0799865722656, + "x1": 501.1199951171875, + "y1": 295.55999755859375, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 263.1600341796875, + "x1": 501.1199951171875, + "y1": 279.0, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 402.4800109863281, + "y0": 246.5999755859375, + "x1": 501.1199951171875, + "y1": 262.0799560546875, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 229.67999267578125, + "x1": 501.1199951171875, + "y1": 245.52001953125, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 213.47998046875, + "x1": 501.1199951171875, + "y1": 228.239990234375, + "width": 98.63998413085938, + "height": 14.760009765625 + }, { + "x0": 402.4800109863281, + "y0": 196.20001220703125, + "x1": 501.1199951171875, + "y1": 212.0400390625, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 179.6400146484375, + "x1": 501.1199951171875, + "y1": 195.1199951171875, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 162.719970703125, + "x1": 501.1199951171875, + "y1": 178.55999755859375, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 146.1600341796875, + "x1": 501.1199951171875, + "y1": 161.6400146484375, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 129.239990234375, + "x1": 501.1199951171875, + "y1": 144.719970703125, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 112.32000732421875, + "x1": 501.1199951171875, + "y1": 128.1600341796875, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 384.4800109863281, + "y0": 330.4800109863281, + "x1": 401.3999938964844, + "y1": 345.9599914550781, + "width": 16.91998291015625, + "height": 15.47998046875 + }, { + "x0": 384.4800109863281, + "y0": 213.1199951171875, + "x1": 401.3999938964844, + "y1": 228.5999755859375, + "width": 16.91998291015625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 430.91998291015625, + "x1": 383.3999938964844, + "y1": 446.3999938964844, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 414.0, + "x1": 383.3999938964844, + "y1": 429.8399963378906, + "width": 46.44000244140625, + "height": 15.839996337890625 + }, { + "x0": 336.9599914550781, + "y0": 397.44000244140625, + "x1": 383.3999938964844, + "y1": 412.91998291015625, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 380.52001953125, + "x1": 383.3999938964844, + "y1": 396.3599853515625, + "width": 46.44000244140625, + "height": 15.8399658203125 + }, { + "x0": 336.9599914550781, + "y0": 363.96002197265625, + "x1": 383.3999938964844, + "y1": 379.44000244140625, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 347.0400085449219, + "x1": 383.3999938964844, + "y1": 362.52001953125, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 330.8399963378906, + "x1": 383.3999938964844, + "y1": 345.6000061035156, + "width": 46.44000244140625, + "height": 14.760009765625 + }, { + "x0": 336.9599914550781, + "y0": 313.55999755859375, + "x1": 383.3999938964844, + "y1": 329.0400085449219, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 297.0, + "x1": 383.3999938964844, + "y1": 312.4800109863281, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 280.0799865722656, + "x1": 383.3999938964844, + "y1": 295.55999755859375, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 263.1600341796875, + "x1": 383.3999938964844, + "y1": 279.0, + "width": 46.44000244140625, + "height": 15.8399658203125 + }, { + "x0": 336.9599914550781, + "y0": 246.5999755859375, + "x1": 383.3999938964844, + "y1": 262.0799560546875, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 229.67999267578125, + "x1": 383.3999938964844, + "y1": 245.52001953125, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 213.47998046875, + "x1": 383.3999938964844, + "y1": 228.239990234375, + "width": 46.44000244140625, + "height": 14.760009765625 + }, { + "x0": 336.9599914550781, + "y0": 196.20001220703125, + "x1": 383.3999938964844, + "y1": 212.0400390625, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 179.6400146484375, + "x1": 383.3999938964844, + "y1": 195.1199951171875, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 162.719970703125, + "x1": 383.3999938964844, + "y1": 178.55999755859375, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 146.1600341796875, + "x1": 383.3999938964844, + "y1": 161.6400146484375, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 129.239990234375, + "x1": 383.3999938964844, + "y1": 144.719970703125, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 112.32000732421875, + "x1": 383.3999938964844, + "y1": 128.1600341796875, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 430.91998291015625, + "x1": 335.8800048828125, + "y1": 446.3999938964844, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 414.0, + "x1": 335.8800048828125, + "y1": 429.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 282.6000061035156, + "y0": 397.44000244140625, + "x1": 335.8800048828125, + "y1": 412.91998291015625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 380.52001953125, + "x1": 335.8800048828125, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 282.6000061035156, + "y0": 363.96002197265625, + "x1": 335.8800048828125, + "y1": 379.44000244140625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 347.0400085449219, + "x1": 335.8800048828125, + "y1": 362.52001953125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 330.8399963378906, + "x1": 335.8800048828125, + "y1": 345.6000061035156, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 282.6000061035156, + "y0": 313.55999755859375, + "x1": 335.8800048828125, + "y1": 329.0400085449219, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 297.0, + "x1": 335.8800048828125, + "y1": 312.4800109863281, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 280.0799865722656, + "x1": 335.8800048828125, + "y1": 295.55999755859375, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 263.1600341796875, + "x1": 335.8800048828125, + "y1": 279.0, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 282.6000061035156, + "y0": 246.5999755859375, + "x1": 335.8800048828125, + "y1": 262.0799560546875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 229.67999267578125, + "x1": 335.8800048828125, + "y1": 245.52001953125, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 213.47998046875, + "x1": 335.8800048828125, + "y1": 228.239990234375, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 282.6000061035156, + "y0": 196.20001220703125, + "x1": 335.8800048828125, + "y1": 212.0400390625, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 179.6400146484375, + "x1": 335.8800048828125, + "y1": 195.1199951171875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 162.719970703125, + "x1": 335.8800048828125, + "y1": 178.55999755859375, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 146.1600341796875, + "x1": 335.8800048828125, + "y1": 161.6400146484375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 129.239990234375, + "x1": 335.8800048828125, + "y1": 144.719970703125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 112.32000732421875, + "x1": 335.8800048828125, + "y1": 128.1600341796875, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 430.91998291015625, + "x1": 281.1600036621094, + "y1": 446.3999938964844, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 414.0, + "x1": 281.1600036621094, + "y1": 429.8399963378906, + "width": 54.720001220703125, + "height": 15.839996337890625 + }, { + "x0": 226.44000244140625, + "y0": 397.44000244140625, + "x1": 281.1600036621094, + "y1": 412.91998291015625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 380.52001953125, + "x1": 281.1600036621094, + "y1": 396.3599853515625, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 226.44000244140625, + "y0": 363.96002197265625, + "x1": 281.1600036621094, + "y1": 379.44000244140625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 347.0400085449219, + "x1": 281.1600036621094, + "y1": 362.52001953125, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 330.8399963378906, + "x1": 281.1600036621094, + "y1": 345.6000061035156, + "width": 54.720001220703125, + "height": 14.760009765625 + }, { + "x0": 226.44000244140625, + "y0": 313.55999755859375, + "x1": 281.1600036621094, + "y1": 329.0400085449219, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 297.0, + "x1": 281.1600036621094, + "y1": 312.4800109863281, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 280.0799865722656, + "x1": 281.1600036621094, + "y1": 295.55999755859375, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 263.1600341796875, + "x1": 281.1600036621094, + "y1": 279.0, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 226.44000244140625, + "y0": 246.5999755859375, + "x1": 281.1600036621094, + "y1": 262.0799560546875, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 229.67999267578125, + "x1": 281.1600036621094, + "y1": 245.52001953125, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 213.47998046875, + "x1": 281.1600036621094, + "y1": 228.239990234375, + "width": 54.720001220703125, + "height": 14.760009765625 + }, { + "x0": 226.44000244140625, + "y0": 196.20001220703125, + "x1": 281.1600036621094, + "y1": 212.0400390625, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 179.6400146484375, + "x1": 281.1600036621094, + "y1": 195.1199951171875, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 162.719970703125, + "x1": 281.1600036621094, + "y1": 178.55999755859375, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 146.1600341796875, + "x1": 281.1600036621094, + "y1": 161.6400146484375, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 129.239990234375, + "x1": 281.1600036621094, + "y1": 144.719970703125, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 112.32000732421875, + "x1": 281.1600036621094, + "y1": 128.1600341796875, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 430.91998291015625, + "x1": 225.3599853515625, + "y1": 446.3999938964844, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 414.0, + "x1": 225.3599853515625, + "y1": 429.8399963378906, + "width": 100.0799560546875, + "height": 15.839996337890625 + }, { + "x0": 125.280029296875, + "y0": 397.44000244140625, + "x1": 225.3599853515625, + "y1": 412.91998291015625, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 380.52001953125, + "x1": 225.3599853515625, + "y1": 396.3599853515625, + "width": 100.0799560546875, + "height": 15.8399658203125 + }, { + "x0": 125.280029296875, + "y0": 363.96002197265625, + "x1": 225.3599853515625, + "y1": 379.44000244140625, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 347.0400085449219, + "x1": 225.3599853515625, + "y1": 362.52001953125, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 330.8399963378906, + "x1": 225.3599853515625, + "y1": 345.6000061035156, + "width": 100.0799560546875, + "height": 14.760009765625 + }, { + "x0": 125.280029296875, + "y0": 313.55999755859375, + "x1": 225.3599853515625, + "y1": 329.0400085449219, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 297.0, + "x1": 225.3599853515625, + "y1": 312.4800109863281, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 280.0799865722656, + "x1": 225.3599853515625, + "y1": 295.55999755859375, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 263.1600341796875, + "x1": 225.3599853515625, + "y1": 279.0, + "width": 100.0799560546875, + "height": 15.8399658203125 + }, { + "x0": 125.280029296875, + "y0": 246.5999755859375, + "x1": 225.3599853515625, + "y1": 262.0799560546875, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 229.67999267578125, + "x1": 225.3599853515625, + "y1": 245.52001953125, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 213.47998046875, + "x1": 225.3599853515625, + "y1": 228.239990234375, + "width": 100.0799560546875, + "height": 14.760009765625 + }, { + "x0": 125.280029296875, + "y0": 196.20001220703125, + "x1": 225.3599853515625, + "y1": 212.0400390625, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 179.6400146484375, + "x1": 225.3599853515625, + "y1": 195.1199951171875, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 162.719970703125, + "x1": 225.3599853515625, + "y1": 178.55999755859375, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 146.1600341796875, + "x1": 225.3599853515625, + "y1": 161.6400146484375, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 129.239990234375, + "x1": 225.3599853515625, + "y1": 144.719970703125, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 112.32000732421875, + "x1": 225.3599853515625, + "y1": 128.1600341796875, + "width": 100.0799560546875, + "height": 15.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 118, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 621.3599853515625, + "y0": 430.91998291015625, + "x1": 669.5999755859375, + "y1": 446.3999938964844, + "width": 48.239990234375, + "height": 15.480010986328125 + }, { + "x0": 621.3599853515625, + "y0": 414.0, + "x1": 669.5999755859375, + "y1": 429.8399963378906, + "width": 48.239990234375, + "height": 15.839996337890625 + }, { + "x0": 621.3599853515625, + "y0": 397.44000244140625, + "x1": 669.5999755859375, + "y1": 412.91998291015625, + "width": 48.239990234375, + "height": 15.47998046875 + }, { + "x0": 621.3599853515625, + "y0": 380.52001953125, + "x1": 669.5999755859375, + "y1": 396.3599853515625, + "width": 48.239990234375, + "height": 15.8399658203125 + }, { + "x0": 621.3599853515625, + "y0": 363.96002197265625, + "x1": 669.5999755859375, + "y1": 379.44000244140625, + "width": 48.239990234375, + "height": 15.47998046875 + }, { + "x0": 621.3599853515625, + "y0": 347.0400085449219, + "x1": 669.5999755859375, + "y1": 362.52001953125, + "width": 48.239990234375, + "height": 15.480010986328125 + }, { + "x0": 567.3599853515625, + "y0": 430.91998291015625, + "x1": 619.9199829101562, + "y1": 446.3999938964844, + "width": 52.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 567.3599853515625, + "y0": 414.0, + "x1": 619.9199829101562, + "y1": 429.8399963378906, + "width": 52.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 567.3599853515625, + "y0": 397.44000244140625, + "x1": 619.9199829101562, + "y1": 412.91998291015625, + "width": 52.55999755859375, + "height": 15.47998046875 + }, { + "x0": 567.3599853515625, + "y0": 380.52001953125, + "x1": 619.9199829101562, + "y1": 396.3599853515625, + "width": 52.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 567.3599853515625, + "y0": 363.96002197265625, + "x1": 619.9199829101562, + "y1": 379.44000244140625, + "width": 52.55999755859375, + "height": 15.47998046875 + }, { + "x0": 567.3599853515625, + "y0": 347.0400085449219, + "x1": 619.9199829101562, + "y1": 362.52001953125, + "width": 52.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 505.79998779296875, + "y0": 430.91998291015625, + "x1": 565.9199829101562, + "y1": 446.3999938964844, + "width": 60.1199951171875, + "height": 15.480010986328125 + }, { + "x0": 505.79998779296875, + "y0": 414.0, + "x1": 565.9199829101562, + "y1": 429.8399963378906, + "width": 60.1199951171875, + "height": 15.839996337890625 + }, { + "x0": 505.79998779296875, + "y0": 397.44000244140625, + "x1": 565.9199829101562, + "y1": 412.91998291015625, + "width": 60.1199951171875, + "height": 15.47998046875 + }, { + "x0": 505.79998779296875, + "y0": 380.52001953125, + "x1": 565.9199829101562, + "y1": 396.3599853515625, + "width": 60.1199951171875, + "height": 15.8399658203125 + }, { + "x0": 505.79998779296875, + "y0": 363.96002197265625, + "x1": 565.9199829101562, + "y1": 379.44000244140625, + "width": 60.1199951171875, + "height": 15.47998046875 + }, { + "x0": 505.79998779296875, + "y0": 347.0400085449219, + "x1": 565.9199829101562, + "y1": 362.52001953125, + "width": 60.1199951171875, + "height": 15.480010986328125 + }, { + "x0": 405.7200012207031, + "y0": 430.91998291015625, + "x1": 504.3599853515625, + "y1": 446.3999938964844, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 405.7200012207031, + "y0": 414.0, + "x1": 504.3599853515625, + "y1": 429.8399963378906, + "width": 98.63998413085938, + "height": 15.839996337890625 + }, { + "x0": 405.7200012207031, + "y0": 397.44000244140625, + "x1": 504.3599853515625, + "y1": 412.91998291015625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 405.7200012207031, + "y0": 380.52001953125, + "x1": 504.3599853515625, + "y1": 396.3599853515625, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 405.7200012207031, + "y0": 363.96002197265625, + "x1": 504.3599853515625, + "y1": 379.44000244140625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 405.7200012207031, + "y0": 347.0400085449219, + "x1": 504.3599853515625, + "y1": 362.52001953125, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 388.0799865722656, + "y0": 414.0, + "x1": 404.6400146484375, + "y1": 429.8399963378906, + "width": 16.560028076171875, + "height": 15.839996337890625 + }, { + "x0": 388.0799865722656, + "y0": 380.52001953125, + "x1": 404.6400146484375, + "y1": 396.3599853515625, + "width": 16.560028076171875, + "height": 15.8399658203125 + }, { + "x0": 340.20001220703125, + "y0": 430.91998291015625, + "x1": 387.0, + "y1": 446.3999938964844, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 340.20001220703125, + "y0": 414.0, + "x1": 387.0, + "y1": 429.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 340.20001220703125, + "y0": 397.44000244140625, + "x1": 387.0, + "y1": 412.91998291015625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 340.20001220703125, + "y0": 380.52001953125, + "x1": 387.0, + "y1": 396.3599853515625, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 340.20001220703125, + "y0": 363.96002197265625, + "x1": 387.0, + "y1": 379.44000244140625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 340.20001220703125, + "y0": 347.0400085449219, + "x1": 387.0, + "y1": 362.52001953125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 285.8399963378906, + "y0": 430.91998291015625, + "x1": 339.1199951171875, + "y1": 446.3999938964844, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 285.8399963378906, + "y0": 414.0, + "x1": 339.1199951171875, + "y1": 429.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 285.8399963378906, + "y0": 397.44000244140625, + "x1": 339.1199951171875, + "y1": 412.91998291015625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 285.8399963378906, + "y0": 380.52001953125, + "x1": 339.1199951171875, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 285.8399963378906, + "y0": 363.96002197265625, + "x1": 339.1199951171875, + "y1": 379.44000244140625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 285.8399963378906, + "y0": 347.0400085449219, + "x1": 339.1199951171875, + "y1": 362.52001953125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 229.67999267578125, + "y0": 430.91998291015625, + "x1": 284.760009765625, + "y1": 446.3999938964844, + "width": 55.08001708984375, + "height": 15.480010986328125 + }, { + "x0": 229.67999267578125, + "y0": 414.0, + "x1": 284.760009765625, + "y1": 429.8399963378906, + "width": 55.08001708984375, + "height": 15.839996337890625 + }, { + "x0": 229.67999267578125, + "y0": 397.44000244140625, + "x1": 284.760009765625, + "y1": 412.91998291015625, + "width": 55.08001708984375, + "height": 15.47998046875 + }, { + "x0": 229.67999267578125, + "y0": 380.52001953125, + "x1": 284.760009765625, + "y1": 396.3599853515625, + "width": 55.08001708984375, + "height": 15.8399658203125 + }, { + "x0": 229.67999267578125, + "y0": 363.96002197265625, + "x1": 284.760009765625, + "y1": 379.44000244140625, + "width": 55.08001708984375, + "height": 15.47998046875 + }, { + "x0": 229.67999267578125, + "y0": 347.0400085449219, + "x1": 284.760009765625, + "y1": 362.52001953125, + "width": 55.08001708984375, + "height": 15.480010986328125 + }, { + "x0": 121.67999267578125, + "y0": 430.91998291015625, + "x1": 228.5999755859375, + "y1": 446.3999938964844, + "width": 106.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 121.67999267578125, + "y0": 414.0, + "x1": 228.5999755859375, + "y1": 429.8399963378906, + "width": 106.91998291015625, + "height": 15.839996337890625 + }, { + "x0": 121.67999267578125, + "y0": 397.44000244140625, + "x1": 228.5999755859375, + "y1": 412.91998291015625, + "width": 106.91998291015625, + "height": 15.47998046875 + }, { + "x0": 121.67999267578125, + "y0": 380.52001953125, + "x1": 228.5999755859375, + "y1": 396.3599853515625, + "width": 106.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 121.67999267578125, + "y0": 363.96002197265625, + "x1": 228.5999755859375, + "y1": 379.44000244140625, + "width": 106.91998291015625, + "height": 15.47998046875 + }, { + "x0": 121.67999267578125, + "y0": 347.0400085449219, + "x1": 228.5999755859375, + "y1": 362.52001953125, + "width": 106.91998291015625, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 119, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 674.6400146484375, + "y0": 449.6400146484375, + "x1": 715.3200073242188, + "y1": 470.8800048828125, + "width": 40.67999267578125, + "height": 21.239990234375 + }, { + "x0": 674.6400146484375, + "y0": 424.79998779296875, + "x1": 715.3200073242188, + "y1": 448.55999755859375, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 400.32000732421875, + "x1": 715.3200073242188, + "y1": 424.08001708984375, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 375.8399963378906, + "x1": 715.3200073242188, + "y1": 399.6000061035156, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 351.3599853515625, + "x1": 715.3200073242188, + "y1": 375.1199951171875, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 326.8800048828125, + "x1": 715.3200073242188, + "y1": 350.6400146484375, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 302.3999938964844, + "x1": 715.3200073242188, + "y1": 326.1600036621094, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 449.6400146484375, + "x1": 673.9199829101562, + "y1": 470.8800048828125, + "width": 32.39996337890625, + "height": 21.239990234375 + }, { + "x0": 641.52001953125, + "y0": 424.79998779296875, + "x1": 673.9199829101562, + "y1": 448.55999755859375, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 400.32000732421875, + "x1": 673.9199829101562, + "y1": 424.08001708984375, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 375.8399963378906, + "x1": 673.9199829101562, + "y1": 399.6000061035156, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 351.3599853515625, + "x1": 673.9199829101562, + "y1": 375.1199951171875, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 326.8800048828125, + "x1": 673.9199829101562, + "y1": 350.6400146484375, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 302.3999938964844, + "x1": 673.9199829101562, + "y1": 326.1600036621094, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 449.6400146484375, + "x1": 640.7999877929688, + "y1": 470.8800048828125, + "width": 33.8399658203125, + "height": 21.239990234375 + }, { + "x0": 606.9600219726562, + "y0": 424.79998779296875, + "x1": 640.7999877929688, + "y1": 448.55999755859375, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 400.32000732421875, + "x1": 640.7999877929688, + "y1": 424.08001708984375, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 375.8399963378906, + "x1": 640.7999877929688, + "y1": 399.6000061035156, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 351.3599853515625, + "x1": 640.7999877929688, + "y1": 375.1199951171875, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 326.8800048828125, + "x1": 640.7999877929688, + "y1": 350.6400146484375, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 302.3999938964844, + "x1": 640.7999877929688, + "y1": 326.1600036621094, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 449.6400146484375, + "x1": 606.239990234375, + "y1": 470.8800048828125, + "width": 38.15997314453125, + "height": 21.239990234375 + }, { + "x0": 568.0800170898438, + "y0": 424.79998779296875, + "x1": 606.239990234375, + "y1": 448.55999755859375, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 400.32000732421875, + "x1": 606.239990234375, + "y1": 424.08001708984375, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 375.8399963378906, + "x1": 606.239990234375, + "y1": 399.6000061035156, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 351.3599853515625, + "x1": 606.239990234375, + "y1": 375.1199951171875, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 326.8800048828125, + "x1": 606.239990234375, + "y1": 350.6400146484375, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 302.3999938964844, + "x1": 606.239990234375, + "y1": 326.1600036621094, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 449.6400146484375, + "x1": 567.3599853515625, + "y1": 470.8800048828125, + "width": 37.43994140625, + "height": 21.239990234375 + }, { + "x0": 529.9200439453125, + "y0": 424.79998779296875, + "x1": 567.3599853515625, + "y1": 448.55999755859375, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 400.32000732421875, + "x1": 567.3599853515625, + "y1": 424.08001708984375, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 375.8399963378906, + "x1": 567.3599853515625, + "y1": 399.6000061035156, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 351.3599853515625, + "x1": 567.3599853515625, + "y1": 375.1199951171875, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 326.8800048828125, + "x1": 567.3599853515625, + "y1": 350.6400146484375, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 302.3999938964844, + "x1": 567.3599853515625, + "y1": 326.1600036621094, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 449.6400146484375, + "x1": 529.2000122070312, + "y1": 470.8800048828125, + "width": 38.52001953125, + "height": 21.239990234375 + }, { + "x0": 490.67999267578125, + "y0": 424.79998779296875, + "x1": 529.2000122070312, + "y1": 448.55999755859375, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 400.32000732421875, + "x1": 529.2000122070312, + "y1": 424.08001708984375, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 375.8399963378906, + "x1": 529.2000122070312, + "y1": 399.6000061035156, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 351.3599853515625, + "x1": 529.2000122070312, + "y1": 375.1199951171875, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 326.8800048828125, + "x1": 529.2000122070312, + "y1": 350.6400146484375, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 302.3999938964844, + "x1": 529.2000122070312, + "y1": 326.1600036621094, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 449.6400146484375, + "x1": 489.9599914550781, + "y1": 470.8800048828125, + "width": 39.959991455078125, + "height": 21.239990234375 + }, { + "x0": 450.0, + "y0": 424.79998779296875, + "x1": 489.9599914550781, + "y1": 448.55999755859375, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 400.32000732421875, + "x1": 489.9599914550781, + "y1": 424.08001708984375, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 375.8399963378906, + "x1": 489.9599914550781, + "y1": 399.6000061035156, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 351.3599853515625, + "x1": 489.9599914550781, + "y1": 375.1199951171875, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 326.8800048828125, + "x1": 489.9599914550781, + "y1": 350.6400146484375, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 302.3999938964844, + "x1": 489.9599914550781, + "y1": 326.1600036621094, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 449.6400146484375, + "x1": 449.2799987792969, + "y1": 470.8800048828125, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 409.67999267578125, + "y0": 424.79998779296875, + "x1": 449.2799987792969, + "y1": 448.55999755859375, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 400.32000732421875, + "x1": 449.2799987792969, + "y1": 424.08001708984375, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 375.8399963378906, + "x1": 449.2799987792969, + "y1": 399.6000061035156, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 351.3599853515625, + "x1": 449.2799987792969, + "y1": 375.1199951171875, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 326.8800048828125, + "x1": 449.2799987792969, + "y1": 350.6400146484375, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 302.3999938964844, + "x1": 449.2799987792969, + "y1": 326.1600036621094, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 449.6400146484375, + "x1": 408.6000061035156, + "y1": 481.67999267578125, + "width": 30.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 378.0, + "y0": 424.79998779296875, + "x1": 408.6000061035156, + "y1": 448.55999755859375, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 400.32000732421875, + "x1": 408.6000061035156, + "y1": 424.08001708984375, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 375.8399963378906, + "x1": 408.6000061035156, + "y1": 399.6000061035156, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 351.3599853515625, + "x1": 408.6000061035156, + "y1": 375.1199951171875, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 326.8800048828125, + "x1": 408.6000061035156, + "y1": 350.6400146484375, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 302.3999938964844, + "x1": 408.6000061035156, + "y1": 326.1600036621094, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 449.6400146484375, + "x1": 377.2799987792969, + "y1": 481.67999267578125, + "width": 48.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 424.79998779296875, + "x1": 377.2799987792969, + "y1": 448.55999755859375, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 400.32000732421875, + "x1": 377.2799987792969, + "y1": 424.08001708984375, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 375.8399963378906, + "x1": 377.2799987792969, + "y1": 399.6000061035156, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 351.3599853515625, + "x1": 377.2799987792969, + "y1": 375.1199951171875, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 326.8800048828125, + "x1": 377.2799987792969, + "y1": 350.6400146484375, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 302.3999938964844, + "x1": 377.2799987792969, + "y1": 326.1600036621094, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 449.6400146484375, + "x1": 327.9599914550781, + "y1": 481.67999267578125, + "width": 48.959991455078125, + "height": 32.03997802734375 + }, { + "x0": 279.0, + "y0": 424.79998779296875, + "x1": 327.9599914550781, + "y1": 448.55999755859375, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 400.32000732421875, + "x1": 327.9599914550781, + "y1": 424.08001708984375, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 375.8399963378906, + "x1": 327.9599914550781, + "y1": 399.6000061035156, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 351.3599853515625, + "x1": 327.9599914550781, + "y1": 375.1199951171875, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 326.8800048828125, + "x1": 327.9599914550781, + "y1": 350.6400146484375, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 302.3999938964844, + "x1": 327.9599914550781, + "y1": 326.1600036621094, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 449.6400146484375, + "x1": 278.280029296875, + "y1": 481.67999267578125, + "width": 21.60003662109375, + "height": 32.03997802734375 + }, { + "x0": 256.67999267578125, + "y0": 424.79998779296875, + "x1": 278.280029296875, + "y1": 448.55999755859375, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 400.32000732421875, + "x1": 278.280029296875, + "y1": 424.08001708984375, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 375.8399963378906, + "x1": 278.280029296875, + "y1": 399.6000061035156, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 351.3599853515625, + "x1": 278.280029296875, + "y1": 375.1199951171875, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 326.8800048828125, + "x1": 278.280029296875, + "y1": 350.6400146484375, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 302.3999938964844, + "x1": 278.280029296875, + "y1": 326.1600036621094, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 449.6400146484375, + "x1": 255.96002197265625, + "y1": 481.67999267578125, + "width": 48.96002197265625, + "height": 32.03997802734375 + }, { + "x0": 207.0, + "y0": 424.79998779296875, + "x1": 255.96002197265625, + "y1": 448.55999755859375, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 400.32000732421875, + "x1": 255.96002197265625, + "y1": 424.08001708984375, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 375.8399963378906, + "x1": 255.96002197265625, + "y1": 399.6000061035156, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 351.3599853515625, + "x1": 255.96002197265625, + "y1": 375.1199951171875, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 326.8800048828125, + "x1": 255.96002197265625, + "y1": 350.6400146484375, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 302.3999938964844, + "x1": 255.96002197265625, + "y1": 326.1600036621094, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 449.6400146484375, + "x1": 206.280029296875, + "y1": 481.67999267578125, + "width": 131.4000244140625, + "height": 32.03997802734375 + }, { + "x0": 74.8800048828125, + "y0": 424.79998779296875, + "x1": 206.280029296875, + "y1": 448.55999755859375, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 400.32000732421875, + "x1": 206.280029296875, + "y1": 424.08001708984375, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 375.8399963378906, + "x1": 206.280029296875, + "y1": 399.6000061035156, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 351.3599853515625, + "x1": 206.280029296875, + "y1": 375.1199951171875, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 326.8800048828125, + "x1": 206.280029296875, + "y1": 350.6400146484375, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 302.3999938964844, + "x1": 206.280029296875, + "y1": 326.1600036621094, + "width": 131.4000244140625, + "height": 23.760009765625 + } + ] + }, { + "pageInfo": { + "number": 120, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 674.6400146484375, + "y0": 446.760009765625, + "x1": 715.3200073242188, + "y1": 468.0, + "width": 40.67999267578125, + "height": 21.239990234375 + }, { + "x0": 674.6400146484375, + "y0": 421.91998291015625, + "x1": 715.3200073242188, + "y1": 445.67999267578125, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 397.44000244140625, + "x1": 715.3200073242188, + "y1": 421.20001220703125, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 372.96002197265625, + "x1": 715.3200073242188, + "y1": 396.7200012207031, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 348.1199951171875, + "x1": 715.3200073242188, + "y1": 372.239990234375, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 323.6400146484375, + "x1": 715.3200073242188, + "y1": 347.760009765625, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 299.1600036621094, + "x1": 715.3200073242188, + "y1": 323.2799987792969, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 446.760009765625, + "x1": 673.9199829101562, + "y1": 468.0, + "width": 32.39996337890625, + "height": 21.239990234375 + }, { + "x0": 641.52001953125, + "y0": 421.91998291015625, + "x1": 673.9199829101562, + "y1": 445.67999267578125, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 397.44000244140625, + "x1": 673.9199829101562, + "y1": 421.20001220703125, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 372.96002197265625, + "x1": 673.9199829101562, + "y1": 396.7200012207031, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 348.1199951171875, + "x1": 673.9199829101562, + "y1": 372.239990234375, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 323.6400146484375, + "x1": 673.9199829101562, + "y1": 347.760009765625, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 299.1600036621094, + "x1": 673.9199829101562, + "y1": 323.2799987792969, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 446.760009765625, + "x1": 640.7999877929688, + "y1": 468.0, + "width": 33.8399658203125, + "height": 21.239990234375 + }, { + "x0": 606.9600219726562, + "y0": 421.91998291015625, + "x1": 640.7999877929688, + "y1": 445.67999267578125, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 397.44000244140625, + "x1": 640.7999877929688, + "y1": 421.20001220703125, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 372.96002197265625, + "x1": 640.7999877929688, + "y1": 396.7200012207031, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 348.1199951171875, + "x1": 640.7999877929688, + "y1": 372.239990234375, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 323.6400146484375, + "x1": 640.7999877929688, + "y1": 347.760009765625, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 299.1600036621094, + "x1": 640.7999877929688, + "y1": 323.2799987792969, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 446.760009765625, + "x1": 606.239990234375, + "y1": 468.0, + "width": 34.55999755859375, + "height": 21.239990234375 + }, { + "x0": 571.6799926757812, + "y0": 421.91998291015625, + "x1": 606.239990234375, + "y1": 445.67999267578125, + "width": 34.55999755859375, + "height": 23.760009765625 + }, { + "x0": 571.6799926757812, + "y0": 397.44000244140625, + "x1": 606.239990234375, + "y1": 421.20001220703125, + "width": 34.55999755859375, + "height": 23.760009765625 + }, { + "x0": 571.6799926757812, + "y0": 372.96002197265625, + "x1": 606.239990234375, + "y1": 396.7200012207031, + "width": 34.55999755859375, + "height": 23.759979248046875 + }, { + "x0": 571.6799926757812, + "y0": 348.1199951171875, + "x1": 606.239990234375, + "y1": 372.239990234375, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 323.6400146484375, + "x1": 606.239990234375, + "y1": 347.760009765625, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 299.1600036621094, + "x1": 606.239990234375, + "y1": 323.2799987792969, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 446.760009765625, + "x1": 570.9600219726562, + "y1": 468.0, + "width": 39.96002197265625, + "height": 21.239990234375 + }, { + "x0": 531.0, + "y0": 421.91998291015625, + "x1": 570.9600219726562, + "y1": 445.67999267578125, + "width": 39.96002197265625, + "height": 23.760009765625 + }, { + "x0": 531.0, + "y0": 397.44000244140625, + "x1": 570.9600219726562, + "y1": 421.20001220703125, + "width": 39.96002197265625, + "height": 23.760009765625 + }, { + "x0": 531.0, + "y0": 372.96002197265625, + "x1": 570.9600219726562, + "y1": 396.7200012207031, + "width": 39.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 531.0, + "y0": 348.1199951171875, + "x1": 570.9600219726562, + "y1": 372.239990234375, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 323.6400146484375, + "x1": 570.9600219726562, + "y1": 347.760009765625, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 299.1600036621094, + "x1": 570.9600219726562, + "y1": 323.2799987792969, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 446.760009765625, + "x1": 530.280029296875, + "y1": 468.0, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 490.67999267578125, + "y0": 421.91998291015625, + "x1": 530.280029296875, + "y1": 445.67999267578125, + "width": 39.60003662109375, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 397.44000244140625, + "x1": 530.280029296875, + "y1": 421.20001220703125, + "width": 39.60003662109375, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 372.96002197265625, + "x1": 530.280029296875, + "y1": 396.7200012207031, + "width": 39.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 348.1199951171875, + "x1": 530.280029296875, + "y1": 372.239990234375, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 323.6400146484375, + "x1": 530.280029296875, + "y1": 347.760009765625, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 299.1600036621094, + "x1": 530.280029296875, + "y1": 323.2799987792969, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 446.760009765625, + "x1": 489.9599914550781, + "y1": 468.0, + "width": 39.959991455078125, + "height": 21.239990234375 + }, { + "x0": 450.0, + "y0": 421.91998291015625, + "x1": 489.9599914550781, + "y1": 445.67999267578125, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 397.44000244140625, + "x1": 489.9599914550781, + "y1": 421.20001220703125, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 372.96002197265625, + "x1": 489.9599914550781, + "y1": 396.7200012207031, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 348.1199951171875, + "x1": 489.9599914550781, + "y1": 372.239990234375, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 323.6400146484375, + "x1": 489.9599914550781, + "y1": 347.760009765625, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 299.1600036621094, + "x1": 489.9599914550781, + "y1": 323.2799987792969, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 446.760009765625, + "x1": 449.2799987792969, + "y1": 468.0, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 409.67999267578125, + "y0": 421.91998291015625, + "x1": 449.2799987792969, + "y1": 445.67999267578125, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 397.44000244140625, + "x1": 449.2799987792969, + "y1": 421.20001220703125, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 372.96002197265625, + "x1": 449.2799987792969, + "y1": 396.7200012207031, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 348.1199951171875, + "x1": 449.2799987792969, + "y1": 372.239990234375, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 323.6400146484375, + "x1": 449.2799987792969, + "y1": 347.760009765625, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 299.1600036621094, + "x1": 449.2799987792969, + "y1": 323.2799987792969, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 446.760009765625, + "x1": 408.6000061035156, + "y1": 478.79998779296875, + "width": 30.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 378.0, + "y0": 421.91998291015625, + "x1": 408.6000061035156, + "y1": 445.67999267578125, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 397.44000244140625, + "x1": 408.6000061035156, + "y1": 421.20001220703125, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 372.96002197265625, + "x1": 408.6000061035156, + "y1": 396.7200012207031, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 348.1199951171875, + "x1": 408.6000061035156, + "y1": 372.239990234375, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 323.6400146484375, + "x1": 408.6000061035156, + "y1": 347.760009765625, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 299.1600036621094, + "x1": 408.6000061035156, + "y1": 323.2799987792969, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 446.760009765625, + "x1": 377.2799987792969, + "y1": 478.79998779296875, + "width": 48.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 421.91998291015625, + "x1": 377.2799987792969, + "y1": 445.67999267578125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 397.44000244140625, + "x1": 377.2799987792969, + "y1": 421.20001220703125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 372.96002197265625, + "x1": 377.2799987792969, + "y1": 396.7200012207031, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 348.1199951171875, + "x1": 377.2799987792969, + "y1": 372.239990234375, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 323.6400146484375, + "x1": 377.2799987792969, + "y1": 347.760009765625, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 299.1600036621094, + "x1": 377.2799987792969, + "y1": 323.2799987792969, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 446.760009765625, + "x1": 327.9599914550781, + "y1": 478.79998779296875, + "width": 48.959991455078125, + "height": 32.03997802734375 + }, { + "x0": 279.0, + "y0": 421.91998291015625, + "x1": 327.9599914550781, + "y1": 445.67999267578125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 397.44000244140625, + "x1": 327.9599914550781, + "y1": 421.20001220703125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 372.96002197265625, + "x1": 327.9599914550781, + "y1": 396.7200012207031, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 348.1199951171875, + "x1": 327.9599914550781, + "y1": 372.239990234375, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 323.6400146484375, + "x1": 327.9599914550781, + "y1": 347.760009765625, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 299.1600036621094, + "x1": 327.9599914550781, + "y1": 323.2799987792969, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 446.760009765625, + "x1": 278.280029296875, + "y1": 478.79998779296875, + "width": 26.280029296875, + "height": 32.03997802734375 + }, { + "x0": 252.0, + "y0": 421.91998291015625, + "x1": 278.280029296875, + "y1": 445.67999267578125, + "width": 26.280029296875, + "height": 23.760009765625 + }, { + "x0": 252.0, + "y0": 397.44000244140625, + "x1": 278.280029296875, + "y1": 421.20001220703125, + "width": 26.280029296875, + "height": 23.760009765625 + }, { + "x0": 252.0, + "y0": 372.96002197265625, + "x1": 278.280029296875, + "y1": 396.7200012207031, + "width": 26.280029296875, + "height": 23.759979248046875 + }, { + "x0": 252.0, + "y0": 348.1199951171875, + "x1": 278.280029296875, + "y1": 372.239990234375, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 323.6400146484375, + "x1": 278.280029296875, + "y1": 347.760009765625, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 299.1600036621094, + "x1": 278.280029296875, + "y1": 323.2799987792969, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 446.760009765625, + "x1": 251.280029296875, + "y1": 478.79998779296875, + "width": 48.60003662109375, + "height": 32.03997802734375 + }, { + "x0": 202.67999267578125, + "y0": 421.91998291015625, + "x1": 251.280029296875, + "y1": 445.67999267578125, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 202.67999267578125, + "y0": 397.44000244140625, + "x1": 251.280029296875, + "y1": 421.20001220703125, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 202.67999267578125, + "y0": 372.96002197265625, + "x1": 251.280029296875, + "y1": 396.7200012207031, + "width": 48.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 202.67999267578125, + "y0": 348.1199951171875, + "x1": 251.280029296875, + "y1": 372.239990234375, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 323.6400146484375, + "x1": 251.280029296875, + "y1": 347.760009765625, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 299.1600036621094, + "x1": 251.280029296875, + "y1": 323.2799987792969, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 446.760009765625, + "x1": 201.96002197265625, + "y1": 478.79998779296875, + "width": 127.08001708984375, + "height": 32.03997802734375 + }, { + "x0": 74.8800048828125, + "y0": 421.91998291015625, + "x1": 201.96002197265625, + "y1": 445.67999267578125, + "width": 127.08001708984375, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 397.44000244140625, + "x1": 201.96002197265625, + "y1": 421.20001220703125, + "width": 127.08001708984375, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 372.96002197265625, + "x1": 201.96002197265625, + "y1": 396.7200012207031, + "width": 127.08001708984375, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 348.1199951171875, + "x1": 201.96002197265625, + "y1": 372.239990234375, + "width": 127.08001708984375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 323.6400146484375, + "x1": 201.96002197265625, + "y1": 347.760009765625, + "width": 127.08001708984375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 299.1600036621094, + "x1": 201.96002197265625, + "y1": 323.2799987792969, + "width": 127.08001708984375, + "height": 24.1199951171875 + } + ] + }, { + "pageInfo": { + "number": 121, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 616.6799926757812, + "y0": 430.91998291015625, + "x1": 666.0, + "y1": 446.3999938964844, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 414.0, + "x1": 666.0, + "y1": 429.8399963378906, + "width": 49.32000732421875, + "height": 15.839996337890625 + }, { + "x0": 616.6799926757812, + "y0": 397.44000244140625, + "x1": 666.0, + "y1": 412.91998291015625, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 380.52001953125, + "x1": 666.0, + "y1": 396.3599853515625, + "width": 49.32000732421875, + "height": 15.8399658203125 + }, { + "x0": 616.6799926757812, + "y0": 363.96002197265625, + "x1": 666.0, + "y1": 379.44000244140625, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 347.0400085449219, + "x1": 666.0, + "y1": 362.52001953125, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 330.8399963378906, + "x1": 666.0, + "y1": 345.6000061035156, + "width": 49.32000732421875, + "height": 14.760009765625 + }, { + "x0": 616.6799926757812, + "y0": 313.55999755859375, + "x1": 666.0, + "y1": 329.0400085449219, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 297.0, + "x1": 666.0, + "y1": 312.4800109863281, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 280.0799865722656, + "x1": 666.0, + "y1": 295.55999755859375, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 263.1600341796875, + "x1": 666.0, + "y1": 279.0, + "width": 49.32000732421875, + "height": 15.8399658203125 + }, { + "x0": 616.6799926757812, + "y0": 246.5999755859375, + "x1": 666.0, + "y1": 262.0799560546875, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 229.67999267578125, + "x1": 666.0, + "y1": 245.52001953125, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 213.47998046875, + "x1": 666.0, + "y1": 228.239990234375, + "width": 49.32000732421875, + "height": 14.760009765625 + }, { + "x0": 616.6799926757812, + "y0": 196.20001220703125, + "x1": 666.0, + "y1": 212.0400390625, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 179.6400146484375, + "x1": 666.0, + "y1": 195.1199951171875, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 162.719970703125, + "x1": 666.0, + "y1": 178.55999755859375, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 146.1600341796875, + "x1": 666.0, + "y1": 161.6400146484375, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 129.239990234375, + "x1": 666.0, + "y1": 144.719970703125, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 112.32000732421875, + "x1": 666.0, + "y1": 128.1600341796875, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 430.91998291015625, + "x1": 615.5999755859375, + "y1": 446.3999938964844, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 414.0, + "x1": 615.5999755859375, + "y1": 429.8399963378906, + "width": 52.91998291015625, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 397.44000244140625, + "x1": 615.5999755859375, + "y1": 412.91998291015625, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 380.52001953125, + "x1": 615.5999755859375, + "y1": 396.3599853515625, + "width": 52.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 363.96002197265625, + "x1": 615.5999755859375, + "y1": 379.44000244140625, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 347.0400085449219, + "x1": 615.5999755859375, + "y1": 362.52001953125, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 330.8399963378906, + "x1": 615.5999755859375, + "y1": 345.6000061035156, + "width": 52.91998291015625, + "height": 14.760009765625 + }, { + "x0": 562.6799926757812, + "y0": 313.55999755859375, + "x1": 615.5999755859375, + "y1": 329.0400085449219, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 297.0, + "x1": 615.5999755859375, + "y1": 312.4800109863281, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 280.0799865722656, + "x1": 615.5999755859375, + "y1": 295.55999755859375, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 263.1600341796875, + "x1": 615.5999755859375, + "y1": 279.0, + "width": 52.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 246.5999755859375, + "x1": 615.5999755859375, + "y1": 262.0799560546875, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 229.67999267578125, + "x1": 615.5999755859375, + "y1": 245.52001953125, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 213.47998046875, + "x1": 615.5999755859375, + "y1": 228.239990234375, + "width": 52.91998291015625, + "height": 14.760009765625 + }, { + "x0": 562.6799926757812, + "y0": 196.20001220703125, + "x1": 615.5999755859375, + "y1": 212.0400390625, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 179.6400146484375, + "x1": 615.5999755859375, + "y1": 195.1199951171875, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 162.719970703125, + "x1": 615.5999755859375, + "y1": 178.55999755859375, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 146.1600341796875, + "x1": 615.5999755859375, + "y1": 161.6400146484375, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 129.239990234375, + "x1": 615.5999755859375, + "y1": 144.719970703125, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 112.32000732421875, + "x1": 615.5999755859375, + "y1": 128.1600341796875, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 430.91998291015625, + "x1": 561.5999755859375, + "y1": 446.3999938964844, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 414.0, + "x1": 561.5999755859375, + "y1": 429.8399963378906, + "width": 59.39996337890625, + "height": 15.839996337890625 + }, { + "x0": 502.20001220703125, + "y0": 397.44000244140625, + "x1": 561.5999755859375, + "y1": 412.91998291015625, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 380.52001953125, + "x1": 561.5999755859375, + "y1": 396.3599853515625, + "width": 59.39996337890625, + "height": 15.8399658203125 + }, { + "x0": 502.20001220703125, + "y0": 363.96002197265625, + "x1": 561.5999755859375, + "y1": 379.44000244140625, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 347.0400085449219, + "x1": 561.5999755859375, + "y1": 362.52001953125, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 330.8399963378906, + "x1": 561.5999755859375, + "y1": 345.6000061035156, + "width": 59.39996337890625, + "height": 14.760009765625 + }, { + "x0": 502.20001220703125, + "y0": 313.55999755859375, + "x1": 561.5999755859375, + "y1": 329.0400085449219, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 297.0, + "x1": 561.5999755859375, + "y1": 312.4800109863281, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 280.0799865722656, + "x1": 561.5999755859375, + "y1": 295.55999755859375, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 263.1600341796875, + "x1": 561.5999755859375, + "y1": 279.0, + "width": 59.39996337890625, + "height": 15.8399658203125 + }, { + "x0": 502.20001220703125, + "y0": 246.5999755859375, + "x1": 561.5999755859375, + "y1": 262.0799560546875, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 229.67999267578125, + "x1": 561.5999755859375, + "y1": 245.52001953125, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 213.47998046875, + "x1": 561.5999755859375, + "y1": 228.239990234375, + "width": 59.39996337890625, + "height": 14.760009765625 + }, { + "x0": 502.20001220703125, + "y0": 196.20001220703125, + "x1": 561.5999755859375, + "y1": 212.0400390625, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 179.6400146484375, + "x1": 561.5999755859375, + "y1": 195.1199951171875, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 162.719970703125, + "x1": 561.5999755859375, + "y1": 178.55999755859375, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 146.1600341796875, + "x1": 561.5999755859375, + "y1": 161.6400146484375, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 129.239990234375, + "x1": 561.5999755859375, + "y1": 144.719970703125, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 112.32000732421875, + "x1": 561.5999755859375, + "y1": 128.1600341796875, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 430.91998291015625, + "x1": 501.1199951171875, + "y1": 446.3999938964844, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 414.0, + "x1": 501.1199951171875, + "y1": 429.8399963378906, + "width": 98.63998413085938, + "height": 15.839996337890625 + }, { + "x0": 402.4800109863281, + "y0": 397.44000244140625, + "x1": 501.1199951171875, + "y1": 412.91998291015625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 380.52001953125, + "x1": 501.1199951171875, + "y1": 396.3599853515625, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 402.4800109863281, + "y0": 363.96002197265625, + "x1": 501.1199951171875, + "y1": 379.44000244140625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 347.0400085449219, + "x1": 501.1199951171875, + "y1": 362.52001953125, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 330.8399963378906, + "x1": 501.1199951171875, + "y1": 345.6000061035156, + "width": 98.63998413085938, + "height": 14.760009765625 + }, { + "x0": 402.4800109863281, + "y0": 313.55999755859375, + "x1": 501.1199951171875, + "y1": 329.0400085449219, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 297.0, + "x1": 501.1199951171875, + "y1": 312.4800109863281, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 280.0799865722656, + "x1": 501.1199951171875, + "y1": 295.55999755859375, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 263.1600341796875, + "x1": 501.1199951171875, + "y1": 279.0, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 402.4800109863281, + "y0": 246.5999755859375, + "x1": 501.1199951171875, + "y1": 262.0799560546875, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 229.67999267578125, + "x1": 501.1199951171875, + "y1": 245.52001953125, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 213.47998046875, + "x1": 501.1199951171875, + "y1": 228.239990234375, + "width": 98.63998413085938, + "height": 14.760009765625 + }, { + "x0": 402.4800109863281, + "y0": 196.20001220703125, + "x1": 501.1199951171875, + "y1": 212.0400390625, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 179.6400146484375, + "x1": 501.1199951171875, + "y1": 195.1199951171875, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 162.719970703125, + "x1": 501.1199951171875, + "y1": 178.55999755859375, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 146.1600341796875, + "x1": 501.1199951171875, + "y1": 161.6400146484375, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 129.239990234375, + "x1": 501.1199951171875, + "y1": 144.719970703125, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 112.32000732421875, + "x1": 501.1199951171875, + "y1": 128.1600341796875, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 384.4800109863281, + "y0": 330.4800109863281, + "x1": 401.3999938964844, + "y1": 345.9599914550781, + "width": 16.91998291015625, + "height": 15.47998046875 + }, { + "x0": 384.4800109863281, + "y0": 213.1199951171875, + "x1": 401.3999938964844, + "y1": 228.5999755859375, + "width": 16.91998291015625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 430.91998291015625, + "x1": 383.3999938964844, + "y1": 446.3999938964844, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 414.0, + "x1": 383.3999938964844, + "y1": 429.8399963378906, + "width": 46.44000244140625, + "height": 15.839996337890625 + }, { + "x0": 336.9599914550781, + "y0": 397.44000244140625, + "x1": 383.3999938964844, + "y1": 412.91998291015625, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 380.52001953125, + "x1": 383.3999938964844, + "y1": 396.3599853515625, + "width": 46.44000244140625, + "height": 15.8399658203125 + }, { + "x0": 336.9599914550781, + "y0": 363.96002197265625, + "x1": 383.3999938964844, + "y1": 379.44000244140625, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 347.0400085449219, + "x1": 383.3999938964844, + "y1": 362.52001953125, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 330.8399963378906, + "x1": 383.3999938964844, + "y1": 345.6000061035156, + "width": 46.44000244140625, + "height": 14.760009765625 + }, { + "x0": 336.9599914550781, + "y0": 313.55999755859375, + "x1": 383.3999938964844, + "y1": 329.0400085449219, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 297.0, + "x1": 383.3999938964844, + "y1": 312.4800109863281, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 280.0799865722656, + "x1": 383.3999938964844, + "y1": 295.55999755859375, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 263.1600341796875, + "x1": 383.3999938964844, + "y1": 279.0, + "width": 46.44000244140625, + "height": 15.8399658203125 + }, { + "x0": 336.9599914550781, + "y0": 246.5999755859375, + "x1": 383.3999938964844, + "y1": 262.0799560546875, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 229.67999267578125, + "x1": 383.3999938964844, + "y1": 245.52001953125, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 213.47998046875, + "x1": 383.3999938964844, + "y1": 228.239990234375, + "width": 46.44000244140625, + "height": 14.760009765625 + }, { + "x0": 336.9599914550781, + "y0": 196.20001220703125, + "x1": 383.3999938964844, + "y1": 212.0400390625, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 179.6400146484375, + "x1": 383.3999938964844, + "y1": 195.1199951171875, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 162.719970703125, + "x1": 383.3999938964844, + "y1": 178.55999755859375, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 146.1600341796875, + "x1": 383.3999938964844, + "y1": 161.6400146484375, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 129.239990234375, + "x1": 383.3999938964844, + "y1": 144.719970703125, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 112.32000732421875, + "x1": 383.3999938964844, + "y1": 128.1600341796875, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 430.91998291015625, + "x1": 335.8800048828125, + "y1": 446.3999938964844, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 414.0, + "x1": 335.8800048828125, + "y1": 429.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 282.6000061035156, + "y0": 397.44000244140625, + "x1": 335.8800048828125, + "y1": 412.91998291015625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 380.52001953125, + "x1": 335.8800048828125, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 282.6000061035156, + "y0": 363.96002197265625, + "x1": 335.8800048828125, + "y1": 379.44000244140625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 347.0400085449219, + "x1": 335.8800048828125, + "y1": 362.52001953125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 330.8399963378906, + "x1": 335.8800048828125, + "y1": 345.6000061035156, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 282.6000061035156, + "y0": 313.55999755859375, + "x1": 335.8800048828125, + "y1": 329.0400085449219, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 297.0, + "x1": 335.8800048828125, + "y1": 312.4800109863281, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 280.0799865722656, + "x1": 335.8800048828125, + "y1": 295.55999755859375, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 263.1600341796875, + "x1": 335.8800048828125, + "y1": 279.0, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 282.6000061035156, + "y0": 246.5999755859375, + "x1": 335.8800048828125, + "y1": 262.0799560546875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 229.67999267578125, + "x1": 335.8800048828125, + "y1": 245.52001953125, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 213.47998046875, + "x1": 335.8800048828125, + "y1": 228.239990234375, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 282.6000061035156, + "y0": 196.20001220703125, + "x1": 335.8800048828125, + "y1": 212.0400390625, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 179.6400146484375, + "x1": 335.8800048828125, + "y1": 195.1199951171875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 162.719970703125, + "x1": 335.8800048828125, + "y1": 178.55999755859375, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 146.1600341796875, + "x1": 335.8800048828125, + "y1": 161.6400146484375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 129.239990234375, + "x1": 335.8800048828125, + "y1": 144.719970703125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 112.32000732421875, + "x1": 335.8800048828125, + "y1": 128.1600341796875, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 430.91998291015625, + "x1": 281.1600036621094, + "y1": 446.3999938964844, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 414.0, + "x1": 281.1600036621094, + "y1": 429.8399963378906, + "width": 54.720001220703125, + "height": 15.839996337890625 + }, { + "x0": 226.44000244140625, + "y0": 397.44000244140625, + "x1": 281.1600036621094, + "y1": 412.91998291015625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 380.52001953125, + "x1": 281.1600036621094, + "y1": 396.3599853515625, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 226.44000244140625, + "y0": 363.96002197265625, + "x1": 281.1600036621094, + "y1": 379.44000244140625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 347.0400085449219, + "x1": 281.1600036621094, + "y1": 362.52001953125, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 330.8399963378906, + "x1": 281.1600036621094, + "y1": 345.6000061035156, + "width": 54.720001220703125, + "height": 14.760009765625 + }, { + "x0": 226.44000244140625, + "y0": 313.55999755859375, + "x1": 281.1600036621094, + "y1": 329.0400085449219, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 297.0, + "x1": 281.1600036621094, + "y1": 312.4800109863281, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 280.0799865722656, + "x1": 281.1600036621094, + "y1": 295.55999755859375, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 263.1600341796875, + "x1": 281.1600036621094, + "y1": 279.0, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 226.44000244140625, + "y0": 246.5999755859375, + "x1": 281.1600036621094, + "y1": 262.0799560546875, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 229.67999267578125, + "x1": 281.1600036621094, + "y1": 245.52001953125, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 213.47998046875, + "x1": 281.1600036621094, + "y1": 228.239990234375, + "width": 54.720001220703125, + "height": 14.760009765625 + }, { + "x0": 226.44000244140625, + "y0": 196.20001220703125, + "x1": 281.1600036621094, + "y1": 212.0400390625, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 179.6400146484375, + "x1": 281.1600036621094, + "y1": 195.1199951171875, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 162.719970703125, + "x1": 281.1600036621094, + "y1": 178.55999755859375, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 146.1600341796875, + "x1": 281.1600036621094, + "y1": 161.6400146484375, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 129.239990234375, + "x1": 281.1600036621094, + "y1": 144.719970703125, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 112.32000732421875, + "x1": 281.1600036621094, + "y1": 128.1600341796875, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 430.91998291015625, + "x1": 225.3599853515625, + "y1": 446.3999938964844, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 414.0, + "x1": 225.3599853515625, + "y1": 429.8399963378906, + "width": 100.0799560546875, + "height": 15.839996337890625 + }, { + "x0": 125.280029296875, + "y0": 397.44000244140625, + "x1": 225.3599853515625, + "y1": 412.91998291015625, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 380.52001953125, + "x1": 225.3599853515625, + "y1": 396.3599853515625, + "width": 100.0799560546875, + "height": 15.8399658203125 + }, { + "x0": 125.280029296875, + "y0": 363.96002197265625, + "x1": 225.3599853515625, + "y1": 379.44000244140625, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 347.0400085449219, + "x1": 225.3599853515625, + "y1": 362.52001953125, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 330.8399963378906, + "x1": 225.3599853515625, + "y1": 345.6000061035156, + "width": 100.0799560546875, + "height": 14.760009765625 + }, { + "x0": 125.280029296875, + "y0": 313.55999755859375, + "x1": 225.3599853515625, + "y1": 329.0400085449219, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 297.0, + "x1": 225.3599853515625, + "y1": 312.4800109863281, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 280.0799865722656, + "x1": 225.3599853515625, + "y1": 295.55999755859375, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 263.1600341796875, + "x1": 225.3599853515625, + "y1": 279.0, + "width": 100.0799560546875, + "height": 15.8399658203125 + }, { + "x0": 125.280029296875, + "y0": 246.5999755859375, + "x1": 225.3599853515625, + "y1": 262.0799560546875, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 229.67999267578125, + "x1": 225.3599853515625, + "y1": 245.52001953125, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 213.47998046875, + "x1": 225.3599853515625, + "y1": 228.239990234375, + "width": 100.0799560546875, + "height": 14.760009765625 + }, { + "x0": 125.280029296875, + "y0": 196.20001220703125, + "x1": 225.3599853515625, + "y1": 212.0400390625, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 179.6400146484375, + "x1": 225.3599853515625, + "y1": 195.1199951171875, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 162.719970703125, + "x1": 225.3599853515625, + "y1": 178.55999755859375, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 146.1600341796875, + "x1": 225.3599853515625, + "y1": 161.6400146484375, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 129.239990234375, + "x1": 225.3599853515625, + "y1": 144.719970703125, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 112.32000732421875, + "x1": 225.3599853515625, + "y1": 128.1600341796875, + "width": 100.0799560546875, + "height": 15.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 122, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 621.3599853515625, + "y0": 430.91998291015625, + "x1": 669.5999755859375, + "y1": 446.3999938964844, + "width": 48.239990234375, + "height": 15.480010986328125 + }, { + "x0": 621.3599853515625, + "y0": 414.0, + "x1": 669.5999755859375, + "y1": 429.8399963378906, + "width": 48.239990234375, + "height": 15.839996337890625 + }, { + "x0": 621.3599853515625, + "y0": 397.44000244140625, + "x1": 669.5999755859375, + "y1": 412.91998291015625, + "width": 48.239990234375, + "height": 15.47998046875 + }, { + "x0": 621.3599853515625, + "y0": 380.52001953125, + "x1": 669.5999755859375, + "y1": 396.3599853515625, + "width": 48.239990234375, + "height": 15.8399658203125 + }, { + "x0": 621.3599853515625, + "y0": 363.96002197265625, + "x1": 669.5999755859375, + "y1": 379.44000244140625, + "width": 48.239990234375, + "height": 15.47998046875 + }, { + "x0": 621.3599853515625, + "y0": 347.0400085449219, + "x1": 669.5999755859375, + "y1": 362.52001953125, + "width": 48.239990234375, + "height": 15.480010986328125 + }, { + "x0": 567.3599853515625, + "y0": 430.91998291015625, + "x1": 619.9199829101562, + "y1": 446.3999938964844, + "width": 52.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 567.3599853515625, + "y0": 414.0, + "x1": 619.9199829101562, + "y1": 429.8399963378906, + "width": 52.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 567.3599853515625, + "y0": 397.44000244140625, + "x1": 619.9199829101562, + "y1": 412.91998291015625, + "width": 52.55999755859375, + "height": 15.47998046875 + }, { + "x0": 567.3599853515625, + "y0": 380.52001953125, + "x1": 619.9199829101562, + "y1": 396.3599853515625, + "width": 52.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 567.3599853515625, + "y0": 363.96002197265625, + "x1": 619.9199829101562, + "y1": 379.44000244140625, + "width": 52.55999755859375, + "height": 15.47998046875 + }, { + "x0": 567.3599853515625, + "y0": 347.0400085449219, + "x1": 619.9199829101562, + "y1": 362.52001953125, + "width": 52.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 505.79998779296875, + "y0": 430.91998291015625, + "x1": 565.9199829101562, + "y1": 446.3999938964844, + "width": 60.1199951171875, + "height": 15.480010986328125 + }, { + "x0": 505.79998779296875, + "y0": 414.0, + "x1": 565.9199829101562, + "y1": 429.8399963378906, + "width": 60.1199951171875, + "height": 15.839996337890625 + }, { + "x0": 505.79998779296875, + "y0": 397.44000244140625, + "x1": 565.9199829101562, + "y1": 412.91998291015625, + "width": 60.1199951171875, + "height": 15.47998046875 + }, { + "x0": 505.79998779296875, + "y0": 380.52001953125, + "x1": 565.9199829101562, + "y1": 396.3599853515625, + "width": 60.1199951171875, + "height": 15.8399658203125 + }, { + "x0": 505.79998779296875, + "y0": 363.96002197265625, + "x1": 565.9199829101562, + "y1": 379.44000244140625, + "width": 60.1199951171875, + "height": 15.47998046875 + }, { + "x0": 505.79998779296875, + "y0": 347.0400085449219, + "x1": 565.9199829101562, + "y1": 362.52001953125, + "width": 60.1199951171875, + "height": 15.480010986328125 + }, { + "x0": 405.7200012207031, + "y0": 430.91998291015625, + "x1": 504.3599853515625, + "y1": 446.3999938964844, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 405.7200012207031, + "y0": 414.0, + "x1": 504.3599853515625, + "y1": 429.8399963378906, + "width": 98.63998413085938, + "height": 15.839996337890625 + }, { + "x0": 405.7200012207031, + "y0": 397.44000244140625, + "x1": 504.3599853515625, + "y1": 412.91998291015625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 405.7200012207031, + "y0": 380.52001953125, + "x1": 504.3599853515625, + "y1": 396.3599853515625, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 405.7200012207031, + "y0": 363.96002197265625, + "x1": 504.3599853515625, + "y1": 379.44000244140625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 405.7200012207031, + "y0": 347.0400085449219, + "x1": 504.3599853515625, + "y1": 362.52001953125, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 388.0799865722656, + "y0": 414.0, + "x1": 404.6400146484375, + "y1": 429.8399963378906, + "width": 16.560028076171875, + "height": 15.839996337890625 + }, { + "x0": 388.0799865722656, + "y0": 380.52001953125, + "x1": 404.6400146484375, + "y1": 396.3599853515625, + "width": 16.560028076171875, + "height": 15.8399658203125 + }, { + "x0": 340.20001220703125, + "y0": 430.91998291015625, + "x1": 387.0, + "y1": 446.3999938964844, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 340.20001220703125, + "y0": 414.0, + "x1": 387.0, + "y1": 429.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 340.20001220703125, + "y0": 397.44000244140625, + "x1": 387.0, + "y1": 412.91998291015625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 340.20001220703125, + "y0": 380.52001953125, + "x1": 387.0, + "y1": 396.3599853515625, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 340.20001220703125, + "y0": 363.96002197265625, + "x1": 387.0, + "y1": 379.44000244140625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 340.20001220703125, + "y0": 347.0400085449219, + "x1": 387.0, + "y1": 362.52001953125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 285.8399963378906, + "y0": 430.91998291015625, + "x1": 339.1199951171875, + "y1": 446.3999938964844, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 285.8399963378906, + "y0": 414.0, + "x1": 339.1199951171875, + "y1": 429.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 285.8399963378906, + "y0": 397.44000244140625, + "x1": 339.1199951171875, + "y1": 412.91998291015625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 285.8399963378906, + "y0": 380.52001953125, + "x1": 339.1199951171875, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 285.8399963378906, + "y0": 363.96002197265625, + "x1": 339.1199951171875, + "y1": 379.44000244140625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 285.8399963378906, + "y0": 347.0400085449219, + "x1": 339.1199951171875, + "y1": 362.52001953125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 229.67999267578125, + "y0": 430.91998291015625, + "x1": 284.760009765625, + "y1": 446.3999938964844, + "width": 55.08001708984375, + "height": 15.480010986328125 + }, { + "x0": 229.67999267578125, + "y0": 414.0, + "x1": 284.760009765625, + "y1": 429.8399963378906, + "width": 55.08001708984375, + "height": 15.839996337890625 + }, { + "x0": 229.67999267578125, + "y0": 397.44000244140625, + "x1": 284.760009765625, + "y1": 412.91998291015625, + "width": 55.08001708984375, + "height": 15.47998046875 + }, { + "x0": 229.67999267578125, + "y0": 380.52001953125, + "x1": 284.760009765625, + "y1": 396.3599853515625, + "width": 55.08001708984375, + "height": 15.8399658203125 + }, { + "x0": 229.67999267578125, + "y0": 363.96002197265625, + "x1": 284.760009765625, + "y1": 379.44000244140625, + "width": 55.08001708984375, + "height": 15.47998046875 + }, { + "x0": 229.67999267578125, + "y0": 347.0400085449219, + "x1": 284.760009765625, + "y1": 362.52001953125, + "width": 55.08001708984375, + "height": 15.480010986328125 + }, { + "x0": 121.67999267578125, + "y0": 430.91998291015625, + "x1": 228.5999755859375, + "y1": 446.3999938964844, + "width": 106.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 121.67999267578125, + "y0": 414.0, + "x1": 228.5999755859375, + "y1": 429.8399963378906, + "width": 106.91998291015625, + "height": 15.839996337890625 + }, { + "x0": 121.67999267578125, + "y0": 397.44000244140625, + "x1": 228.5999755859375, + "y1": 412.91998291015625, + "width": 106.91998291015625, + "height": 15.47998046875 + }, { + "x0": 121.67999267578125, + "y0": 380.52001953125, + "x1": 228.5999755859375, + "y1": 396.3599853515625, + "width": 106.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 121.67999267578125, + "y0": 363.96002197265625, + "x1": 228.5999755859375, + "y1": 379.44000244140625, + "width": 106.91998291015625, + "height": 15.47998046875 + }, { + "x0": 121.67999267578125, + "y0": 347.0400085449219, + "x1": 228.5999755859375, + "y1": 362.52001953125, + "width": 106.91998291015625, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 123, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 674.6400146484375, + "y0": 452.8800048828125, + "x1": 715.3200073242188, + "y1": 473.760009765625, + "width": 40.67999267578125, + "height": 20.8800048828125 + }, { + "x0": 674.6400146484375, + "y0": 427.67999267578125, + "x1": 715.3200073242188, + "y1": 451.79998779296875, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 403.20001220703125, + "x1": 715.3200073242188, + "y1": 426.96002197265625, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 378.7200012207031, + "x1": 715.3200073242188, + "y1": 402.47998046875, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 354.239990234375, + "x1": 715.3200073242188, + "y1": 378.0, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 329.760009765625, + "x1": 715.3200073242188, + "y1": 353.5199890136719, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 305.2799987792969, + "x1": 715.3200073242188, + "y1": 329.0400085449219, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 267.8399658203125, + "x1": 715.3200073242188, + "y1": 291.6000061035156, + "width": 40.67999267578125, + "height": 23.760040283203125 + }, { + "x0": 641.52001953125, + "y0": 452.8800048828125, + "x1": 673.9199829101562, + "y1": 473.760009765625, + "width": 32.39996337890625, + "height": 20.8800048828125 + }, { + "x0": 641.52001953125, + "y0": 427.67999267578125, + "x1": 673.9199829101562, + "y1": 451.79998779296875, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 403.20001220703125, + "x1": 673.9199829101562, + "y1": 426.96002197265625, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 378.7200012207031, + "x1": 673.9199829101562, + "y1": 402.47998046875, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 354.239990234375, + "x1": 673.9199829101562, + "y1": 378.0, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 329.760009765625, + "x1": 673.9199829101562, + "y1": 353.5199890136719, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 305.2799987792969, + "x1": 673.9199829101562, + "y1": 329.0400085449219, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 267.8399658203125, + "x1": 673.9199829101562, + "y1": 291.6000061035156, + "width": 32.39996337890625, + "height": 23.760040283203125 + }, { + "x0": 606.9600219726562, + "y0": 452.8800048828125, + "x1": 640.7999877929688, + "y1": 473.760009765625, + "width": 33.8399658203125, + "height": 20.8800048828125 + }, { + "x0": 606.9600219726562, + "y0": 427.67999267578125, + "x1": 640.7999877929688, + "y1": 451.79998779296875, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 403.20001220703125, + "x1": 640.7999877929688, + "y1": 426.96002197265625, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 378.7200012207031, + "x1": 640.7999877929688, + "y1": 402.47998046875, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 354.239990234375, + "x1": 640.7999877929688, + "y1": 378.0, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 329.760009765625, + "x1": 640.7999877929688, + "y1": 353.5199890136719, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 305.2799987792969, + "x1": 640.7999877929688, + "y1": 329.0400085449219, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 267.8399658203125, + "x1": 640.7999877929688, + "y1": 291.6000061035156, + "width": 33.8399658203125, + "height": 23.760040283203125 + }, { + "x0": 568.0800170898438, + "y0": 452.8800048828125, + "x1": 606.239990234375, + "y1": 473.760009765625, + "width": 38.15997314453125, + "height": 20.8800048828125 + }, { + "x0": 568.0800170898438, + "y0": 427.67999267578125, + "x1": 606.239990234375, + "y1": 451.79998779296875, + "width": 38.15997314453125, + "height": 24.1199951171875 + }, { + "x0": 568.0800170898438, + "y0": 403.20001220703125, + "x1": 606.239990234375, + "y1": 426.96002197265625, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 378.7200012207031, + "x1": 606.239990234375, + "y1": 402.47998046875, + "width": 38.15997314453125, + "height": 23.759979248046875 + }, { + "x0": 568.0800170898438, + "y0": 354.239990234375, + "x1": 606.239990234375, + "y1": 378.0, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 329.760009765625, + "x1": 606.239990234375, + "y1": 353.5199890136719, + "width": 38.15997314453125, + "height": 23.759979248046875 + }, { + "x0": 568.0800170898438, + "y0": 305.2799987792969, + "x1": 606.239990234375, + "y1": 329.0400085449219, + "width": 38.15997314453125, + "height": 23.760009765625 + }, { + "x0": 568.0800170898438, + "y0": 267.8399658203125, + "x1": 606.239990234375, + "y1": 291.6000061035156, + "width": 38.15997314453125, + "height": 23.760040283203125 + }, { + "x0": 529.9200439453125, + "y0": 452.8800048828125, + "x1": 567.3599853515625, + "y1": 473.760009765625, + "width": 37.43994140625, + "height": 20.8800048828125 + }, { + "x0": 529.9200439453125, + "y0": 427.67999267578125, + "x1": 567.3599853515625, + "y1": 451.79998779296875, + "width": 37.43994140625, + "height": 24.1199951171875 + }, { + "x0": 529.9200439453125, + "y0": 403.20001220703125, + "x1": 567.3599853515625, + "y1": 426.96002197265625, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 378.7200012207031, + "x1": 567.3599853515625, + "y1": 402.47998046875, + "width": 37.43994140625, + "height": 23.759979248046875 + }, { + "x0": 529.9200439453125, + "y0": 354.239990234375, + "x1": 567.3599853515625, + "y1": 378.0, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 329.760009765625, + "x1": 567.3599853515625, + "y1": 353.5199890136719, + "width": 37.43994140625, + "height": 23.759979248046875 + }, { + "x0": 529.9200439453125, + "y0": 305.2799987792969, + "x1": 567.3599853515625, + "y1": 329.0400085449219, + "width": 37.43994140625, + "height": 23.760009765625 + }, { + "x0": 529.9200439453125, + "y0": 267.8399658203125, + "x1": 567.3599853515625, + "y1": 291.6000061035156, + "width": 37.43994140625, + "height": 23.760040283203125 + }, { + "x0": 490.67999267578125, + "y0": 452.8800048828125, + "x1": 529.2000122070312, + "y1": 473.760009765625, + "width": 38.52001953125, + "height": 20.8800048828125 + }, { + "x0": 490.67999267578125, + "y0": 427.67999267578125, + "x1": 529.2000122070312, + "y1": 451.79998779296875, + "width": 38.52001953125, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 403.20001220703125, + "x1": 529.2000122070312, + "y1": 426.96002197265625, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 378.7200012207031, + "x1": 529.2000122070312, + "y1": 402.47998046875, + "width": 38.52001953125, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 354.239990234375, + "x1": 529.2000122070312, + "y1": 378.0, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 329.760009765625, + "x1": 529.2000122070312, + "y1": 353.5199890136719, + "width": 38.52001953125, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 305.2799987792969, + "x1": 529.2000122070312, + "y1": 329.0400085449219, + "width": 38.52001953125, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 267.8399658203125, + "x1": 529.2000122070312, + "y1": 291.6000061035156, + "width": 38.52001953125, + "height": 23.760040283203125 + }, { + "x0": 450.0, + "y0": 452.8800048828125, + "x1": 489.9599914550781, + "y1": 473.760009765625, + "width": 39.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 450.0, + "y0": 427.67999267578125, + "x1": 489.9599914550781, + "y1": 451.79998779296875, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 403.20001220703125, + "x1": 489.9599914550781, + "y1": 426.96002197265625, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 378.7200012207031, + "x1": 489.9599914550781, + "y1": 402.47998046875, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 354.239990234375, + "x1": 489.9599914550781, + "y1": 378.0, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 329.760009765625, + "x1": 489.9599914550781, + "y1": 353.5199890136719, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 305.2799987792969, + "x1": 489.9599914550781, + "y1": 329.0400085449219, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 267.8399658203125, + "x1": 489.9599914550781, + "y1": 291.6000061035156, + "width": 39.959991455078125, + "height": 23.760040283203125 + }, { + "x0": 409.67999267578125, + "y0": 452.8800048828125, + "x1": 449.2799987792969, + "y1": 473.760009765625, + "width": 39.600006103515625, + "height": 20.8800048828125 + }, { + "x0": 409.67999267578125, + "y0": 427.67999267578125, + "x1": 449.2799987792969, + "y1": 451.79998779296875, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 403.20001220703125, + "x1": 449.2799987792969, + "y1": 426.96002197265625, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 378.7200012207031, + "x1": 449.2799987792969, + "y1": 402.47998046875, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 354.239990234375, + "x1": 449.2799987792969, + "y1": 378.0, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 329.760009765625, + "x1": 449.2799987792969, + "y1": 353.5199890136719, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 305.2799987792969, + "x1": 449.2799987792969, + "y1": 329.0400085449219, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 267.8399658203125, + "x1": 449.2799987792969, + "y1": 291.6000061035156, + "width": 39.600006103515625, + "height": 23.760040283203125 + }, { + "x0": 378.0, + "y0": 452.8800048828125, + "x1": 408.6000061035156, + "y1": 484.55999755859375, + "width": 30.600006103515625, + "height": 31.67999267578125 + }, { + "x0": 378.0, + "y0": 427.67999267578125, + "x1": 408.6000061035156, + "y1": 451.79998779296875, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 403.20001220703125, + "x1": 408.6000061035156, + "y1": 426.96002197265625, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 378.7200012207031, + "x1": 408.6000061035156, + "y1": 402.47998046875, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 354.239990234375, + "x1": 408.6000061035156, + "y1": 378.0, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 329.760009765625, + "x1": 408.6000061035156, + "y1": 353.5199890136719, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 305.2799987792969, + "x1": 408.6000061035156, + "y1": 329.0400085449219, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 267.8399658203125, + "x1": 408.6000061035156, + "y1": 291.6000061035156, + "width": 30.600006103515625, + "height": 23.760040283203125 + }, { + "x0": 328.67999267578125, + "y0": 452.8800048828125, + "x1": 377.2799987792969, + "y1": 484.55999755859375, + "width": 48.600006103515625, + "height": 31.67999267578125 + }, { + "x0": 328.67999267578125, + "y0": 427.67999267578125, + "x1": 377.2799987792969, + "y1": 451.79998779296875, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 403.20001220703125, + "x1": 377.2799987792969, + "y1": 426.96002197265625, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 378.7200012207031, + "x1": 377.2799987792969, + "y1": 402.47998046875, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 354.239990234375, + "x1": 377.2799987792969, + "y1": 378.0, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 329.760009765625, + "x1": 377.2799987792969, + "y1": 353.5199890136719, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 305.2799987792969, + "x1": 377.2799987792969, + "y1": 329.0400085449219, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 267.8399658203125, + "x1": 377.2799987792969, + "y1": 291.6000061035156, + "width": 48.600006103515625, + "height": 23.760040283203125 + }, { + "x0": 279.0, + "y0": 452.8800048828125, + "x1": 327.9599914550781, + "y1": 484.55999755859375, + "width": 48.959991455078125, + "height": 31.67999267578125 + }, { + "x0": 279.0, + "y0": 427.67999267578125, + "x1": 327.9599914550781, + "y1": 451.79998779296875, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 403.20001220703125, + "x1": 327.9599914550781, + "y1": 426.96002197265625, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 378.7200012207031, + "x1": 327.9599914550781, + "y1": 402.47998046875, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 354.239990234375, + "x1": 327.9599914550781, + "y1": 378.0, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 329.760009765625, + "x1": 327.9599914550781, + "y1": 353.5199890136719, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 305.2799987792969, + "x1": 327.9599914550781, + "y1": 329.0400085449219, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 267.8399658203125, + "x1": 327.9599914550781, + "y1": 291.6000061035156, + "width": 48.959991455078125, + "height": 23.760040283203125 + }, { + "x0": 256.67999267578125, + "y0": 452.8800048828125, + "x1": 278.280029296875, + "y1": 484.55999755859375, + "width": 21.60003662109375, + "height": 31.67999267578125 + }, { + "x0": 256.67999267578125, + "y0": 427.67999267578125, + "x1": 278.280029296875, + "y1": 451.79998779296875, + "width": 21.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 256.67999267578125, + "y0": 403.20001220703125, + "x1": 278.280029296875, + "y1": 426.96002197265625, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 378.7200012207031, + "x1": 278.280029296875, + "y1": 402.47998046875, + "width": 21.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 256.67999267578125, + "y0": 354.239990234375, + "x1": 278.280029296875, + "y1": 378.0, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 329.760009765625, + "x1": 278.280029296875, + "y1": 353.5199890136719, + "width": 21.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 256.67999267578125, + "y0": 305.2799987792969, + "x1": 278.280029296875, + "y1": 329.0400085449219, + "width": 21.60003662109375, + "height": 23.760009765625 + }, { + "x0": 256.67999267578125, + "y0": 267.8399658203125, + "x1": 278.280029296875, + "y1": 291.6000061035156, + "width": 21.60003662109375, + "height": 23.760040283203125 + }, { + "x0": 207.0, + "y0": 452.8800048828125, + "x1": 255.96002197265625, + "y1": 484.55999755859375, + "width": 48.96002197265625, + "height": 31.67999267578125 + }, { + "x0": 207.0, + "y0": 427.67999267578125, + "x1": 255.96002197265625, + "y1": 451.79998779296875, + "width": 48.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 207.0, + "y0": 403.20001220703125, + "x1": 255.96002197265625, + "y1": 426.96002197265625, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 378.7200012207031, + "x1": 255.96002197265625, + "y1": 402.47998046875, + "width": 48.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 207.0, + "y0": 354.239990234375, + "x1": 255.96002197265625, + "y1": 378.0, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 329.760009765625, + "x1": 255.96002197265625, + "y1": 353.5199890136719, + "width": 48.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 207.0, + "y0": 305.2799987792969, + "x1": 255.96002197265625, + "y1": 329.0400085449219, + "width": 48.96002197265625, + "height": 23.760009765625 + }, { + "x0": 207.0, + "y0": 267.8399658203125, + "x1": 255.96002197265625, + "y1": 291.6000061035156, + "width": 48.96002197265625, + "height": 23.760040283203125 + }, { + "x0": 74.8800048828125, + "y0": 452.8800048828125, + "x1": 206.280029296875, + "y1": 484.55999755859375, + "width": 131.4000244140625, + "height": 31.67999267578125 + }, { + "x0": 74.8800048828125, + "y0": 427.67999267578125, + "x1": 206.280029296875, + "y1": 451.79998779296875, + "width": 131.4000244140625, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 403.20001220703125, + "x1": 206.280029296875, + "y1": 426.96002197265625, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 378.7200012207031, + "x1": 206.280029296875, + "y1": 402.47998046875, + "width": 131.4000244140625, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 354.239990234375, + "x1": 206.280029296875, + "y1": 378.0, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 329.760009765625, + "x1": 206.280029296875, + "y1": 353.5199890136719, + "width": 131.4000244140625, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 305.2799987792969, + "x1": 206.280029296875, + "y1": 329.0400085449219, + "width": 131.4000244140625, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 267.8399658203125, + "x1": 206.280029296875, + "y1": 291.6000061035156, + "width": 131.4000244140625, + "height": 23.760040283203125 + } + ] + }, { + "pageInfo": { + "number": 124, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 674.6400146484375, + "y0": 446.760009765625, + "x1": 715.3200073242188, + "y1": 468.0, + "width": 40.67999267578125, + "height": 21.239990234375 + }, { + "x0": 674.6400146484375, + "y0": 421.91998291015625, + "x1": 715.3200073242188, + "y1": 445.67999267578125, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 397.44000244140625, + "x1": 715.3200073242188, + "y1": 421.20001220703125, + "width": 40.67999267578125, + "height": 23.760009765625 + }, { + "x0": 674.6400146484375, + "y0": 372.96002197265625, + "x1": 715.3200073242188, + "y1": 396.7200012207031, + "width": 40.67999267578125, + "height": 23.759979248046875 + }, { + "x0": 674.6400146484375, + "y0": 348.1199951171875, + "x1": 715.3200073242188, + "y1": 372.239990234375, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 323.6400146484375, + "x1": 715.3200073242188, + "y1": 347.760009765625, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 674.6400146484375, + "y0": 299.1600036621094, + "x1": 715.3200073242188, + "y1": 323.2799987792969, + "width": 40.67999267578125, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 446.760009765625, + "x1": 673.9199829101562, + "y1": 468.0, + "width": 32.39996337890625, + "height": 21.239990234375 + }, { + "x0": 641.52001953125, + "y0": 421.91998291015625, + "x1": 673.9199829101562, + "y1": 445.67999267578125, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 397.44000244140625, + "x1": 673.9199829101562, + "y1": 421.20001220703125, + "width": 32.39996337890625, + "height": 23.760009765625 + }, { + "x0": 641.52001953125, + "y0": 372.96002197265625, + "x1": 673.9199829101562, + "y1": 396.7200012207031, + "width": 32.39996337890625, + "height": 23.759979248046875 + }, { + "x0": 641.52001953125, + "y0": 348.1199951171875, + "x1": 673.9199829101562, + "y1": 372.239990234375, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 323.6400146484375, + "x1": 673.9199829101562, + "y1": 347.760009765625, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 641.52001953125, + "y0": 299.1600036621094, + "x1": 673.9199829101562, + "y1": 323.2799987792969, + "width": 32.39996337890625, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 446.760009765625, + "x1": 640.7999877929688, + "y1": 468.0, + "width": 33.8399658203125, + "height": 21.239990234375 + }, { + "x0": 606.9600219726562, + "y0": 421.91998291015625, + "x1": 640.7999877929688, + "y1": 445.67999267578125, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 397.44000244140625, + "x1": 640.7999877929688, + "y1": 421.20001220703125, + "width": 33.8399658203125, + "height": 23.760009765625 + }, { + "x0": 606.9600219726562, + "y0": 372.96002197265625, + "x1": 640.7999877929688, + "y1": 396.7200012207031, + "width": 33.8399658203125, + "height": 23.759979248046875 + }, { + "x0": 606.9600219726562, + "y0": 348.1199951171875, + "x1": 640.7999877929688, + "y1": 372.239990234375, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 323.6400146484375, + "x1": 640.7999877929688, + "y1": 347.760009765625, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 606.9600219726562, + "y0": 299.1600036621094, + "x1": 640.7999877929688, + "y1": 323.2799987792969, + "width": 33.8399658203125, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 446.760009765625, + "x1": 606.239990234375, + "y1": 468.0, + "width": 34.55999755859375, + "height": 21.239990234375 + }, { + "x0": 571.6799926757812, + "y0": 421.91998291015625, + "x1": 606.239990234375, + "y1": 445.67999267578125, + "width": 34.55999755859375, + "height": 23.760009765625 + }, { + "x0": 571.6799926757812, + "y0": 397.44000244140625, + "x1": 606.239990234375, + "y1": 421.20001220703125, + "width": 34.55999755859375, + "height": 23.760009765625 + }, { + "x0": 571.6799926757812, + "y0": 372.96002197265625, + "x1": 606.239990234375, + "y1": 396.7200012207031, + "width": 34.55999755859375, + "height": 23.759979248046875 + }, { + "x0": 571.6799926757812, + "y0": 348.1199951171875, + "x1": 606.239990234375, + "y1": 372.239990234375, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 323.6400146484375, + "x1": 606.239990234375, + "y1": 347.760009765625, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 571.6799926757812, + "y0": 299.1600036621094, + "x1": 606.239990234375, + "y1": 323.2799987792969, + "width": 34.55999755859375, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 446.760009765625, + "x1": 570.9600219726562, + "y1": 468.0, + "width": 39.96002197265625, + "height": 21.239990234375 + }, { + "x0": 531.0, + "y0": 421.91998291015625, + "x1": 570.9600219726562, + "y1": 445.67999267578125, + "width": 39.96002197265625, + "height": 23.760009765625 + }, { + "x0": 531.0, + "y0": 397.44000244140625, + "x1": 570.9600219726562, + "y1": 421.20001220703125, + "width": 39.96002197265625, + "height": 23.760009765625 + }, { + "x0": 531.0, + "y0": 372.96002197265625, + "x1": 570.9600219726562, + "y1": 396.7200012207031, + "width": 39.96002197265625, + "height": 23.759979248046875 + }, { + "x0": 531.0, + "y0": 348.1199951171875, + "x1": 570.9600219726562, + "y1": 372.239990234375, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 323.6400146484375, + "x1": 570.9600219726562, + "y1": 347.760009765625, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 531.0, + "y0": 299.1600036621094, + "x1": 570.9600219726562, + "y1": 323.2799987792969, + "width": 39.96002197265625, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 446.760009765625, + "x1": 530.280029296875, + "y1": 468.0, + "width": 39.60003662109375, + "height": 21.239990234375 + }, { + "x0": 490.67999267578125, + "y0": 421.91998291015625, + "x1": 530.280029296875, + "y1": 445.67999267578125, + "width": 39.60003662109375, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 397.44000244140625, + "x1": 530.280029296875, + "y1": 421.20001220703125, + "width": 39.60003662109375, + "height": 23.760009765625 + }, { + "x0": 490.67999267578125, + "y0": 372.96002197265625, + "x1": 530.280029296875, + "y1": 396.7200012207031, + "width": 39.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 490.67999267578125, + "y0": 348.1199951171875, + "x1": 530.280029296875, + "y1": 372.239990234375, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 323.6400146484375, + "x1": 530.280029296875, + "y1": 347.760009765625, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 490.67999267578125, + "y0": 299.1600036621094, + "x1": 530.280029296875, + "y1": 323.2799987792969, + "width": 39.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 446.760009765625, + "x1": 489.9599914550781, + "y1": 468.0, + "width": 39.959991455078125, + "height": 21.239990234375 + }, { + "x0": 450.0, + "y0": 421.91998291015625, + "x1": 489.9599914550781, + "y1": 445.67999267578125, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 397.44000244140625, + "x1": 489.9599914550781, + "y1": 421.20001220703125, + "width": 39.959991455078125, + "height": 23.760009765625 + }, { + "x0": 450.0, + "y0": 372.96002197265625, + "x1": 489.9599914550781, + "y1": 396.7200012207031, + "width": 39.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 450.0, + "y0": 348.1199951171875, + "x1": 489.9599914550781, + "y1": 372.239990234375, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 323.6400146484375, + "x1": 489.9599914550781, + "y1": 347.760009765625, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 450.0, + "y0": 299.1600036621094, + "x1": 489.9599914550781, + "y1": 323.2799987792969, + "width": 39.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 446.760009765625, + "x1": 449.2799987792969, + "y1": 468.0, + "width": 39.600006103515625, + "height": 21.239990234375 + }, { + "x0": 409.67999267578125, + "y0": 421.91998291015625, + "x1": 449.2799987792969, + "y1": 445.67999267578125, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 397.44000244140625, + "x1": 449.2799987792969, + "y1": 421.20001220703125, + "width": 39.600006103515625, + "height": 23.760009765625 + }, { + "x0": 409.67999267578125, + "y0": 372.96002197265625, + "x1": 449.2799987792969, + "y1": 396.7200012207031, + "width": 39.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 409.67999267578125, + "y0": 348.1199951171875, + "x1": 449.2799987792969, + "y1": 372.239990234375, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 323.6400146484375, + "x1": 449.2799987792969, + "y1": 347.760009765625, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 409.67999267578125, + "y0": 299.1600036621094, + "x1": 449.2799987792969, + "y1": 323.2799987792969, + "width": 39.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 446.760009765625, + "x1": 408.6000061035156, + "y1": 478.79998779296875, + "width": 30.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 378.0, + "y0": 421.91998291015625, + "x1": 408.6000061035156, + "y1": 445.67999267578125, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 397.44000244140625, + "x1": 408.6000061035156, + "y1": 421.20001220703125, + "width": 30.600006103515625, + "height": 23.760009765625 + }, { + "x0": 378.0, + "y0": 372.96002197265625, + "x1": 408.6000061035156, + "y1": 396.7200012207031, + "width": 30.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 378.0, + "y0": 348.1199951171875, + "x1": 408.6000061035156, + "y1": 372.239990234375, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 323.6400146484375, + "x1": 408.6000061035156, + "y1": 347.760009765625, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 378.0, + "y0": 299.1600036621094, + "x1": 408.6000061035156, + "y1": 323.2799987792969, + "width": 30.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 446.760009765625, + "x1": 377.2799987792969, + "y1": 478.79998779296875, + "width": 48.600006103515625, + "height": 32.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 421.91998291015625, + "x1": 377.2799987792969, + "y1": 445.67999267578125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 397.44000244140625, + "x1": 377.2799987792969, + "y1": 421.20001220703125, + "width": 48.600006103515625, + "height": 23.760009765625 + }, { + "x0": 328.67999267578125, + "y0": 372.96002197265625, + "x1": 377.2799987792969, + "y1": 396.7200012207031, + "width": 48.600006103515625, + "height": 23.759979248046875 + }, { + "x0": 328.67999267578125, + "y0": 348.1199951171875, + "x1": 377.2799987792969, + "y1": 372.239990234375, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 323.6400146484375, + "x1": 377.2799987792969, + "y1": 347.760009765625, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 328.67999267578125, + "y0": 299.1600036621094, + "x1": 377.2799987792969, + "y1": 323.2799987792969, + "width": 48.600006103515625, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 446.760009765625, + "x1": 327.9599914550781, + "y1": 478.79998779296875, + "width": 48.959991455078125, + "height": 32.03997802734375 + }, { + "x0": 279.0, + "y0": 421.91998291015625, + "x1": 327.9599914550781, + "y1": 445.67999267578125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 397.44000244140625, + "x1": 327.9599914550781, + "y1": 421.20001220703125, + "width": 48.959991455078125, + "height": 23.760009765625 + }, { + "x0": 279.0, + "y0": 372.96002197265625, + "x1": 327.9599914550781, + "y1": 396.7200012207031, + "width": 48.959991455078125, + "height": 23.759979248046875 + }, { + "x0": 279.0, + "y0": 348.1199951171875, + "x1": 327.9599914550781, + "y1": 372.239990234375, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 323.6400146484375, + "x1": 327.9599914550781, + "y1": 347.760009765625, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 279.0, + "y0": 299.1600036621094, + "x1": 327.9599914550781, + "y1": 323.2799987792969, + "width": 48.959991455078125, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 446.760009765625, + "x1": 278.280029296875, + "y1": 478.79998779296875, + "width": 26.280029296875, + "height": 32.03997802734375 + }, { + "x0": 252.0, + "y0": 421.91998291015625, + "x1": 278.280029296875, + "y1": 445.67999267578125, + "width": 26.280029296875, + "height": 23.760009765625 + }, { + "x0": 252.0, + "y0": 397.44000244140625, + "x1": 278.280029296875, + "y1": 421.20001220703125, + "width": 26.280029296875, + "height": 23.760009765625 + }, { + "x0": 252.0, + "y0": 372.96002197265625, + "x1": 278.280029296875, + "y1": 396.7200012207031, + "width": 26.280029296875, + "height": 23.759979248046875 + }, { + "x0": 252.0, + "y0": 348.1199951171875, + "x1": 278.280029296875, + "y1": 372.239990234375, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 323.6400146484375, + "x1": 278.280029296875, + "y1": 347.760009765625, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 252.0, + "y0": 299.1600036621094, + "x1": 278.280029296875, + "y1": 323.2799987792969, + "width": 26.280029296875, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 446.760009765625, + "x1": 251.280029296875, + "y1": 478.79998779296875, + "width": 48.60003662109375, + "height": 32.03997802734375 + }, { + "x0": 202.67999267578125, + "y0": 421.91998291015625, + "x1": 251.280029296875, + "y1": 445.67999267578125, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 202.67999267578125, + "y0": 397.44000244140625, + "x1": 251.280029296875, + "y1": 421.20001220703125, + "width": 48.60003662109375, + "height": 23.760009765625 + }, { + "x0": 202.67999267578125, + "y0": 372.96002197265625, + "x1": 251.280029296875, + "y1": 396.7200012207031, + "width": 48.60003662109375, + "height": 23.759979248046875 + }, { + "x0": 202.67999267578125, + "y0": 348.1199951171875, + "x1": 251.280029296875, + "y1": 372.239990234375, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 323.6400146484375, + "x1": 251.280029296875, + "y1": 347.760009765625, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 202.67999267578125, + "y0": 299.1600036621094, + "x1": 251.280029296875, + "y1": 323.2799987792969, + "width": 48.60003662109375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 446.760009765625, + "x1": 201.96002197265625, + "y1": 478.79998779296875, + "width": 127.08001708984375, + "height": 32.03997802734375 + }, { + "x0": 74.8800048828125, + "y0": 421.91998291015625, + "x1": 201.96002197265625, + "y1": 445.67999267578125, + "width": 127.08001708984375, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 397.44000244140625, + "x1": 201.96002197265625, + "y1": 421.20001220703125, + "width": 127.08001708984375, + "height": 23.760009765625 + }, { + "x0": 74.8800048828125, + "y0": 372.96002197265625, + "x1": 201.96002197265625, + "y1": 396.7200012207031, + "width": 127.08001708984375, + "height": 23.759979248046875 + }, { + "x0": 74.8800048828125, + "y0": 348.1199951171875, + "x1": 201.96002197265625, + "y1": 372.239990234375, + "width": 127.08001708984375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 323.6400146484375, + "x1": 201.96002197265625, + "y1": 347.760009765625, + "width": 127.08001708984375, + "height": 24.1199951171875 + }, { + "x0": 74.8800048828125, + "y0": 299.1600036621094, + "x1": 201.96002197265625, + "y1": 323.2799987792969, + "width": 127.08001708984375, + "height": 24.1199951171875 + } + ] + }, { + "pageInfo": { + "number": 125, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 616.6799926757812, + "y0": 430.91998291015625, + "x1": 666.0, + "y1": 446.3999938964844, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 414.0, + "x1": 666.0, + "y1": 429.8399963378906, + "width": 49.32000732421875, + "height": 15.839996337890625 + }, { + "x0": 616.6799926757812, + "y0": 397.44000244140625, + "x1": 666.0, + "y1": 412.91998291015625, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 380.52001953125, + "x1": 666.0, + "y1": 396.3599853515625, + "width": 49.32000732421875, + "height": 15.8399658203125 + }, { + "x0": 616.6799926757812, + "y0": 363.96002197265625, + "x1": 666.0, + "y1": 379.44000244140625, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 347.0400085449219, + "x1": 666.0, + "y1": 362.52001953125, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 330.8399963378906, + "x1": 666.0, + "y1": 345.6000061035156, + "width": 49.32000732421875, + "height": 14.760009765625 + }, { + "x0": 616.6799926757812, + "y0": 313.55999755859375, + "x1": 666.0, + "y1": 329.0400085449219, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 297.0, + "x1": 666.0, + "y1": 312.4800109863281, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 280.0799865722656, + "x1": 666.0, + "y1": 295.55999755859375, + "width": 49.32000732421875, + "height": 15.480010986328125 + }, { + "x0": 616.6799926757812, + "y0": 263.1600341796875, + "x1": 666.0, + "y1": 279.0, + "width": 49.32000732421875, + "height": 15.8399658203125 + }, { + "x0": 616.6799926757812, + "y0": 246.5999755859375, + "x1": 666.0, + "y1": 262.0799560546875, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 229.67999267578125, + "x1": 666.0, + "y1": 245.52001953125, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 213.47998046875, + "x1": 666.0, + "y1": 228.239990234375, + "width": 49.32000732421875, + "height": 14.760009765625 + }, { + "x0": 616.6799926757812, + "y0": 196.20001220703125, + "x1": 666.0, + "y1": 212.0400390625, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 179.6400146484375, + "x1": 666.0, + "y1": 195.1199951171875, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 162.719970703125, + "x1": 666.0, + "y1": 178.55999755859375, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 616.6799926757812, + "y0": 146.1600341796875, + "x1": 666.0, + "y1": 161.6400146484375, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 129.239990234375, + "x1": 666.0, + "y1": 144.719970703125, + "width": 49.32000732421875, + "height": 15.47998046875 + }, { + "x0": 616.6799926757812, + "y0": 112.32000732421875, + "x1": 666.0, + "y1": 128.1600341796875, + "width": 49.32000732421875, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 430.91998291015625, + "x1": 615.5999755859375, + "y1": 446.3999938964844, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 414.0, + "x1": 615.5999755859375, + "y1": 429.8399963378906, + "width": 52.91998291015625, + "height": 15.839996337890625 + }, { + "x0": 562.6799926757812, + "y0": 397.44000244140625, + "x1": 615.5999755859375, + "y1": 412.91998291015625, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 380.52001953125, + "x1": 615.5999755859375, + "y1": 396.3599853515625, + "width": 52.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 363.96002197265625, + "x1": 615.5999755859375, + "y1": 379.44000244140625, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 347.0400085449219, + "x1": 615.5999755859375, + "y1": 362.52001953125, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 330.8399963378906, + "x1": 615.5999755859375, + "y1": 345.6000061035156, + "width": 52.91998291015625, + "height": 14.760009765625 + }, { + "x0": 562.6799926757812, + "y0": 313.55999755859375, + "x1": 615.5999755859375, + "y1": 329.0400085449219, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 297.0, + "x1": 615.5999755859375, + "y1": 312.4800109863281, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 280.0799865722656, + "x1": 615.5999755859375, + "y1": 295.55999755859375, + "width": 52.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 562.6799926757812, + "y0": 263.1600341796875, + "x1": 615.5999755859375, + "y1": 279.0, + "width": 52.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 562.6799926757812, + "y0": 246.5999755859375, + "x1": 615.5999755859375, + "y1": 262.0799560546875, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 229.67999267578125, + "x1": 615.5999755859375, + "y1": 245.52001953125, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 213.47998046875, + "x1": 615.5999755859375, + "y1": 228.239990234375, + "width": 52.91998291015625, + "height": 14.760009765625 + }, { + "x0": 562.6799926757812, + "y0": 196.20001220703125, + "x1": 615.5999755859375, + "y1": 212.0400390625, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 179.6400146484375, + "x1": 615.5999755859375, + "y1": 195.1199951171875, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 162.719970703125, + "x1": 615.5999755859375, + "y1": 178.55999755859375, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 562.6799926757812, + "y0": 146.1600341796875, + "x1": 615.5999755859375, + "y1": 161.6400146484375, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 129.239990234375, + "x1": 615.5999755859375, + "y1": 144.719970703125, + "width": 52.91998291015625, + "height": 15.47998046875 + }, { + "x0": 562.6799926757812, + "y0": 112.32000732421875, + "x1": 615.5999755859375, + "y1": 128.1600341796875, + "width": 52.91998291015625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 430.91998291015625, + "x1": 561.5999755859375, + "y1": 446.3999938964844, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 414.0, + "x1": 561.5999755859375, + "y1": 429.8399963378906, + "width": 59.39996337890625, + "height": 15.839996337890625 + }, { + "x0": 502.20001220703125, + "y0": 397.44000244140625, + "x1": 561.5999755859375, + "y1": 412.91998291015625, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 380.52001953125, + "x1": 561.5999755859375, + "y1": 396.3599853515625, + "width": 59.39996337890625, + "height": 15.8399658203125 + }, { + "x0": 502.20001220703125, + "y0": 363.96002197265625, + "x1": 561.5999755859375, + "y1": 379.44000244140625, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 347.0400085449219, + "x1": 561.5999755859375, + "y1": 362.52001953125, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 330.8399963378906, + "x1": 561.5999755859375, + "y1": 345.6000061035156, + "width": 59.39996337890625, + "height": 14.760009765625 + }, { + "x0": 502.20001220703125, + "y0": 313.55999755859375, + "x1": 561.5999755859375, + "y1": 329.0400085449219, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 297.0, + "x1": 561.5999755859375, + "y1": 312.4800109863281, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 280.0799865722656, + "x1": 561.5999755859375, + "y1": 295.55999755859375, + "width": 59.39996337890625, + "height": 15.480010986328125 + }, { + "x0": 502.20001220703125, + "y0": 263.1600341796875, + "x1": 561.5999755859375, + "y1": 279.0, + "width": 59.39996337890625, + "height": 15.8399658203125 + }, { + "x0": 502.20001220703125, + "y0": 246.5999755859375, + "x1": 561.5999755859375, + "y1": 262.0799560546875, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 229.67999267578125, + "x1": 561.5999755859375, + "y1": 245.52001953125, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 213.47998046875, + "x1": 561.5999755859375, + "y1": 228.239990234375, + "width": 59.39996337890625, + "height": 14.760009765625 + }, { + "x0": 502.20001220703125, + "y0": 196.20001220703125, + "x1": 561.5999755859375, + "y1": 212.0400390625, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 179.6400146484375, + "x1": 561.5999755859375, + "y1": 195.1199951171875, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 162.719970703125, + "x1": 561.5999755859375, + "y1": 178.55999755859375, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 502.20001220703125, + "y0": 146.1600341796875, + "x1": 561.5999755859375, + "y1": 161.6400146484375, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 129.239990234375, + "x1": 561.5999755859375, + "y1": 144.719970703125, + "width": 59.39996337890625, + "height": 15.47998046875 + }, { + "x0": 502.20001220703125, + "y0": 112.32000732421875, + "x1": 561.5999755859375, + "y1": 128.1600341796875, + "width": 59.39996337890625, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 430.91998291015625, + "x1": 501.1199951171875, + "y1": 446.3999938964844, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 414.0, + "x1": 501.1199951171875, + "y1": 429.8399963378906, + "width": 98.63998413085938, + "height": 15.839996337890625 + }, { + "x0": 402.4800109863281, + "y0": 397.44000244140625, + "x1": 501.1199951171875, + "y1": 412.91998291015625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 380.52001953125, + "x1": 501.1199951171875, + "y1": 396.3599853515625, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 402.4800109863281, + "y0": 363.96002197265625, + "x1": 501.1199951171875, + "y1": 379.44000244140625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 347.0400085449219, + "x1": 501.1199951171875, + "y1": 362.52001953125, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 330.8399963378906, + "x1": 501.1199951171875, + "y1": 345.6000061035156, + "width": 98.63998413085938, + "height": 14.760009765625 + }, { + "x0": 402.4800109863281, + "y0": 313.55999755859375, + "x1": 501.1199951171875, + "y1": 329.0400085449219, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 297.0, + "x1": 501.1199951171875, + "y1": 312.4800109863281, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 280.0799865722656, + "x1": 501.1199951171875, + "y1": 295.55999755859375, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 402.4800109863281, + "y0": 263.1600341796875, + "x1": 501.1199951171875, + "y1": 279.0, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 402.4800109863281, + "y0": 246.5999755859375, + "x1": 501.1199951171875, + "y1": 262.0799560546875, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 229.67999267578125, + "x1": 501.1199951171875, + "y1": 245.52001953125, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 213.47998046875, + "x1": 501.1199951171875, + "y1": 228.239990234375, + "width": 98.63998413085938, + "height": 14.760009765625 + }, { + "x0": 402.4800109863281, + "y0": 196.20001220703125, + "x1": 501.1199951171875, + "y1": 212.0400390625, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 179.6400146484375, + "x1": 501.1199951171875, + "y1": 195.1199951171875, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 162.719970703125, + "x1": 501.1199951171875, + "y1": 178.55999755859375, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 402.4800109863281, + "y0": 146.1600341796875, + "x1": 501.1199951171875, + "y1": 161.6400146484375, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 129.239990234375, + "x1": 501.1199951171875, + "y1": 144.719970703125, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 402.4800109863281, + "y0": 112.32000732421875, + "x1": 501.1199951171875, + "y1": 128.1600341796875, + "width": 98.63998413085938, + "height": 15.84002685546875 + }, { + "x0": 384.4800109863281, + "y0": 330.4800109863281, + "x1": 401.3999938964844, + "y1": 345.9599914550781, + "width": 16.91998291015625, + "height": 15.47998046875 + }, { + "x0": 384.4800109863281, + "y0": 213.1199951171875, + "x1": 401.3999938964844, + "y1": 228.5999755859375, + "width": 16.91998291015625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 430.91998291015625, + "x1": 383.3999938964844, + "y1": 446.3999938964844, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 414.0, + "x1": 383.3999938964844, + "y1": 429.8399963378906, + "width": 46.44000244140625, + "height": 15.839996337890625 + }, { + "x0": 336.9599914550781, + "y0": 397.44000244140625, + "x1": 383.3999938964844, + "y1": 412.91998291015625, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 380.52001953125, + "x1": 383.3999938964844, + "y1": 396.3599853515625, + "width": 46.44000244140625, + "height": 15.8399658203125 + }, { + "x0": 336.9599914550781, + "y0": 363.96002197265625, + "x1": 383.3999938964844, + "y1": 379.44000244140625, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 347.0400085449219, + "x1": 383.3999938964844, + "y1": 362.52001953125, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 330.8399963378906, + "x1": 383.3999938964844, + "y1": 345.6000061035156, + "width": 46.44000244140625, + "height": 14.760009765625 + }, { + "x0": 336.9599914550781, + "y0": 313.55999755859375, + "x1": 383.3999938964844, + "y1": 329.0400085449219, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 297.0, + "x1": 383.3999938964844, + "y1": 312.4800109863281, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 280.0799865722656, + "x1": 383.3999938964844, + "y1": 295.55999755859375, + "width": 46.44000244140625, + "height": 15.480010986328125 + }, { + "x0": 336.9599914550781, + "y0": 263.1600341796875, + "x1": 383.3999938964844, + "y1": 279.0, + "width": 46.44000244140625, + "height": 15.8399658203125 + }, { + "x0": 336.9599914550781, + "y0": 246.5999755859375, + "x1": 383.3999938964844, + "y1": 262.0799560546875, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 229.67999267578125, + "x1": 383.3999938964844, + "y1": 245.52001953125, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 213.47998046875, + "x1": 383.3999938964844, + "y1": 228.239990234375, + "width": 46.44000244140625, + "height": 14.760009765625 + }, { + "x0": 336.9599914550781, + "y0": 196.20001220703125, + "x1": 383.3999938964844, + "y1": 212.0400390625, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 179.6400146484375, + "x1": 383.3999938964844, + "y1": 195.1199951171875, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 162.719970703125, + "x1": 383.3999938964844, + "y1": 178.55999755859375, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 336.9599914550781, + "y0": 146.1600341796875, + "x1": 383.3999938964844, + "y1": 161.6400146484375, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 129.239990234375, + "x1": 383.3999938964844, + "y1": 144.719970703125, + "width": 46.44000244140625, + "height": 15.47998046875 + }, { + "x0": 336.9599914550781, + "y0": 112.32000732421875, + "x1": 383.3999938964844, + "y1": 128.1600341796875, + "width": 46.44000244140625, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 430.91998291015625, + "x1": 335.8800048828125, + "y1": 446.3999938964844, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 414.0, + "x1": 335.8800048828125, + "y1": 429.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 282.6000061035156, + "y0": 397.44000244140625, + "x1": 335.8800048828125, + "y1": 412.91998291015625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 380.52001953125, + "x1": 335.8800048828125, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 282.6000061035156, + "y0": 363.96002197265625, + "x1": 335.8800048828125, + "y1": 379.44000244140625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 347.0400085449219, + "x1": 335.8800048828125, + "y1": 362.52001953125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 330.8399963378906, + "x1": 335.8800048828125, + "y1": 345.6000061035156, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 282.6000061035156, + "y0": 313.55999755859375, + "x1": 335.8800048828125, + "y1": 329.0400085449219, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 297.0, + "x1": 335.8800048828125, + "y1": 312.4800109863281, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 280.0799865722656, + "x1": 335.8800048828125, + "y1": 295.55999755859375, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 282.6000061035156, + "y0": 263.1600341796875, + "x1": 335.8800048828125, + "y1": 279.0, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 282.6000061035156, + "y0": 246.5999755859375, + "x1": 335.8800048828125, + "y1": 262.0799560546875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 229.67999267578125, + "x1": 335.8800048828125, + "y1": 245.52001953125, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 213.47998046875, + "x1": 335.8800048828125, + "y1": 228.239990234375, + "width": 53.279998779296875, + "height": 14.760009765625 + }, { + "x0": 282.6000061035156, + "y0": 196.20001220703125, + "x1": 335.8800048828125, + "y1": 212.0400390625, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 179.6400146484375, + "x1": 335.8800048828125, + "y1": 195.1199951171875, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 162.719970703125, + "x1": 335.8800048828125, + "y1": 178.55999755859375, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 282.6000061035156, + "y0": 146.1600341796875, + "x1": 335.8800048828125, + "y1": 161.6400146484375, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 129.239990234375, + "x1": 335.8800048828125, + "y1": 144.719970703125, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 282.6000061035156, + "y0": 112.32000732421875, + "x1": 335.8800048828125, + "y1": 128.1600341796875, + "width": 53.279998779296875, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 430.91998291015625, + "x1": 281.1600036621094, + "y1": 446.3999938964844, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 414.0, + "x1": 281.1600036621094, + "y1": 429.8399963378906, + "width": 54.720001220703125, + "height": 15.839996337890625 + }, { + "x0": 226.44000244140625, + "y0": 397.44000244140625, + "x1": 281.1600036621094, + "y1": 412.91998291015625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 380.52001953125, + "x1": 281.1600036621094, + "y1": 396.3599853515625, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 226.44000244140625, + "y0": 363.96002197265625, + "x1": 281.1600036621094, + "y1": 379.44000244140625, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 347.0400085449219, + "x1": 281.1600036621094, + "y1": 362.52001953125, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 330.8399963378906, + "x1": 281.1600036621094, + "y1": 345.6000061035156, + "width": 54.720001220703125, + "height": 14.760009765625 + }, { + "x0": 226.44000244140625, + "y0": 313.55999755859375, + "x1": 281.1600036621094, + "y1": 329.0400085449219, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 297.0, + "x1": 281.1600036621094, + "y1": 312.4800109863281, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 280.0799865722656, + "x1": 281.1600036621094, + "y1": 295.55999755859375, + "width": 54.720001220703125, + "height": 15.480010986328125 + }, { + "x0": 226.44000244140625, + "y0": 263.1600341796875, + "x1": 281.1600036621094, + "y1": 279.0, + "width": 54.720001220703125, + "height": 15.8399658203125 + }, { + "x0": 226.44000244140625, + "y0": 246.5999755859375, + "x1": 281.1600036621094, + "y1": 262.0799560546875, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 229.67999267578125, + "x1": 281.1600036621094, + "y1": 245.52001953125, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 213.47998046875, + "x1": 281.1600036621094, + "y1": 228.239990234375, + "width": 54.720001220703125, + "height": 14.760009765625 + }, { + "x0": 226.44000244140625, + "y0": 196.20001220703125, + "x1": 281.1600036621094, + "y1": 212.0400390625, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 179.6400146484375, + "x1": 281.1600036621094, + "y1": 195.1199951171875, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 162.719970703125, + "x1": 281.1600036621094, + "y1": 178.55999755859375, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 226.44000244140625, + "y0": 146.1600341796875, + "x1": 281.1600036621094, + "y1": 161.6400146484375, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 129.239990234375, + "x1": 281.1600036621094, + "y1": 144.719970703125, + "width": 54.720001220703125, + "height": 15.47998046875 + }, { + "x0": 226.44000244140625, + "y0": 112.32000732421875, + "x1": 281.1600036621094, + "y1": 128.1600341796875, + "width": 54.720001220703125, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 430.91998291015625, + "x1": 225.3599853515625, + "y1": 446.3999938964844, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 414.0, + "x1": 225.3599853515625, + "y1": 429.8399963378906, + "width": 100.0799560546875, + "height": 15.839996337890625 + }, { + "x0": 125.280029296875, + "y0": 397.44000244140625, + "x1": 225.3599853515625, + "y1": 412.91998291015625, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 380.52001953125, + "x1": 225.3599853515625, + "y1": 396.3599853515625, + "width": 100.0799560546875, + "height": 15.8399658203125 + }, { + "x0": 125.280029296875, + "y0": 363.96002197265625, + "x1": 225.3599853515625, + "y1": 379.44000244140625, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 347.0400085449219, + "x1": 225.3599853515625, + "y1": 362.52001953125, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 330.8399963378906, + "x1": 225.3599853515625, + "y1": 345.6000061035156, + "width": 100.0799560546875, + "height": 14.760009765625 + }, { + "x0": 125.280029296875, + "y0": 313.55999755859375, + "x1": 225.3599853515625, + "y1": 329.0400085449219, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 297.0, + "x1": 225.3599853515625, + "y1": 312.4800109863281, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 280.0799865722656, + "x1": 225.3599853515625, + "y1": 295.55999755859375, + "width": 100.0799560546875, + "height": 15.480010986328125 + }, { + "x0": 125.280029296875, + "y0": 263.1600341796875, + "x1": 225.3599853515625, + "y1": 279.0, + "width": 100.0799560546875, + "height": 15.8399658203125 + }, { + "x0": 125.280029296875, + "y0": 246.5999755859375, + "x1": 225.3599853515625, + "y1": 262.0799560546875, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 229.67999267578125, + "x1": 225.3599853515625, + "y1": 245.52001953125, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 213.47998046875, + "x1": 225.3599853515625, + "y1": 228.239990234375, + "width": 100.0799560546875, + "height": 14.760009765625 + }, { + "x0": 125.280029296875, + "y0": 196.20001220703125, + "x1": 225.3599853515625, + "y1": 212.0400390625, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 179.6400146484375, + "x1": 225.3599853515625, + "y1": 195.1199951171875, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 162.719970703125, + "x1": 225.3599853515625, + "y1": 178.55999755859375, + "width": 100.0799560546875, + "height": 15.84002685546875 + }, { + "x0": 125.280029296875, + "y0": 146.1600341796875, + "x1": 225.3599853515625, + "y1": 161.6400146484375, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 129.239990234375, + "x1": 225.3599853515625, + "y1": 144.719970703125, + "width": 100.0799560546875, + "height": 15.47998046875 + }, { + "x0": 125.280029296875, + "y0": 112.32000732421875, + "x1": 225.3599853515625, + "y1": 128.1600341796875, + "width": 100.0799560546875, + "height": 15.84002685546875 + } + ] + }, { + "pageInfo": { + "number": 126, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 621.3599853515625, + "y0": 430.91998291015625, + "x1": 669.5999755859375, + "y1": 446.3999938964844, + "width": 48.239990234375, + "height": 15.480010986328125 + }, { + "x0": 621.3599853515625, + "y0": 414.0, + "x1": 669.5999755859375, + "y1": 429.8399963378906, + "width": 48.239990234375, + "height": 15.839996337890625 + }, { + "x0": 621.3599853515625, + "y0": 397.44000244140625, + "x1": 669.5999755859375, + "y1": 412.91998291015625, + "width": 48.239990234375, + "height": 15.47998046875 + }, { + "x0": 621.3599853515625, + "y0": 380.52001953125, + "x1": 669.5999755859375, + "y1": 396.3599853515625, + "width": 48.239990234375, + "height": 15.8399658203125 + }, { + "x0": 621.3599853515625, + "y0": 363.96002197265625, + "x1": 669.5999755859375, + "y1": 379.44000244140625, + "width": 48.239990234375, + "height": 15.47998046875 + }, { + "x0": 621.3599853515625, + "y0": 347.0400085449219, + "x1": 669.5999755859375, + "y1": 362.52001953125, + "width": 48.239990234375, + "height": 15.480010986328125 + }, { + "x0": 567.3599853515625, + "y0": 430.91998291015625, + "x1": 619.9199829101562, + "y1": 446.3999938964844, + "width": 52.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 567.3599853515625, + "y0": 414.0, + "x1": 619.9199829101562, + "y1": 429.8399963378906, + "width": 52.55999755859375, + "height": 15.839996337890625 + }, { + "x0": 567.3599853515625, + "y0": 397.44000244140625, + "x1": 619.9199829101562, + "y1": 412.91998291015625, + "width": 52.55999755859375, + "height": 15.47998046875 + }, { + "x0": 567.3599853515625, + "y0": 380.52001953125, + "x1": 619.9199829101562, + "y1": 396.3599853515625, + "width": 52.55999755859375, + "height": 15.8399658203125 + }, { + "x0": 567.3599853515625, + "y0": 363.96002197265625, + "x1": 619.9199829101562, + "y1": 379.44000244140625, + "width": 52.55999755859375, + "height": 15.47998046875 + }, { + "x0": 567.3599853515625, + "y0": 347.0400085449219, + "x1": 619.9199829101562, + "y1": 362.52001953125, + "width": 52.55999755859375, + "height": 15.480010986328125 + }, { + "x0": 505.79998779296875, + "y0": 430.91998291015625, + "x1": 565.9199829101562, + "y1": 446.3999938964844, + "width": 60.1199951171875, + "height": 15.480010986328125 + }, { + "x0": 505.79998779296875, + "y0": 414.0, + "x1": 565.9199829101562, + "y1": 429.8399963378906, + "width": 60.1199951171875, + "height": 15.839996337890625 + }, { + "x0": 505.79998779296875, + "y0": 397.44000244140625, + "x1": 565.9199829101562, + "y1": 412.91998291015625, + "width": 60.1199951171875, + "height": 15.47998046875 + }, { + "x0": 505.79998779296875, + "y0": 380.52001953125, + "x1": 565.9199829101562, + "y1": 396.3599853515625, + "width": 60.1199951171875, + "height": 15.8399658203125 + }, { + "x0": 505.79998779296875, + "y0": 363.96002197265625, + "x1": 565.9199829101562, + "y1": 379.44000244140625, + "width": 60.1199951171875, + "height": 15.47998046875 + }, { + "x0": 505.79998779296875, + "y0": 347.0400085449219, + "x1": 565.9199829101562, + "y1": 362.52001953125, + "width": 60.1199951171875, + "height": 15.480010986328125 + }, { + "x0": 405.7200012207031, + "y0": 430.91998291015625, + "x1": 504.3599853515625, + "y1": 446.3999938964844, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 405.7200012207031, + "y0": 414.0, + "x1": 504.3599853515625, + "y1": 429.8399963378906, + "width": 98.63998413085938, + "height": 15.839996337890625 + }, { + "x0": 405.7200012207031, + "y0": 397.44000244140625, + "x1": 504.3599853515625, + "y1": 412.91998291015625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 405.7200012207031, + "y0": 380.52001953125, + "x1": 504.3599853515625, + "y1": 396.3599853515625, + "width": 98.63998413085938, + "height": 15.8399658203125 + }, { + "x0": 405.7200012207031, + "y0": 363.96002197265625, + "x1": 504.3599853515625, + "y1": 379.44000244140625, + "width": 98.63998413085938, + "height": 15.47998046875 + }, { + "x0": 405.7200012207031, + "y0": 347.0400085449219, + "x1": 504.3599853515625, + "y1": 362.52001953125, + "width": 98.63998413085938, + "height": 15.480010986328125 + }, { + "x0": 388.0799865722656, + "y0": 414.0, + "x1": 404.6400146484375, + "y1": 429.8399963378906, + "width": 16.560028076171875, + "height": 15.839996337890625 + }, { + "x0": 388.0799865722656, + "y0": 380.52001953125, + "x1": 404.6400146484375, + "y1": 396.3599853515625, + "width": 16.560028076171875, + "height": 15.8399658203125 + }, { + "x0": 340.20001220703125, + "y0": 430.91998291015625, + "x1": 387.0, + "y1": 446.3999938964844, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 340.20001220703125, + "y0": 414.0, + "x1": 387.0, + "y1": 429.8399963378906, + "width": 46.79998779296875, + "height": 15.839996337890625 + }, { + "x0": 340.20001220703125, + "y0": 397.44000244140625, + "x1": 387.0, + "y1": 412.91998291015625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 340.20001220703125, + "y0": 380.52001953125, + "x1": 387.0, + "y1": 396.3599853515625, + "width": 46.79998779296875, + "height": 15.8399658203125 + }, { + "x0": 340.20001220703125, + "y0": 363.96002197265625, + "x1": 387.0, + "y1": 379.44000244140625, + "width": 46.79998779296875, + "height": 15.47998046875 + }, { + "x0": 340.20001220703125, + "y0": 347.0400085449219, + "x1": 387.0, + "y1": 362.52001953125, + "width": 46.79998779296875, + "height": 15.480010986328125 + }, { + "x0": 285.8399963378906, + "y0": 430.91998291015625, + "x1": 339.1199951171875, + "y1": 446.3999938964844, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 285.8399963378906, + "y0": 414.0, + "x1": 339.1199951171875, + "y1": 429.8399963378906, + "width": 53.279998779296875, + "height": 15.839996337890625 + }, { + "x0": 285.8399963378906, + "y0": 397.44000244140625, + "x1": 339.1199951171875, + "y1": 412.91998291015625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 285.8399963378906, + "y0": 380.52001953125, + "x1": 339.1199951171875, + "y1": 396.3599853515625, + "width": 53.279998779296875, + "height": 15.8399658203125 + }, { + "x0": 285.8399963378906, + "y0": 363.96002197265625, + "x1": 339.1199951171875, + "y1": 379.44000244140625, + "width": 53.279998779296875, + "height": 15.47998046875 + }, { + "x0": 285.8399963378906, + "y0": 347.0400085449219, + "x1": 339.1199951171875, + "y1": 362.52001953125, + "width": 53.279998779296875, + "height": 15.480010986328125 + }, { + "x0": 229.67999267578125, + "y0": 430.91998291015625, + "x1": 284.760009765625, + "y1": 446.3999938964844, + "width": 55.08001708984375, + "height": 15.480010986328125 + }, { + "x0": 229.67999267578125, + "y0": 414.0, + "x1": 284.760009765625, + "y1": 429.8399963378906, + "width": 55.08001708984375, + "height": 15.839996337890625 + }, { + "x0": 229.67999267578125, + "y0": 397.44000244140625, + "x1": 284.760009765625, + "y1": 412.91998291015625, + "width": 55.08001708984375, + "height": 15.47998046875 + }, { + "x0": 229.67999267578125, + "y0": 380.52001953125, + "x1": 284.760009765625, + "y1": 396.3599853515625, + "width": 55.08001708984375, + "height": 15.8399658203125 + }, { + "x0": 229.67999267578125, + "y0": 363.96002197265625, + "x1": 284.760009765625, + "y1": 379.44000244140625, + "width": 55.08001708984375, + "height": 15.47998046875 + }, { + "x0": 229.67999267578125, + "y0": 347.0400085449219, + "x1": 284.760009765625, + "y1": 362.52001953125, + "width": 55.08001708984375, + "height": 15.480010986328125 + }, { + "x0": 121.67999267578125, + "y0": 430.91998291015625, + "x1": 228.5999755859375, + "y1": 446.3999938964844, + "width": 106.91998291015625, + "height": 15.480010986328125 + }, { + "x0": 121.67999267578125, + "y0": 414.0, + "x1": 228.5999755859375, + "y1": 429.8399963378906, + "width": 106.91998291015625, + "height": 15.839996337890625 + }, { + "x0": 121.67999267578125, + "y0": 397.44000244140625, + "x1": 228.5999755859375, + "y1": 412.91998291015625, + "width": 106.91998291015625, + "height": 15.47998046875 + }, { + "x0": 121.67999267578125, + "y0": 380.52001953125, + "x1": 228.5999755859375, + "y1": 396.3599853515625, + "width": 106.91998291015625, + "height": 15.8399658203125 + }, { + "x0": 121.67999267578125, + "y0": 363.96002197265625, + "x1": 228.5999755859375, + "y1": 379.44000244140625, + "width": 106.91998291015625, + "height": 15.47998046875 + }, { + "x0": 121.67999267578125, + "y0": 347.0400085449219, + "x1": 228.5999755859375, + "y1": 362.52001953125, + "width": 106.91998291015625, + "height": 15.480010986328125 + } + ] + }, { + "pageInfo": { + "number": 127, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 461.1600036621094, + "y0": 478.44000244140625, + "x1": 711.3599853515625, + "y1": 494.2799987792969, + "width": 250.19998168945312, + "height": 15.839996337890625 + }, { + "x0": 651.239990234375, + "y0": 462.96002197265625, + "x1": 711.3599853515625, + "y1": 477.7200012207031, + "width": 60.1199951171875, + "height": 14.759979248046875 + }, { + "x0": 651.239990234375, + "y0": 448.20001220703125, + "x1": 711.3599853515625, + "y1": 462.239990234375, + "width": 60.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 651.239990234375, + "y0": 433.08001708984375, + "x1": 711.3599853515625, + "y1": 447.47998046875, + "width": 60.1199951171875, + "height": 14.39996337890625 + }, { + "x0": 651.239990234375, + "y0": 418.32000732421875, + "x1": 711.3599853515625, + "y1": 432.7200012207031, + "width": 60.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 651.239990234375, + "y0": 403.55999755859375, + "x1": 711.3599853515625, + "y1": 417.6000061035156, + "width": 60.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 651.239990234375, + "y0": 388.44000244140625, + "x1": 711.3599853515625, + "y1": 402.8399963378906, + "width": 60.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 651.239990234375, + "y0": 373.67999267578125, + "x1": 711.3599853515625, + "y1": 387.7200012207031, + "width": 60.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 651.239990234375, + "y0": 358.55999755859375, + "x1": 711.3599853515625, + "y1": 372.96002197265625, + "width": 60.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 651.239990234375, + "y0": 343.79998779296875, + "x1": 711.3599853515625, + "y1": 358.20001220703125, + "width": 60.1199951171875, + "height": 14.4000244140625 + }, { + "x0": 651.239990234375, + "y0": 329.0400085449219, + "x1": 711.3599853515625, + "y1": 343.0799865722656, + "width": 60.1199951171875, + "height": 14.03997802734375 + }, { + "x0": 651.239990234375, + "y0": 313.9200134277344, + "x1": 711.3599853515625, + "y1": 328.32000732421875, + "width": 60.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 651.239990234375, + "y0": 299.1600036621094, + "x1": 711.3599853515625, + "y1": 313.20001220703125, + "width": 60.1199951171875, + "height": 14.040008544921875 + }, { + "x0": 651.239990234375, + "y0": 284.0400085449219, + "x1": 711.3599853515625, + "y1": 298.44000244140625, + "width": 60.1199951171875, + "height": 14.399993896484375 + }, { + "x0": 651.239990234375, + "y0": 269.280029296875, + "x1": 711.3599853515625, + "y1": 283.67999267578125, + "width": 60.1199951171875, + "height": 14.39996337890625 + }, { + "x0": 592.5599975585938, + "y0": 462.96002197265625, + "x1": 650.52001953125, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 592.5599975585938, + "y0": 448.20001220703125, + "x1": 650.52001953125, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 592.5599975585938, + "y0": 433.08001708984375, + "x1": 650.52001953125, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 592.5599975585938, + "y0": 418.32000732421875, + "x1": 650.52001953125, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 592.5599975585938, + "y0": 403.55999755859375, + "x1": 650.52001953125, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 592.5599975585938, + "y0": 388.44000244140625, + "x1": 650.52001953125, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 592.5599975585938, + "y0": 373.67999267578125, + "x1": 650.52001953125, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 592.5599975585938, + "y0": 358.55999755859375, + "x1": 650.52001953125, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 592.5599975585938, + "y0": 343.79998779296875, + "x1": 650.52001953125, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 592.5599975585938, + "y0": 329.0400085449219, + "x1": 650.52001953125, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 592.5599975585938, + "y0": 313.9200134277344, + "x1": 650.52001953125, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 592.5599975585938, + "y0": 299.1600036621094, + "x1": 650.52001953125, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 592.5599975585938, + "y0": 284.0400085449219, + "x1": 650.52001953125, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 592.5599975585938, + "y0": 269.280029296875, + "x1": 650.52001953125, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 533.8800048828125, + "y0": 462.96002197265625, + "x1": 591.8399658203125, + "y1": 477.7200012207031, + "width": 57.9599609375, + "height": 14.759979248046875 + }, { + "x0": 533.8800048828125, + "y0": 448.20001220703125, + "x1": 591.8399658203125, + "y1": 462.239990234375, + "width": 57.9599609375, + "height": 14.03997802734375 + }, { + "x0": 533.8800048828125, + "y0": 433.08001708984375, + "x1": 591.8399658203125, + "y1": 447.47998046875, + "width": 57.9599609375, + "height": 14.39996337890625 + }, { + "x0": 533.8800048828125, + "y0": 418.32000732421875, + "x1": 591.8399658203125, + "y1": 432.7200012207031, + "width": 57.9599609375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 403.55999755859375, + "x1": 591.8399658203125, + "y1": 417.6000061035156, + "width": 57.9599609375, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 388.44000244140625, + "x1": 591.8399658203125, + "y1": 402.8399963378906, + "width": 57.9599609375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 373.67999267578125, + "x1": 591.8399658203125, + "y1": 387.7200012207031, + "width": 57.9599609375, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 358.55999755859375, + "x1": 591.8399658203125, + "y1": 372.96002197265625, + "width": 57.9599609375, + "height": 14.4000244140625 + }, { + "x0": 533.8800048828125, + "y0": 343.79998779296875, + "x1": 591.8399658203125, + "y1": 358.20001220703125, + "width": 57.9599609375, + "height": 14.4000244140625 + }, { + "x0": 533.8800048828125, + "y0": 329.0400085449219, + "x1": 591.8399658203125, + "y1": 343.0799865722656, + "width": 57.9599609375, + "height": 14.03997802734375 + }, { + "x0": 533.8800048828125, + "y0": 313.9200134277344, + "x1": 591.8399658203125, + "y1": 328.32000732421875, + "width": 57.9599609375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 299.1600036621094, + "x1": 591.8399658203125, + "y1": 313.20001220703125, + "width": 57.9599609375, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 284.0400085449219, + "x1": 591.8399658203125, + "y1": 298.44000244140625, + "width": 57.9599609375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 269.280029296875, + "x1": 591.8399658203125, + "y1": 283.67999267578125, + "width": 57.9599609375, + "height": 14.39996337890625 + }, { + "x0": 461.1600036621094, + "y0": 462.96002197265625, + "x1": 533.1600341796875, + "y1": 477.7200012207031, + "width": 72.00003051757812, + "height": 14.759979248046875 + }, { + "x0": 461.1600036621094, + "y0": 448.20001220703125, + "x1": 533.1600341796875, + "y1": 462.239990234375, + "width": 72.00003051757812, + "height": 14.03997802734375 + }, { + "x0": 461.1600036621094, + "y0": 433.08001708984375, + "x1": 533.1600341796875, + "y1": 447.47998046875, + "width": 72.00003051757812, + "height": 14.39996337890625 + }, { + "x0": 461.1600036621094, + "y0": 418.32000732421875, + "x1": 533.1600341796875, + "y1": 432.7200012207031, + "width": 72.00003051757812, + "height": 14.399993896484375 + }, { + "x0": 461.1600036621094, + "y0": 403.55999755859375, + "x1": 533.1600341796875, + "y1": 417.6000061035156, + "width": 72.00003051757812, + "height": 14.040008544921875 + }, { + "x0": 461.1600036621094, + "y0": 388.44000244140625, + "x1": 533.1600341796875, + "y1": 402.8399963378906, + "width": 72.00003051757812, + "height": 14.399993896484375 + }, { + "x0": 461.1600036621094, + "y0": 373.67999267578125, + "x1": 533.1600341796875, + "y1": 387.7200012207031, + "width": 72.00003051757812, + "height": 14.040008544921875 + }, { + "x0": 461.1600036621094, + "y0": 358.55999755859375, + "x1": 533.1600341796875, + "y1": 372.96002197265625, + "width": 72.00003051757812, + "height": 14.4000244140625 + }, { + "x0": 461.1600036621094, + "y0": 343.79998779296875, + "x1": 533.1600341796875, + "y1": 358.20001220703125, + "width": 72.00003051757812, + "height": 14.4000244140625 + }, { + "x0": 461.1600036621094, + "y0": 329.0400085449219, + "x1": 533.1600341796875, + "y1": 343.0799865722656, + "width": 72.00003051757812, + "height": 14.03997802734375 + }, { + "x0": 461.1600036621094, + "y0": 313.9200134277344, + "x1": 533.1600341796875, + "y1": 328.32000732421875, + "width": 72.00003051757812, + "height": 14.399993896484375 + }, { + "x0": 461.1600036621094, + "y0": 299.1600036621094, + "x1": 533.1600341796875, + "y1": 313.20001220703125, + "width": 72.00003051757812, + "height": 14.040008544921875 + }, { + "x0": 461.1600036621094, + "y0": 284.0400085449219, + "x1": 533.1600341796875, + "y1": 298.44000244140625, + "width": 72.00003051757812, + "height": 14.399993896484375 + }, { + "x0": 461.1600036621094, + "y0": 269.280029296875, + "x1": 533.1600341796875, + "y1": 283.67999267578125, + "width": 72.00003051757812, + "height": 14.39996337890625 + }, { + "x0": 429.8399963378906, + "y0": 462.96002197265625, + "x1": 460.44000244140625, + "y1": 494.2799987792969, + "width": 30.600006103515625, + "height": 31.319976806640625 + }, { + "x0": 429.8399963378906, + "y0": 448.20001220703125, + "x1": 460.44000244140625, + "y1": 462.239990234375, + "width": 30.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 429.8399963378906, + "y0": 433.08001708984375, + "x1": 460.44000244140625, + "y1": 447.47998046875, + "width": 30.600006103515625, + "height": 14.39996337890625 + }, { + "x0": 429.8399963378906, + "y0": 418.32000732421875, + "x1": 460.44000244140625, + "y1": 432.7200012207031, + "width": 30.600006103515625, + "height": 14.399993896484375 + }, { + "x0": 429.8399963378906, + "y0": 403.55999755859375, + "x1": 460.44000244140625, + "y1": 417.6000061035156, + "width": 30.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 429.8399963378906, + "y0": 388.44000244140625, + "x1": 460.44000244140625, + "y1": 402.8399963378906, + "width": 30.600006103515625, + "height": 14.399993896484375 + }, { + "x0": 429.8399963378906, + "y0": 373.67999267578125, + "x1": 460.44000244140625, + "y1": 387.7200012207031, + "width": 30.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 429.8399963378906, + "y0": 358.55999755859375, + "x1": 460.44000244140625, + "y1": 372.96002197265625, + "width": 30.600006103515625, + "height": 14.4000244140625 + }, { + "x0": 429.8399963378906, + "y0": 343.79998779296875, + "x1": 460.44000244140625, + "y1": 358.20001220703125, + "width": 30.600006103515625, + "height": 14.4000244140625 + }, { + "x0": 429.8399963378906, + "y0": 329.0400085449219, + "x1": 460.44000244140625, + "y1": 343.0799865722656, + "width": 30.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 429.8399963378906, + "y0": 313.9200134277344, + "x1": 460.44000244140625, + "y1": 328.32000732421875, + "width": 30.600006103515625, + "height": 14.399993896484375 + }, { + "x0": 429.8399963378906, + "y0": 299.1600036621094, + "x1": 460.44000244140625, + "y1": 313.20001220703125, + "width": 30.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 429.8399963378906, + "y0": 284.0400085449219, + "x1": 460.44000244140625, + "y1": 298.44000244140625, + "width": 30.600006103515625, + "height": 14.399993896484375 + }, { + "x0": 429.8399963378906, + "y0": 269.280029296875, + "x1": 460.44000244140625, + "y1": 283.67999267578125, + "width": 30.600006103515625, + "height": 14.39996337890625 + }, { + "x0": 357.1199951171875, + "y0": 462.96002197265625, + "x1": 429.1199951171875, + "y1": 494.2799987792969, + "width": 72.0, + "height": 31.319976806640625 + }, { + "x0": 357.1199951171875, + "y0": 448.20001220703125, + "x1": 429.1199951171875, + "y1": 462.239990234375, + "width": 72.0, + "height": 14.03997802734375 + }, { + "x0": 357.1199951171875, + "y0": 433.08001708984375, + "x1": 429.1199951171875, + "y1": 447.47998046875, + "width": 72.0, + "height": 14.39996337890625 + }, { + "x0": 357.1199951171875, + "y0": 418.32000732421875, + "x1": 429.1199951171875, + "y1": 432.7200012207031, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 403.55999755859375, + "x1": 429.1199951171875, + "y1": 417.6000061035156, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 357.1199951171875, + "y0": 388.44000244140625, + "x1": 429.1199951171875, + "y1": 402.8399963378906, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 373.67999267578125, + "x1": 429.1199951171875, + "y1": 387.7200012207031, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 357.1199951171875, + "y0": 358.55999755859375, + "x1": 429.1199951171875, + "y1": 372.96002197265625, + "width": 72.0, + "height": 14.4000244140625 + }, { + "x0": 357.1199951171875, + "y0": 343.79998779296875, + "x1": 429.1199951171875, + "y1": 358.20001220703125, + "width": 72.0, + "height": 14.4000244140625 + }, { + "x0": 357.1199951171875, + "y0": 329.0400085449219, + "x1": 429.1199951171875, + "y1": 343.0799865722656, + "width": 72.0, + "height": 14.03997802734375 + }, { + "x0": 357.1199951171875, + "y0": 313.9200134277344, + "x1": 429.1199951171875, + "y1": 328.32000732421875, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 299.1600036621094, + "x1": 429.1199951171875, + "y1": 313.20001220703125, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 357.1199951171875, + "y0": 284.0400085449219, + "x1": 429.1199951171875, + "y1": 298.44000244140625, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 269.280029296875, + "x1": 429.1199951171875, + "y1": 283.67999267578125, + "width": 72.0, + "height": 14.39996337890625 + }, { + "x0": 326.5199890136719, + "y0": 462.96002197265625, + "x1": 356.3999938964844, + "y1": 494.2799987792969, + "width": 29.8800048828125, + "height": 31.319976806640625 + }, { + "x0": 326.5199890136719, + "y0": 448.20001220703125, + "x1": 356.3999938964844, + "y1": 462.239990234375, + "width": 29.8800048828125, + "height": 14.03997802734375 + }, { + "x0": 326.5199890136719, + "y0": 433.08001708984375, + "x1": 356.3999938964844, + "y1": 447.47998046875, + "width": 29.8800048828125, + "height": 14.39996337890625 + }, { + "x0": 326.5199890136719, + "y0": 418.32000732421875, + "x1": 356.3999938964844, + "y1": 432.7200012207031, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.5199890136719, + "y0": 403.55999755859375, + "x1": 356.3999938964844, + "y1": 417.6000061035156, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 326.5199890136719, + "y0": 388.44000244140625, + "x1": 356.3999938964844, + "y1": 402.8399963378906, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.5199890136719, + "y0": 373.67999267578125, + "x1": 356.3999938964844, + "y1": 387.7200012207031, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 326.5199890136719, + "y0": 358.55999755859375, + "x1": 356.3999938964844, + "y1": 372.96002197265625, + "width": 29.8800048828125, + "height": 14.4000244140625 + }, { + "x0": 326.5199890136719, + "y0": 343.79998779296875, + "x1": 356.3999938964844, + "y1": 358.20001220703125, + "width": 29.8800048828125, + "height": 14.4000244140625 + }, { + "x0": 326.5199890136719, + "y0": 329.0400085449219, + "x1": 356.3999938964844, + "y1": 343.0799865722656, + "width": 29.8800048828125, + "height": 14.03997802734375 + }, { + "x0": 326.5199890136719, + "y0": 313.9200134277344, + "x1": 356.3999938964844, + "y1": 328.32000732421875, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.5199890136719, + "y0": 299.1600036621094, + "x1": 356.3999938964844, + "y1": 313.20001220703125, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 326.5199890136719, + "y0": 284.0400085449219, + "x1": 356.3999938964844, + "y1": 298.44000244140625, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.5199890136719, + "y0": 269.280029296875, + "x1": 356.3999938964844, + "y1": 283.67999267578125, + "width": 29.8800048828125, + "height": 14.39996337890625 + }, { + "x0": 249.84002685546875, + "y0": 462.96002197265625, + "x1": 325.79998779296875, + "y1": 494.2799987792969, + "width": 75.9599609375, + "height": 31.319976806640625 + }, { + "x0": 249.84002685546875, + "y0": 448.20001220703125, + "x1": 325.79998779296875, + "y1": 462.239990234375, + "width": 75.9599609375, + "height": 14.03997802734375 + }, { + "x0": 249.84002685546875, + "y0": 433.08001708984375, + "x1": 325.79998779296875, + "y1": 447.47998046875, + "width": 75.9599609375, + "height": 14.39996337890625 + }, { + "x0": 249.84002685546875, + "y0": 418.32000732421875, + "x1": 325.79998779296875, + "y1": 432.7200012207031, + "width": 75.9599609375, + "height": 14.399993896484375 + }, { + "x0": 249.84002685546875, + "y0": 403.55999755859375, + "x1": 325.79998779296875, + "y1": 417.6000061035156, + "width": 75.9599609375, + "height": 14.040008544921875 + }, { + "x0": 249.84002685546875, + "y0": 388.44000244140625, + "x1": 325.79998779296875, + "y1": 402.8399963378906, + "width": 75.9599609375, + "height": 14.399993896484375 + }, { + "x0": 249.84002685546875, + "y0": 373.67999267578125, + "x1": 325.79998779296875, + "y1": 387.7200012207031, + "width": 75.9599609375, + "height": 14.040008544921875 + }, { + "x0": 249.84002685546875, + "y0": 358.55999755859375, + "x1": 325.79998779296875, + "y1": 372.96002197265625, + "width": 75.9599609375, + "height": 14.4000244140625 + }, { + "x0": 249.84002685546875, + "y0": 343.79998779296875, + "x1": 325.79998779296875, + "y1": 358.20001220703125, + "width": 75.9599609375, + "height": 14.4000244140625 + }, { + "x0": 249.84002685546875, + "y0": 329.0400085449219, + "x1": 325.79998779296875, + "y1": 343.0799865722656, + "width": 75.9599609375, + "height": 14.03997802734375 + }, { + "x0": 249.84002685546875, + "y0": 313.9200134277344, + "x1": 325.79998779296875, + "y1": 328.32000732421875, + "width": 75.9599609375, + "height": 14.399993896484375 + }, { + "x0": 249.84002685546875, + "y0": 299.1600036621094, + "x1": 325.79998779296875, + "y1": 313.20001220703125, + "width": 75.9599609375, + "height": 14.040008544921875 + }, { + "x0": 249.84002685546875, + "y0": 284.0400085449219, + "x1": 325.79998779296875, + "y1": 298.44000244140625, + "width": 75.9599609375, + "height": 14.399993896484375 + }, { + "x0": 249.84002685546875, + "y0": 269.280029296875, + "x1": 325.79998779296875, + "y1": 283.67999267578125, + "width": 75.9599609375, + "height": 14.39996337890625 + }, { + "x0": 191.15997314453125, + "y0": 462.96002197265625, + "x1": 249.1199951171875, + "y1": 494.2799987792969, + "width": 57.96002197265625, + "height": 31.319976806640625 + }, { + "x0": 191.15997314453125, + "y0": 448.20001220703125, + "x1": 249.1199951171875, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 191.15997314453125, + "y0": 433.08001708984375, + "x1": 249.1199951171875, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 191.15997314453125, + "y0": 418.32000732421875, + "x1": 249.1199951171875, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 403.55999755859375, + "x1": 249.1199951171875, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 191.15997314453125, + "y0": 388.44000244140625, + "x1": 249.1199951171875, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 373.67999267578125, + "x1": 249.1199951171875, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 191.15997314453125, + "y0": 358.55999755859375, + "x1": 249.1199951171875, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 191.15997314453125, + "y0": 343.79998779296875, + "x1": 249.1199951171875, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 191.15997314453125, + "y0": 329.0400085449219, + "x1": 249.1199951171875, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 191.15997314453125, + "y0": 313.9200134277344, + "x1": 249.1199951171875, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 299.1600036621094, + "x1": 249.1199951171875, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 191.15997314453125, + "y0": 284.0400085449219, + "x1": 249.1199951171875, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 269.280029296875, + "x1": 249.1199951171875, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 148.67999267578125, + "y0": 462.96002197265625, + "x1": 190.44000244140625, + "y1": 494.2799987792969, + "width": 41.760009765625, + "height": 31.319976806640625 + }, { + "x0": 148.67999267578125, + "y0": 448.20001220703125, + "x1": 190.44000244140625, + "y1": 462.239990234375, + "width": 41.760009765625, + "height": 14.03997802734375 + }, { + "x0": 148.67999267578125, + "y0": 433.08001708984375, + "x1": 190.44000244140625, + "y1": 447.47998046875, + "width": 41.760009765625, + "height": 14.39996337890625 + }, { + "x0": 148.67999267578125, + "y0": 418.32000732421875, + "x1": 190.44000244140625, + "y1": 432.7200012207031, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 403.55999755859375, + "x1": 190.44000244140625, + "y1": 417.6000061035156, + "width": 41.760009765625, + "height": 14.040008544921875 + }, { + "x0": 148.67999267578125, + "y0": 388.44000244140625, + "x1": 190.44000244140625, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 373.67999267578125, + "x1": 190.44000244140625, + "y1": 387.7200012207031, + "width": 41.760009765625, + "height": 14.040008544921875 + }, { + "x0": 148.67999267578125, + "y0": 358.55999755859375, + "x1": 190.44000244140625, + "y1": 372.96002197265625, + "width": 41.760009765625, + "height": 14.4000244140625 + }, { + "x0": 148.67999267578125, + "y0": 343.79998779296875, + "x1": 190.44000244140625, + "y1": 358.20001220703125, + "width": 41.760009765625, + "height": 14.4000244140625 + }, { + "x0": 148.67999267578125, + "y0": 329.0400085449219, + "x1": 190.44000244140625, + "y1": 343.0799865722656, + "width": 41.760009765625, + "height": 14.03997802734375 + }, { + "x0": 148.67999267578125, + "y0": 313.9200134277344, + "x1": 190.44000244140625, + "y1": 328.32000732421875, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 299.1600036621094, + "x1": 190.44000244140625, + "y1": 313.20001220703125, + "width": 41.760009765625, + "height": 14.040008544921875 + }, { + "x0": 148.67999267578125, + "y0": 284.0400085449219, + "x1": 190.44000244140625, + "y1": 298.44000244140625, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 269.280029296875, + "x1": 190.44000244140625, + "y1": 283.67999267578125, + "width": 41.760009765625, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 147.96002197265625, + "y1": 494.2799987792969, + "width": 76.67999267578125, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 147.96002197265625, + "y1": 462.239990234375, + "width": 76.67999267578125, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 128, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 463.67999267578125, + "y0": 478.44000244140625, + "x1": 710.280029296875, + "y1": 494.2799987792969, + "width": 246.60003662109375, + "height": 15.839996337890625 + }, { + "x0": 652.6799926757812, + "y0": 462.96002197265625, + "x1": 710.280029296875, + "y1": 477.7200012207031, + "width": 57.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 652.6799926757812, + "y0": 448.20001220703125, + "x1": 710.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 433.08001708984375, + "x1": 710.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 652.6799926757812, + "y0": 418.32000732421875, + "x1": 710.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 403.55999755859375, + "x1": 710.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 388.44000244140625, + "x1": 710.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 373.67999267578125, + "x1": 710.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 358.55999755859375, + "x1": 710.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 343.79998779296875, + "x1": 710.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 329.0400085449219, + "x1": 710.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 313.9200134277344, + "x1": 710.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 299.1600036621094, + "x1": 710.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 284.0400085449219, + "x1": 710.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 269.280029296875, + "x1": 710.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 462.96002197265625, + "x1": 651.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 594.0, + "y0": 448.20001220703125, + "x1": 651.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 433.08001708984375, + "x1": 651.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 418.32000732421875, + "x1": 651.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 403.55999755859375, + "x1": 651.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 388.44000244140625, + "x1": 651.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 373.67999267578125, + "x1": 651.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 358.55999755859375, + "x1": 651.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 343.79998779296875, + "x1": 651.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 329.0400085449219, + "x1": 651.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 313.9200134277344, + "x1": 651.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 299.1600036621094, + "x1": 651.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 284.0400085449219, + "x1": 651.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 269.280029296875, + "x1": 651.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 531.0, + "y0": 462.96002197265625, + "x1": 593.280029296875, + "y1": 477.7200012207031, + "width": 62.280029296875, + "height": 14.759979248046875 + }, { + "x0": 531.0, + "y0": 448.20001220703125, + "x1": 593.280029296875, + "y1": 462.239990234375, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 531.0, + "y0": 433.08001708984375, + "x1": 593.280029296875, + "y1": 447.47998046875, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 531.0, + "y0": 418.32000732421875, + "x1": 593.280029296875, + "y1": 432.7200012207031, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 531.0, + "y0": 403.55999755859375, + "x1": 593.280029296875, + "y1": 417.6000061035156, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 531.0, + "y0": 388.44000244140625, + "x1": 593.280029296875, + "y1": 402.8399963378906, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 531.0, + "y0": 373.67999267578125, + "x1": 593.280029296875, + "y1": 387.7200012207031, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 531.0, + "y0": 358.55999755859375, + "x1": 593.280029296875, + "y1": 372.96002197265625, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 531.0, + "y0": 343.79998779296875, + "x1": 593.280029296875, + "y1": 358.20001220703125, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 531.0, + "y0": 329.0400085449219, + "x1": 593.280029296875, + "y1": 343.0799865722656, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 531.0, + "y0": 313.9200134277344, + "x1": 593.280029296875, + "y1": 328.32000732421875, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 531.0, + "y0": 299.1600036621094, + "x1": 593.280029296875, + "y1": 313.20001220703125, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 531.0, + "y0": 284.0400085449219, + "x1": 593.280029296875, + "y1": 298.44000244140625, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 531.0, + "y0": 269.280029296875, + "x1": 593.280029296875, + "y1": 283.67999267578125, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 463.67999267578125, + "y0": 462.96002197265625, + "x1": 530.280029296875, + "y1": 477.7200012207031, + "width": 66.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 463.67999267578125, + "y0": 448.20001220703125, + "x1": 530.280029296875, + "y1": 462.239990234375, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 463.67999267578125, + "y0": 433.08001708984375, + "x1": 530.280029296875, + "y1": 447.47998046875, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 463.67999267578125, + "y0": 418.32000732421875, + "x1": 530.280029296875, + "y1": 432.7200012207031, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 463.67999267578125, + "y0": 403.55999755859375, + "x1": 530.280029296875, + "y1": 417.6000061035156, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 463.67999267578125, + "y0": 388.44000244140625, + "x1": 530.280029296875, + "y1": 402.8399963378906, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 463.67999267578125, + "y0": 373.67999267578125, + "x1": 530.280029296875, + "y1": 387.7200012207031, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 463.67999267578125, + "y0": 358.55999755859375, + "x1": 530.280029296875, + "y1": 372.96002197265625, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 463.67999267578125, + "y0": 343.79998779296875, + "x1": 530.280029296875, + "y1": 358.20001220703125, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 463.67999267578125, + "y0": 329.0400085449219, + "x1": 530.280029296875, + "y1": 343.0799865722656, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 463.67999267578125, + "y0": 313.9200134277344, + "x1": 530.280029296875, + "y1": 328.32000732421875, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 463.67999267578125, + "y0": 299.1600036621094, + "x1": 530.280029296875, + "y1": 313.20001220703125, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 463.67999267578125, + "y0": 284.0400085449219, + "x1": 530.280029296875, + "y1": 298.44000244140625, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 463.67999267578125, + "y0": 269.280029296875, + "x1": 530.280029296875, + "y1": 283.67999267578125, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 417.6000061035156, + "y0": 462.96002197265625, + "x1": 462.9599914550781, + "y1": 494.2799987792969, + "width": 45.3599853515625, + "height": 31.319976806640625 + }, { + "x0": 417.6000061035156, + "y0": 448.20001220703125, + "x1": 462.9599914550781, + "y1": 462.239990234375, + "width": 45.3599853515625, + "height": 14.03997802734375 + }, { + "x0": 417.6000061035156, + "y0": 433.08001708984375, + "x1": 462.9599914550781, + "y1": 447.47998046875, + "width": 45.3599853515625, + "height": 14.39996337890625 + }, { + "x0": 417.6000061035156, + "y0": 418.32000732421875, + "x1": 462.9599914550781, + "y1": 432.7200012207031, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 417.6000061035156, + "y0": 403.55999755859375, + "x1": 462.9599914550781, + "y1": 417.6000061035156, + "width": 45.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 417.6000061035156, + "y0": 388.44000244140625, + "x1": 462.9599914550781, + "y1": 402.8399963378906, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 417.6000061035156, + "y0": 373.67999267578125, + "x1": 462.9599914550781, + "y1": 387.7200012207031, + "width": 45.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 417.6000061035156, + "y0": 358.55999755859375, + "x1": 462.9599914550781, + "y1": 372.96002197265625, + "width": 45.3599853515625, + "height": 14.4000244140625 + }, { + "x0": 417.6000061035156, + "y0": 343.79998779296875, + "x1": 462.9599914550781, + "y1": 358.20001220703125, + "width": 45.3599853515625, + "height": 14.4000244140625 + }, { + "x0": 417.6000061035156, + "y0": 329.0400085449219, + "x1": 462.9599914550781, + "y1": 343.0799865722656, + "width": 45.3599853515625, + "height": 14.03997802734375 + }, { + "x0": 417.6000061035156, + "y0": 313.9200134277344, + "x1": 462.9599914550781, + "y1": 328.32000732421875, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 417.6000061035156, + "y0": 299.1600036621094, + "x1": 462.9599914550781, + "y1": 313.20001220703125, + "width": 45.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 417.6000061035156, + "y0": 284.0400085449219, + "x1": 462.9599914550781, + "y1": 298.44000244140625, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 417.6000061035156, + "y0": 269.280029296875, + "x1": 462.9599914550781, + "y1": 283.67999267578125, + "width": 45.3599853515625, + "height": 14.39996337890625 + }, { + "x0": 344.8800048828125, + "y0": 462.96002197265625, + "x1": 416.8800048828125, + "y1": 494.2799987792969, + "width": 72.0, + "height": 31.319976806640625 + }, { + "x0": 344.8800048828125, + "y0": 448.20001220703125, + "x1": 416.8800048828125, + "y1": 462.239990234375, + "width": 72.0, + "height": 14.03997802734375 + }, { + "x0": 344.8800048828125, + "y0": 433.08001708984375, + "x1": 416.8800048828125, + "y1": 447.47998046875, + "width": 72.0, + "height": 14.39996337890625 + }, { + "x0": 344.8800048828125, + "y0": 418.32000732421875, + "x1": 416.8800048828125, + "y1": 432.7200012207031, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 344.8800048828125, + "y0": 403.55999755859375, + "x1": 416.8800048828125, + "y1": 417.6000061035156, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 344.8800048828125, + "y0": 388.44000244140625, + "x1": 416.8800048828125, + "y1": 402.8399963378906, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 344.8800048828125, + "y0": 373.67999267578125, + "x1": 416.8800048828125, + "y1": 387.7200012207031, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 344.8800048828125, + "y0": 358.55999755859375, + "x1": 416.8800048828125, + "y1": 372.96002197265625, + "width": 72.0, + "height": 14.4000244140625 + }, { + "x0": 344.8800048828125, + "y0": 343.79998779296875, + "x1": 416.8800048828125, + "y1": 358.20001220703125, + "width": 72.0, + "height": 14.4000244140625 + }, { + "x0": 344.8800048828125, + "y0": 329.0400085449219, + "x1": 416.8800048828125, + "y1": 343.0799865722656, + "width": 72.0, + "height": 14.03997802734375 + }, { + "x0": 344.8800048828125, + "y0": 313.9200134277344, + "x1": 416.8800048828125, + "y1": 328.32000732421875, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 344.8800048828125, + "y0": 299.1600036621094, + "x1": 416.8800048828125, + "y1": 313.20001220703125, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 344.8800048828125, + "y0": 284.0400085449219, + "x1": 416.8800048828125, + "y1": 298.44000244140625, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 344.8800048828125, + "y0": 269.280029296875, + "x1": 416.8800048828125, + "y1": 283.67999267578125, + "width": 72.0, + "height": 14.39996337890625 + }, { + "x0": 314.2799987792969, + "y0": 462.96002197265625, + "x1": 344.1600036621094, + "y1": 494.2799987792969, + "width": 29.8800048828125, + "height": 31.319976806640625 + }, { + "x0": 314.2799987792969, + "y0": 448.20001220703125, + "x1": 344.1600036621094, + "y1": 462.239990234375, + "width": 29.8800048828125, + "height": 14.03997802734375 + }, { + "x0": 314.2799987792969, + "y0": 433.08001708984375, + "x1": 344.1600036621094, + "y1": 447.47998046875, + "width": 29.8800048828125, + "height": 14.39996337890625 + }, { + "x0": 314.2799987792969, + "y0": 418.32000732421875, + "x1": 344.1600036621094, + "y1": 432.7200012207031, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 314.2799987792969, + "y0": 403.55999755859375, + "x1": 344.1600036621094, + "y1": 417.6000061035156, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 314.2799987792969, + "y0": 388.44000244140625, + "x1": 344.1600036621094, + "y1": 402.8399963378906, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 314.2799987792969, + "y0": 373.67999267578125, + "x1": 344.1600036621094, + "y1": 387.7200012207031, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 314.2799987792969, + "y0": 358.55999755859375, + "x1": 344.1600036621094, + "y1": 372.96002197265625, + "width": 29.8800048828125, + "height": 14.4000244140625 + }, { + "x0": 314.2799987792969, + "y0": 343.79998779296875, + "x1": 344.1600036621094, + "y1": 358.20001220703125, + "width": 29.8800048828125, + "height": 14.4000244140625 + }, { + "x0": 314.2799987792969, + "y0": 329.0400085449219, + "x1": 344.1600036621094, + "y1": 343.0799865722656, + "width": 29.8800048828125, + "height": 14.03997802734375 + }, { + "x0": 314.2799987792969, + "y0": 313.9200134277344, + "x1": 344.1600036621094, + "y1": 328.32000732421875, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 314.2799987792969, + "y0": 299.1600036621094, + "x1": 344.1600036621094, + "y1": 313.20001220703125, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 314.2799987792969, + "y0": 284.0400085449219, + "x1": 344.1600036621094, + "y1": 298.44000244140625, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 314.2799987792969, + "y0": 269.280029296875, + "x1": 344.1600036621094, + "y1": 283.67999267578125, + "width": 29.8800048828125, + "height": 14.39996337890625 + }, { + "x0": 241.20001220703125, + "y0": 462.96002197265625, + "x1": 313.55999755859375, + "y1": 494.2799987792969, + "width": 72.3599853515625, + "height": 31.319976806640625 + }, { + "x0": 241.20001220703125, + "y0": 448.20001220703125, + "x1": 313.55999755859375, + "y1": 462.239990234375, + "width": 72.3599853515625, + "height": 14.03997802734375 + }, { + "x0": 241.20001220703125, + "y0": 433.08001708984375, + "x1": 313.55999755859375, + "y1": 447.47998046875, + "width": 72.3599853515625, + "height": 14.39996337890625 + }, { + "x0": 241.20001220703125, + "y0": 418.32000732421875, + "x1": 313.55999755859375, + "y1": 432.7200012207031, + "width": 72.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 241.20001220703125, + "y0": 403.55999755859375, + "x1": 313.55999755859375, + "y1": 417.6000061035156, + "width": 72.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 241.20001220703125, + "y0": 388.44000244140625, + "x1": 313.55999755859375, + "y1": 402.8399963378906, + "width": 72.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 241.20001220703125, + "y0": 373.67999267578125, + "x1": 313.55999755859375, + "y1": 387.7200012207031, + "width": 72.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 241.20001220703125, + "y0": 358.55999755859375, + "x1": 313.55999755859375, + "y1": 372.96002197265625, + "width": 72.3599853515625, + "height": 14.4000244140625 + }, { + "x0": 241.20001220703125, + "y0": 343.79998779296875, + "x1": 313.55999755859375, + "y1": 358.20001220703125, + "width": 72.3599853515625, + "height": 14.4000244140625 + }, { + "x0": 241.20001220703125, + "y0": 329.0400085449219, + "x1": 313.55999755859375, + "y1": 343.0799865722656, + "width": 72.3599853515625, + "height": 14.03997802734375 + }, { + "x0": 241.20001220703125, + "y0": 313.9200134277344, + "x1": 313.55999755859375, + "y1": 328.32000732421875, + "width": 72.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 241.20001220703125, + "y0": 299.1600036621094, + "x1": 313.55999755859375, + "y1": 313.20001220703125, + "width": 72.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 241.20001220703125, + "y0": 284.0400085449219, + "x1": 313.55999755859375, + "y1": 298.44000244140625, + "width": 72.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 241.20001220703125, + "y0": 269.280029296875, + "x1": 313.55999755859375, + "y1": 283.67999267578125, + "width": 72.3599853515625, + "height": 14.39996337890625 + }, { + "x0": 186.84002685546875, + "y0": 462.96002197265625, + "x1": 240.47998046875, + "y1": 494.2799987792969, + "width": 53.63995361328125, + "height": 31.319976806640625 + }, { + "x0": 186.84002685546875, + "y0": 448.20001220703125, + "x1": 240.47998046875, + "y1": 462.239990234375, + "width": 53.63995361328125, + "height": 14.03997802734375 + }, { + "x0": 186.84002685546875, + "y0": 433.08001708984375, + "x1": 240.47998046875, + "y1": 447.47998046875, + "width": 53.63995361328125, + "height": 14.39996337890625 + }, { + "x0": 186.84002685546875, + "y0": 418.32000732421875, + "x1": 240.47998046875, + "y1": 432.7200012207031, + "width": 53.63995361328125, + "height": 14.399993896484375 + }, { + "x0": 186.84002685546875, + "y0": 403.55999755859375, + "x1": 240.47998046875, + "y1": 417.6000061035156, + "width": 53.63995361328125, + "height": 14.040008544921875 + }, { + "x0": 186.84002685546875, + "y0": 388.44000244140625, + "x1": 240.47998046875, + "y1": 402.8399963378906, + "width": 53.63995361328125, + "height": 14.399993896484375 + }, { + "x0": 186.84002685546875, + "y0": 373.67999267578125, + "x1": 240.47998046875, + "y1": 387.7200012207031, + "width": 53.63995361328125, + "height": 14.040008544921875 + }, { + "x0": 186.84002685546875, + "y0": 358.55999755859375, + "x1": 240.47998046875, + "y1": 372.96002197265625, + "width": 53.63995361328125, + "height": 14.4000244140625 + }, { + "x0": 186.84002685546875, + "y0": 343.79998779296875, + "x1": 240.47998046875, + "y1": 358.20001220703125, + "width": 53.63995361328125, + "height": 14.4000244140625 + }, { + "x0": 186.84002685546875, + "y0": 329.0400085449219, + "x1": 240.47998046875, + "y1": 343.0799865722656, + "width": 53.63995361328125, + "height": 14.03997802734375 + }, { + "x0": 186.84002685546875, + "y0": 313.9200134277344, + "x1": 240.47998046875, + "y1": 328.32000732421875, + "width": 53.63995361328125, + "height": 14.399993896484375 + }, { + "x0": 186.84002685546875, + "y0": 299.1600036621094, + "x1": 240.47998046875, + "y1": 313.20001220703125, + "width": 53.63995361328125, + "height": 14.040008544921875 + }, { + "x0": 186.84002685546875, + "y0": 284.0400085449219, + "x1": 240.47998046875, + "y1": 298.44000244140625, + "width": 53.63995361328125, + "height": 14.399993896484375 + }, { + "x0": 186.84002685546875, + "y0": 269.280029296875, + "x1": 240.47998046875, + "y1": 283.67999267578125, + "width": 53.63995361328125, + "height": 14.39996337890625 + }, { + "x0": 145.44000244140625, + "y0": 462.96002197265625, + "x1": 186.1199951171875, + "y1": 494.2799987792969, + "width": 40.67999267578125, + "height": 31.319976806640625 + }, { + "x0": 145.44000244140625, + "y0": 448.20001220703125, + "x1": 186.1199951171875, + "y1": 462.239990234375, + "width": 40.67999267578125, + "height": 14.03997802734375 + }, { + "x0": 145.44000244140625, + "y0": 433.08001708984375, + "x1": 186.1199951171875, + "y1": 447.47998046875, + "width": 40.67999267578125, + "height": 14.39996337890625 + }, { + "x0": 145.44000244140625, + "y0": 418.32000732421875, + "x1": 186.1199951171875, + "y1": 432.7200012207031, + "width": 40.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 145.44000244140625, + "y0": 403.55999755859375, + "x1": 186.1199951171875, + "y1": 417.6000061035156, + "width": 40.67999267578125, + "height": 14.040008544921875 + }, { + "x0": 145.44000244140625, + "y0": 388.44000244140625, + "x1": 186.1199951171875, + "y1": 402.8399963378906, + "width": 40.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 145.44000244140625, + "y0": 373.67999267578125, + "x1": 186.1199951171875, + "y1": 387.7200012207031, + "width": 40.67999267578125, + "height": 14.040008544921875 + }, { + "x0": 145.44000244140625, + "y0": 358.55999755859375, + "x1": 186.1199951171875, + "y1": 372.96002197265625, + "width": 40.67999267578125, + "height": 14.4000244140625 + }, { + "x0": 145.44000244140625, + "y0": 343.79998779296875, + "x1": 186.1199951171875, + "y1": 358.20001220703125, + "width": 40.67999267578125, + "height": 14.4000244140625 + }, { + "x0": 145.44000244140625, + "y0": 329.0400085449219, + "x1": 186.1199951171875, + "y1": 343.0799865722656, + "width": 40.67999267578125, + "height": 14.03997802734375 + }, { + "x0": 145.44000244140625, + "y0": 313.9200134277344, + "x1": 186.1199951171875, + "y1": 328.32000732421875, + "width": 40.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 145.44000244140625, + "y0": 299.1600036621094, + "x1": 186.1199951171875, + "y1": 313.20001220703125, + "width": 40.67999267578125, + "height": 14.040008544921875 + }, { + "x0": 145.44000244140625, + "y0": 284.0400085449219, + "x1": 186.1199951171875, + "y1": 298.44000244140625, + "width": 40.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 145.44000244140625, + "y0": 269.280029296875, + "x1": 186.1199951171875, + "y1": 283.67999267578125, + "width": 40.67999267578125, + "height": 14.39996337890625 + }, { + "x0": 74.52001953125, + "y0": 462.96002197265625, + "x1": 144.719970703125, + "y1": 494.2799987792969, + "width": 70.199951171875, + "height": 31.319976806640625 + }, { + "x0": 74.52001953125, + "y0": 269.280029296875, + "x1": 144.719970703125, + "y1": 462.239990234375, + "width": 70.199951171875, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 129, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 117.72000122070312, + "y0": 463.32000732421875, + "x1": 133.55999755859375, + "y1": 710.280029296875, + "width": 15.839996337890625, + "height": 246.96002197265625 + }, { + "x0": 134.27999877929688, + "y0": 652.3200073242188, + "x1": 149.0399932861328, + "y1": 710.280029296875, + "width": 14.759994506835938, + "height": 57.96002197265625 + }, { + "x0": 149.75999450683594, + "y0": 652.3200073242188, + "x1": 163.8000030517578, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 164.52000427246094, + "y0": 652.3200073242188, + "x1": 178.9199981689453, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 179.27999877929688, + "y0": 652.3200073242188, + "x1": 193.67999267578125, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 194.39999389648438, + "y0": 652.3200073242188, + "x1": 208.44000244140625, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 209.16000366210938, + "y0": 652.3200073242188, + "x1": 223.55999755859375, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 224.27999877929688, + "y0": 652.3200073242188, + "x1": 238.32000732421875, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 239.0399932861328, + "y0": 652.3200073242188, + "x1": 253.44000244140625, + "y1": 710.280029296875, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 253.8000030517578, + "y0": 652.3200073242188, + "x1": 268.20001220703125, + "y1": 710.280029296875, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 268.9200134277344, + "y0": 652.3200073242188, + "x1": 282.9599914550781, + "y1": 710.280029296875, + "width": 14.03997802734375, + "height": 57.96002197265625 + }, { + "x0": 283.67999267578125, + "y0": 652.3200073242188, + "x1": 298.0799865722656, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 298.79998779296875, + "y0": 652.3200073242188, + "x1": 312.8399963378906, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 313.55999755859375, + "y0": 652.3200073242188, + "x1": 327.6000061035156, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 328.32000732421875, + "y0": 652.3200073242188, + "x1": 342.7200012207031, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 134.27999877929688, + "y0": 594.0, + "x1": 149.0399932861328, + "y1": 651.9600219726562, + "width": 14.759994506835938, + "height": 57.96002197265625 + }, { + "x0": 149.75999450683594, + "y0": 594.0, + "x1": 163.8000030517578, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 164.52000427246094, + "y0": 594.0, + "x1": 178.9199981689453, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 179.27999877929688, + "y0": 594.0, + "x1": 193.67999267578125, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 194.39999389648438, + "y0": 594.0, + "x1": 208.44000244140625, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 209.16000366210938, + "y0": 594.0, + "x1": 223.55999755859375, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 224.27999877929688, + "y0": 594.0, + "x1": 238.32000732421875, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 239.0399932861328, + "y0": 594.0, + "x1": 253.44000244140625, + "y1": 651.9600219726562, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 253.8000030517578, + "y0": 594.0, + "x1": 268.20001220703125, + "y1": 651.9600219726562, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 268.9200134277344, + "y0": 594.0, + "x1": 282.9599914550781, + "y1": 651.9600219726562, + "width": 14.03997802734375, + "height": 57.96002197265625 + }, { + "x0": 283.67999267578125, + "y0": 594.0, + "x1": 298.0799865722656, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 298.79998779296875, + "y0": 594.0, + "x1": 312.8399963378906, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 313.55999755859375, + "y0": 594.0, + "x1": 327.6000061035156, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 328.32000732421875, + "y0": 594.0, + "x1": 342.7200012207031, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 134.27999877929688, + "y0": 533.8800048828125, + "x1": 149.0399932861328, + "y1": 593.280029296875, + "width": 14.759994506835938, + "height": 59.4000244140625 + }, { + "x0": 149.75999450683594, + "y0": 533.8800048828125, + "x1": 163.8000030517578, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 59.4000244140625 + }, { + "x0": 164.52000427246094, + "y0": 533.8800048828125, + "x1": 178.9199981689453, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 59.4000244140625 + }, { + "x0": 179.27999877929688, + "y0": 533.8800048828125, + "x1": 193.67999267578125, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 59.4000244140625 + }, { + "x0": 194.39999389648438, + "y0": 533.8800048828125, + "x1": 208.44000244140625, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 59.4000244140625 + }, { + "x0": 209.16000366210938, + "y0": 533.8800048828125, + "x1": 223.55999755859375, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 59.4000244140625 + }, { + "x0": 224.27999877929688, + "y0": 533.8800048828125, + "x1": 238.32000732421875, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 59.4000244140625 + }, { + "x0": 239.0399932861328, + "y0": 533.8800048828125, + "x1": 253.44000244140625, + "y1": 593.280029296875, + "width": 14.400009155273438, + "height": 59.4000244140625 + }, { + "x0": 253.8000030517578, + "y0": 533.8800048828125, + "x1": 268.20001220703125, + "y1": 593.280029296875, + "width": 14.400009155273438, + "height": 59.4000244140625 + }, { + "x0": 268.9200134277344, + "y0": 533.8800048828125, + "x1": 282.9599914550781, + "y1": 593.280029296875, + "width": 14.03997802734375, + "height": 59.4000244140625 + }, { + "x0": 283.67999267578125, + "y0": 533.8800048828125, + "x1": 298.0799865722656, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 59.4000244140625 + }, { + "x0": 298.79998779296875, + "y0": 533.8800048828125, + "x1": 312.8399963378906, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 59.4000244140625 + }, { + "x0": 313.55999755859375, + "y0": 533.8800048828125, + "x1": 327.6000061035156, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 59.4000244140625 + }, { + "x0": 328.32000732421875, + "y0": 533.8800048828125, + "x1": 342.7200012207031, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 59.4000244140625 + }, { + "x0": 134.27999877929688, + "y0": 463.32000732421875, + "x1": 149.0399932861328, + "y1": 533.1600341796875, + "width": 14.759994506835938, + "height": 69.84002685546875 + }, { + "x0": 149.75999450683594, + "y0": 463.32000732421875, + "x1": 163.8000030517578, + "y1": 533.1600341796875, + "width": 14.040008544921875, + "height": 69.84002685546875 + }, { + "x0": 164.52000427246094, + "y0": 463.32000732421875, + "x1": 178.9199981689453, + "y1": 533.1600341796875, + "width": 14.399993896484375, + "height": 69.84002685546875 + }, { + "x0": 179.27999877929688, + "y0": 463.32000732421875, + "x1": 193.67999267578125, + "y1": 533.1600341796875, + "width": 14.399993896484375, + "height": 69.84002685546875 + }, { + "x0": 194.39999389648438, + "y0": 463.32000732421875, + "x1": 208.44000244140625, + "y1": 533.1600341796875, + "width": 14.040008544921875, + "height": 69.84002685546875 + }, { + "x0": 209.16000366210938, + "y0": 463.32000732421875, + "x1": 223.55999755859375, + "y1": 533.1600341796875, + "width": 14.399993896484375, + "height": 69.84002685546875 + }, { + "x0": 224.27999877929688, + "y0": 463.32000732421875, + "x1": 238.32000732421875, + "y1": 533.1600341796875, + "width": 14.040008544921875, + "height": 69.84002685546875 + }, { + "x0": 239.0399932861328, + "y0": 463.32000732421875, + "x1": 253.44000244140625, + "y1": 533.1600341796875, + "width": 14.400009155273438, + "height": 69.84002685546875 + }, { + "x0": 253.8000030517578, + "y0": 463.32000732421875, + "x1": 268.20001220703125, + "y1": 533.1600341796875, + "width": 14.400009155273438, + "height": 69.84002685546875 + }, { + "x0": 268.9200134277344, + "y0": 463.32000732421875, + "x1": 282.9599914550781, + "y1": 533.1600341796875, + "width": 14.03997802734375, + "height": 69.84002685546875 + }, { + "x0": 283.67999267578125, + "y0": 463.32000732421875, + "x1": 298.0799865722656, + "y1": 533.1600341796875, + "width": 14.399993896484375, + "height": 69.84002685546875 + }, { + "x0": 298.79998779296875, + "y0": 463.32000732421875, + "x1": 312.8399963378906, + "y1": 533.1600341796875, + "width": 14.040008544921875, + "height": 69.84002685546875 + }, { + "x0": 313.55999755859375, + "y0": 463.32000732421875, + "x1": 327.6000061035156, + "y1": 533.1600341796875, + "width": 14.040008544921875, + "height": 69.84002685546875 + }, { + "x0": 328.32000732421875, + "y0": 463.32000732421875, + "x1": 342.7200012207031, + "y1": 533.1600341796875, + "width": 14.399993896484375, + "height": 69.84002685546875 + }, { + "x0": 117.72000122070312, + "y0": 418.32000732421875, + "x1": 149.0399932861328, + "y1": 462.9599914550781, + "width": 31.319992065429688, + "height": 44.639984130859375 + }, { + "x0": 149.75999450683594, + "y0": 418.32000732421875, + "x1": 163.8000030517578, + "y1": 462.9599914550781, + "width": 14.040008544921875, + "height": 44.639984130859375 + }, { + "x0": 164.52000427246094, + "y0": 418.32000732421875, + "x1": 178.9199981689453, + "y1": 462.9599914550781, + "width": 14.399993896484375, + "height": 44.639984130859375 + }, { + "x0": 179.27999877929688, + "y0": 418.32000732421875, + "x1": 193.67999267578125, + "y1": 462.9599914550781, + "width": 14.399993896484375, + "height": 44.639984130859375 + }, { + "x0": 194.39999389648438, + "y0": 418.32000732421875, + "x1": 208.44000244140625, + "y1": 462.9599914550781, + "width": 14.040008544921875, + "height": 44.639984130859375 + }, { + "x0": 209.16000366210938, + "y0": 418.32000732421875, + "x1": 223.55999755859375, + "y1": 462.9599914550781, + "width": 14.399993896484375, + "height": 44.639984130859375 + }, { + "x0": 224.27999877929688, + "y0": 418.32000732421875, + "x1": 238.32000732421875, + "y1": 462.9599914550781, + "width": 14.040008544921875, + "height": 44.639984130859375 + }, { + "x0": 239.0399932861328, + "y0": 418.32000732421875, + "x1": 253.44000244140625, + "y1": 462.9599914550781, + "width": 14.400009155273438, + "height": 44.639984130859375 + }, { + "x0": 253.8000030517578, + "y0": 418.32000732421875, + "x1": 268.20001220703125, + "y1": 462.9599914550781, + "width": 14.400009155273438, + "height": 44.639984130859375 + }, { + "x0": 268.9200134277344, + "y0": 418.32000732421875, + "x1": 282.9599914550781, + "y1": 462.9599914550781, + "width": 14.03997802734375, + "height": 44.639984130859375 + }, { + "x0": 283.67999267578125, + "y0": 418.32000732421875, + "x1": 298.0799865722656, + "y1": 462.9599914550781, + "width": 14.399993896484375, + "height": 44.639984130859375 + }, { + "x0": 298.79998779296875, + "y0": 418.32000732421875, + "x1": 312.8399963378906, + "y1": 462.9599914550781, + "width": 14.040008544921875, + "height": 44.639984130859375 + }, { + "x0": 313.55999755859375, + "y0": 418.32000732421875, + "x1": 327.6000061035156, + "y1": 462.9599914550781, + "width": 14.040008544921875, + "height": 44.639984130859375 + }, { + "x0": 328.32000732421875, + "y0": 418.32000732421875, + "x1": 342.7200012207031, + "y1": 462.9599914550781, + "width": 14.399993896484375, + "height": 44.639984130859375 + }, { + "x0": 117.72000122070312, + "y0": 346.32000732421875, + "x1": 149.0399932861328, + "y1": 417.9599914550781, + "width": 31.319992065429688, + "height": 71.63998413085938 + }, { + "x0": 149.75999450683594, + "y0": 346.32000732421875, + "x1": 163.8000030517578, + "y1": 417.9599914550781, + "width": 14.040008544921875, + "height": 71.63998413085938 + }, { + "x0": 164.52000427246094, + "y0": 346.32000732421875, + "x1": 178.9199981689453, + "y1": 417.9599914550781, + "width": 14.399993896484375, + "height": 71.63998413085938 + }, { + "x0": 179.27999877929688, + "y0": 346.32000732421875, + "x1": 193.67999267578125, + "y1": 417.9599914550781, + "width": 14.399993896484375, + "height": 71.63998413085938 + }, { + "x0": 194.39999389648438, + "y0": 346.32000732421875, + "x1": 208.44000244140625, + "y1": 417.9599914550781, + "width": 14.040008544921875, + "height": 71.63998413085938 + }, { + "x0": 209.16000366210938, + "y0": 346.32000732421875, + "x1": 223.55999755859375, + "y1": 417.9599914550781, + "width": 14.399993896484375, + "height": 71.63998413085938 + }, { + "x0": 224.27999877929688, + "y0": 346.32000732421875, + "x1": 238.32000732421875, + "y1": 417.9599914550781, + "width": 14.040008544921875, + "height": 71.63998413085938 + }, { + "x0": 239.0399932861328, + "y0": 346.32000732421875, + "x1": 253.44000244140625, + "y1": 417.9599914550781, + "width": 14.400009155273438, + "height": 71.63998413085938 + }, { + "x0": 253.8000030517578, + "y0": 346.32000732421875, + "x1": 268.20001220703125, + "y1": 417.9599914550781, + "width": 14.400009155273438, + "height": 71.63998413085938 + }, { + "x0": 268.9200134277344, + "y0": 346.32000732421875, + "x1": 282.9599914550781, + "y1": 417.9599914550781, + "width": 14.03997802734375, + "height": 71.63998413085938 + }, { + "x0": 283.67999267578125, + "y0": 346.32000732421875, + "x1": 298.0799865722656, + "y1": 417.9599914550781, + "width": 14.399993896484375, + "height": 71.63998413085938 + }, { + "x0": 298.79998779296875, + "y0": 346.32000732421875, + "x1": 312.8399963378906, + "y1": 417.9599914550781, + "width": 14.040008544921875, + "height": 71.63998413085938 + }, { + "x0": 313.55999755859375, + "y0": 346.32000732421875, + "x1": 327.6000061035156, + "y1": 417.9599914550781, + "width": 14.040008544921875, + "height": 71.63998413085938 + }, { + "x0": 328.32000732421875, + "y0": 346.32000732421875, + "x1": 342.7200012207031, + "y1": 417.9599914550781, + "width": 14.399993896484375, + "height": 71.63998413085938 + }, { + "x0": 117.72000122070312, + "y0": 315.0, + "x1": 149.0399932861328, + "y1": 345.9599914550781, + "width": 31.319992065429688, + "height": 30.959991455078125 + }, { + "x0": 149.75999450683594, + "y0": 315.0, + "x1": 163.8000030517578, + "y1": 345.9599914550781, + "width": 14.040008544921875, + "height": 30.959991455078125 + }, { + "x0": 164.52000427246094, + "y0": 315.0, + "x1": 178.9199981689453, + "y1": 345.9599914550781, + "width": 14.399993896484375, + "height": 30.959991455078125 + }, { + "x0": 179.27999877929688, + "y0": 315.0, + "x1": 193.67999267578125, + "y1": 345.9599914550781, + "width": 14.399993896484375, + "height": 30.959991455078125 + }, { + "x0": 194.39999389648438, + "y0": 315.0, + "x1": 208.44000244140625, + "y1": 345.9599914550781, + "width": 14.040008544921875, + "height": 30.959991455078125 + }, { + "x0": 209.16000366210938, + "y0": 315.0, + "x1": 223.55999755859375, + "y1": 345.9599914550781, + "width": 14.399993896484375, + "height": 30.959991455078125 + }, { + "x0": 224.27999877929688, + "y0": 315.0, + "x1": 238.32000732421875, + "y1": 345.9599914550781, + "width": 14.040008544921875, + "height": 30.959991455078125 + }, { + "x0": 239.0399932861328, + "y0": 315.0, + "x1": 253.44000244140625, + "y1": 345.9599914550781, + "width": 14.400009155273438, + "height": 30.959991455078125 + }, { + "x0": 253.8000030517578, + "y0": 315.0, + "x1": 268.20001220703125, + "y1": 345.9599914550781, + "width": 14.400009155273438, + "height": 30.959991455078125 + }, { + "x0": 268.9200134277344, + "y0": 315.0, + "x1": 282.9599914550781, + "y1": 345.9599914550781, + "width": 14.03997802734375, + "height": 30.959991455078125 + }, { + "x0": 283.67999267578125, + "y0": 315.0, + "x1": 298.0799865722656, + "y1": 345.9599914550781, + "width": 14.399993896484375, + "height": 30.959991455078125 + }, { + "x0": 298.79998779296875, + "y0": 315.0, + "x1": 312.8399963378906, + "y1": 345.9599914550781, + "width": 14.040008544921875, + "height": 30.959991455078125 + }, { + "x0": 313.55999755859375, + "y0": 315.0, + "x1": 327.6000061035156, + "y1": 345.9599914550781, + "width": 14.040008544921875, + "height": 30.959991455078125 + }, { + "x0": 328.32000732421875, + "y0": 315.0, + "x1": 342.7200012207031, + "y1": 345.9599914550781, + "width": 14.399993896484375, + "height": 30.959991455078125 + }, { + "x0": 117.72000122070312, + "y0": 241.55999755859375, + "x1": 149.0399932861328, + "y1": 314.2799987792969, + "width": 31.319992065429688, + "height": 72.72000122070312 + }, { + "x0": 149.75999450683594, + "y0": 241.55999755859375, + "x1": 163.8000030517578, + "y1": 314.2799987792969, + "width": 14.040008544921875, + "height": 72.72000122070312 + }, { + "x0": 164.52000427246094, + "y0": 241.55999755859375, + "x1": 178.9199981689453, + "y1": 314.2799987792969, + "width": 14.399993896484375, + "height": 72.72000122070312 + }, { + "x0": 179.27999877929688, + "y0": 241.55999755859375, + "x1": 193.67999267578125, + "y1": 314.2799987792969, + "width": 14.399993896484375, + "height": 72.72000122070312 + }, { + "x0": 194.39999389648438, + "y0": 241.55999755859375, + "x1": 208.44000244140625, + "y1": 314.2799987792969, + "width": 14.040008544921875, + "height": 72.72000122070312 + }, { + "x0": 209.16000366210938, + "y0": 241.55999755859375, + "x1": 223.55999755859375, + "y1": 314.2799987792969, + "width": 14.399993896484375, + "height": 72.72000122070312 + }, { + "x0": 224.27999877929688, + "y0": 241.55999755859375, + "x1": 238.32000732421875, + "y1": 314.2799987792969, + "width": 14.040008544921875, + "height": 72.72000122070312 + }, { + "x0": 239.0399932861328, + "y0": 241.55999755859375, + "x1": 253.44000244140625, + "y1": 314.2799987792969, + "width": 14.400009155273438, + "height": 72.72000122070312 + }, { + "x0": 253.8000030517578, + "y0": 241.55999755859375, + "x1": 268.20001220703125, + "y1": 314.2799987792969, + "width": 14.400009155273438, + "height": 72.72000122070312 + }, { + "x0": 268.9200134277344, + "y0": 241.55999755859375, + "x1": 282.9599914550781, + "y1": 314.2799987792969, + "width": 14.03997802734375, + "height": 72.72000122070312 + }, { + "x0": 283.67999267578125, + "y0": 241.55999755859375, + "x1": 298.0799865722656, + "y1": 314.2799987792969, + "width": 14.399993896484375, + "height": 72.72000122070312 + }, { + "x0": 298.79998779296875, + "y0": 241.55999755859375, + "x1": 312.8399963378906, + "y1": 314.2799987792969, + "width": 14.040008544921875, + "height": 72.72000122070312 + }, { + "x0": 313.55999755859375, + "y0": 241.55999755859375, + "x1": 327.6000061035156, + "y1": 314.2799987792969, + "width": 14.040008544921875, + "height": 72.72000122070312 + }, { + "x0": 328.32000732421875, + "y0": 241.55999755859375, + "x1": 342.7200012207031, + "y1": 314.2799987792969, + "width": 14.399993896484375, + "height": 72.72000122070312 + }, { + "x0": 117.72000122070312, + "y0": 183.239990234375, + "x1": 149.0399932861328, + "y1": 241.20001220703125, + "width": 31.319992065429688, + "height": 57.96002197265625 + }, { + "x0": 149.75999450683594, + "y0": 183.239990234375, + "x1": 163.8000030517578, + "y1": 241.20001220703125, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 164.52000427246094, + "y0": 183.239990234375, + "x1": 178.9199981689453, + "y1": 241.20001220703125, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 179.27999877929688, + "y0": 183.239990234375, + "x1": 193.67999267578125, + "y1": 241.20001220703125, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 194.39999389648438, + "y0": 183.239990234375, + "x1": 208.44000244140625, + "y1": 241.20001220703125, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 209.16000366210938, + "y0": 183.239990234375, + "x1": 223.55999755859375, + "y1": 241.20001220703125, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 224.27999877929688, + "y0": 183.239990234375, + "x1": 238.32000732421875, + "y1": 241.20001220703125, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 239.0399932861328, + "y0": 183.239990234375, + "x1": 253.44000244140625, + "y1": 241.20001220703125, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 253.8000030517578, + "y0": 183.239990234375, + "x1": 268.20001220703125, + "y1": 241.20001220703125, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 268.9200134277344, + "y0": 183.239990234375, + "x1": 282.9599914550781, + "y1": 241.20001220703125, + "width": 14.03997802734375, + "height": 57.96002197265625 + }, { + "x0": 283.67999267578125, + "y0": 183.239990234375, + "x1": 298.0799865722656, + "y1": 241.20001220703125, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 298.79998779296875, + "y0": 183.239990234375, + "x1": 312.8399963378906, + "y1": 241.20001220703125, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 313.55999755859375, + "y0": 183.239990234375, + "x1": 327.6000061035156, + "y1": 241.20001220703125, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 328.32000732421875, + "y0": 183.239990234375, + "x1": 342.7200012207031, + "y1": 241.20001220703125, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 117.72000122070312, + "y0": 141.1199951171875, + "x1": 149.0399932861328, + "y1": 182.52001953125, + "width": 31.319992065429688, + "height": 41.4000244140625 + }, { + "x0": 149.75999450683594, + "y0": 141.1199951171875, + "x1": 163.8000030517578, + "y1": 182.52001953125, + "width": 14.040008544921875, + "height": 41.4000244140625 + }, { + "x0": 164.52000427246094, + "y0": 141.1199951171875, + "x1": 178.9199981689453, + "y1": 182.52001953125, + "width": 14.399993896484375, + "height": 41.4000244140625 + }, { + "x0": 179.27999877929688, + "y0": 141.1199951171875, + "x1": 193.67999267578125, + "y1": 182.52001953125, + "width": 14.399993896484375, + "height": 41.4000244140625 + }, { + "x0": 194.39999389648438, + "y0": 141.1199951171875, + "x1": 208.44000244140625, + "y1": 182.52001953125, + "width": 14.040008544921875, + "height": 41.4000244140625 + }, { + "x0": 209.16000366210938, + "y0": 141.1199951171875, + "x1": 223.55999755859375, + "y1": 182.52001953125, + "width": 14.399993896484375, + "height": 41.4000244140625 + }, { + "x0": 224.27999877929688, + "y0": 141.1199951171875, + "x1": 238.32000732421875, + "y1": 182.52001953125, + "width": 14.040008544921875, + "height": 41.4000244140625 + }, { + "x0": 239.0399932861328, + "y0": 141.1199951171875, + "x1": 253.44000244140625, + "y1": 182.52001953125, + "width": 14.400009155273438, + "height": 41.4000244140625 + }, { + "x0": 253.8000030517578, + "y0": 141.1199951171875, + "x1": 268.20001220703125, + "y1": 182.52001953125, + "width": 14.400009155273438, + "height": 41.4000244140625 + }, { + "x0": 268.9200134277344, + "y0": 141.1199951171875, + "x1": 282.9599914550781, + "y1": 182.52001953125, + "width": 14.03997802734375, + "height": 41.4000244140625 + }, { + "x0": 283.67999267578125, + "y0": 141.1199951171875, + "x1": 298.0799865722656, + "y1": 182.52001953125, + "width": 14.399993896484375, + "height": 41.4000244140625 + }, { + "x0": 298.79998779296875, + "y0": 141.1199951171875, + "x1": 312.8399963378906, + "y1": 182.52001953125, + "width": 14.040008544921875, + "height": 41.4000244140625 + }, { + "x0": 313.55999755859375, + "y0": 141.1199951171875, + "x1": 327.6000061035156, + "y1": 182.52001953125, + "width": 14.040008544921875, + "height": 41.4000244140625 + }, { + "x0": 328.32000732421875, + "y0": 141.1199951171875, + "x1": 342.7200012207031, + "y1": 182.52001953125, + "width": 14.399993896484375, + "height": 41.4000244140625 + }, { + "x0": 117.72000122070312, + "y0": 74.52001953125, + "x1": 149.0399932861328, + "y1": 140.760009765625, + "width": 31.319992065429688, + "height": 66.239990234375 + }, { + "x0": 149.75999450683594, + "y0": 74.52001953125, + "x1": 342.7200012207031, + "y1": 140.760009765625, + "width": 192.9600067138672, + "height": 66.239990234375 + } + ] + }, { + "pageInfo": { + "number": 130, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 117.72000122070312, + "y0": 468.7200012207031, + "x1": 133.55999755859375, + "y1": 710.280029296875, + "width": 15.839996337890625, + "height": 241.56002807617188 + }, { + "x0": 134.27999877929688, + "y0": 652.3200073242188, + "x1": 149.0399932861328, + "y1": 710.280029296875, + "width": 14.759994506835938, + "height": 57.96002197265625 + }, { + "x0": 149.75999450683594, + "y0": 652.3200073242188, + "x1": 163.8000030517578, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 164.52000427246094, + "y0": 652.3200073242188, + "x1": 178.9199981689453, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 179.27999877929688, + "y0": 652.3200073242188, + "x1": 193.67999267578125, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 194.39999389648438, + "y0": 652.3200073242188, + "x1": 208.44000244140625, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 209.16000366210938, + "y0": 652.3200073242188, + "x1": 223.55999755859375, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 224.27999877929688, + "y0": 652.3200073242188, + "x1": 238.32000732421875, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 239.0399932861328, + "y0": 652.3200073242188, + "x1": 253.44000244140625, + "y1": 710.280029296875, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 253.8000030517578, + "y0": 652.3200073242188, + "x1": 268.20001220703125, + "y1": 710.280029296875, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 268.9200134277344, + "y0": 652.3200073242188, + "x1": 282.9599914550781, + "y1": 710.280029296875, + "width": 14.03997802734375, + "height": 57.96002197265625 + }, { + "x0": 283.67999267578125, + "y0": 652.3200073242188, + "x1": 298.0799865722656, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 298.79998779296875, + "y0": 652.3200073242188, + "x1": 312.8399963378906, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 313.55999755859375, + "y0": 652.3200073242188, + "x1": 327.6000061035156, + "y1": 710.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 328.32000732421875, + "y0": 652.3200073242188, + "x1": 342.7200012207031, + "y1": 710.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 134.27999877929688, + "y0": 594.0, + "x1": 149.0399932861328, + "y1": 651.9600219726562, + "width": 14.759994506835938, + "height": 57.96002197265625 + }, { + "x0": 149.75999450683594, + "y0": 594.0, + "x1": 163.8000030517578, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 164.52000427246094, + "y0": 594.0, + "x1": 178.9199981689453, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 179.27999877929688, + "y0": 594.0, + "x1": 193.67999267578125, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 194.39999389648438, + "y0": 594.0, + "x1": 208.44000244140625, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 209.16000366210938, + "y0": 594.0, + "x1": 223.55999755859375, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 224.27999877929688, + "y0": 594.0, + "x1": 238.32000732421875, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 239.0399932861328, + "y0": 594.0, + "x1": 253.44000244140625, + "y1": 651.9600219726562, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 253.8000030517578, + "y0": 594.0, + "x1": 268.20001220703125, + "y1": 651.9600219726562, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 268.9200134277344, + "y0": 594.0, + "x1": 282.9599914550781, + "y1": 651.9600219726562, + "width": 14.03997802734375, + "height": 57.96002197265625 + }, { + "x0": 283.67999267578125, + "y0": 594.0, + "x1": 298.0799865722656, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 298.79998779296875, + "y0": 594.0, + "x1": 312.8399963378906, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 313.55999755859375, + "y0": 594.0, + "x1": 327.6000061035156, + "y1": 651.9600219726562, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 328.32000732421875, + "y0": 594.0, + "x1": 342.7200012207031, + "y1": 651.9600219726562, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 134.27999877929688, + "y0": 535.3200073242188, + "x1": 149.0399932861328, + "y1": 593.280029296875, + "width": 14.759994506835938, + "height": 57.96002197265625 + }, { + "x0": 149.75999450683594, + "y0": 535.3200073242188, + "x1": 163.8000030517578, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 164.52000427246094, + "y0": 535.3200073242188, + "x1": 178.9199981689453, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 179.27999877929688, + "y0": 535.3200073242188, + "x1": 193.67999267578125, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 194.39999389648438, + "y0": 535.3200073242188, + "x1": 208.44000244140625, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 209.16000366210938, + "y0": 535.3200073242188, + "x1": 223.55999755859375, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 224.27999877929688, + "y0": 535.3200073242188, + "x1": 238.32000732421875, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 239.0399932861328, + "y0": 535.3200073242188, + "x1": 253.44000244140625, + "y1": 593.280029296875, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 253.8000030517578, + "y0": 535.3200073242188, + "x1": 268.20001220703125, + "y1": 593.280029296875, + "width": 14.400009155273438, + "height": 57.96002197265625 + }, { + "x0": 268.9200134277344, + "y0": 535.3200073242188, + "x1": 282.9599914550781, + "y1": 593.280029296875, + "width": 14.03997802734375, + "height": 57.96002197265625 + }, { + "x0": 283.67999267578125, + "y0": 535.3200073242188, + "x1": 298.0799865722656, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 298.79998779296875, + "y0": 535.3200073242188, + "x1": 312.8399963378906, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 313.55999755859375, + "y0": 535.3200073242188, + "x1": 327.6000061035156, + "y1": 593.280029296875, + "width": 14.040008544921875, + "height": 57.96002197265625 + }, { + "x0": 328.32000732421875, + "y0": 535.3200073242188, + "x1": 342.7200012207031, + "y1": 593.280029296875, + "width": 14.399993896484375, + "height": 57.96002197265625 + }, { + "x0": 134.27999877929688, + "y0": 468.7200012207031, + "x1": 149.0399932861328, + "y1": 534.9599609375, + "width": 14.759994506835938, + "height": 66.23995971679688 + }, { + "x0": 149.75999450683594, + "y0": 468.7200012207031, + "x1": 163.8000030517578, + "y1": 534.9599609375, + "width": 14.040008544921875, + "height": 66.23995971679688 + }, { + "x0": 164.52000427246094, + "y0": 468.7200012207031, + "x1": 178.9199981689453, + "y1": 534.9599609375, + "width": 14.399993896484375, + "height": 66.23995971679688 + }, { + "x0": 179.27999877929688, + "y0": 468.7200012207031, + "x1": 193.67999267578125, + "y1": 534.9599609375, + "width": 14.399993896484375, + "height": 66.23995971679688 + }, { + "x0": 194.39999389648438, + "y0": 468.7200012207031, + "x1": 208.44000244140625, + "y1": 534.9599609375, + "width": 14.040008544921875, + "height": 66.23995971679688 + }, { + "x0": 209.16000366210938, + "y0": 468.7200012207031, + "x1": 223.55999755859375, + "y1": 534.9599609375, + "width": 14.399993896484375, + "height": 66.23995971679688 + }, { + "x0": 224.27999877929688, + "y0": 468.7200012207031, + "x1": 238.32000732421875, + "y1": 534.9599609375, + "width": 14.040008544921875, + "height": 66.23995971679688 + }, { + "x0": 239.0399932861328, + "y0": 468.7200012207031, + "x1": 253.44000244140625, + "y1": 534.9599609375, + "width": 14.400009155273438, + "height": 66.23995971679688 + }, { + "x0": 253.8000030517578, + "y0": 468.7200012207031, + "x1": 268.20001220703125, + "y1": 534.9599609375, + "width": 14.400009155273438, + "height": 66.23995971679688 + }, { + "x0": 268.9200134277344, + "y0": 468.7200012207031, + "x1": 282.9599914550781, + "y1": 534.9599609375, + "width": 14.03997802734375, + "height": 66.23995971679688 + }, { + "x0": 283.67999267578125, + "y0": 468.7200012207031, + "x1": 298.0799865722656, + "y1": 534.9599609375, + "width": 14.399993896484375, + "height": 66.23995971679688 + }, { + "x0": 298.79998779296875, + "y0": 468.7200012207031, + "x1": 312.8399963378906, + "y1": 534.9599609375, + "width": 14.040008544921875, + "height": 66.23995971679688 + }, { + "x0": 313.55999755859375, + "y0": 468.7200012207031, + "x1": 327.6000061035156, + "y1": 534.9599609375, + "width": 14.040008544921875, + "height": 66.23995971679688 + }, { + "x0": 328.32000732421875, + "y0": 468.7200012207031, + "x1": 342.7200012207031, + "y1": 534.9599609375, + "width": 14.399993896484375, + "height": 66.23995971679688 + }, { + "x0": 117.72000122070312, + "y0": 423.7200012207031, + "x1": 149.0399932861328, + "y1": 468.0, + "width": 31.319992065429688, + "height": 44.279998779296875 + }, { + "x0": 149.75999450683594, + "y0": 423.7200012207031, + "x1": 163.8000030517578, + "y1": 468.0, + "width": 14.040008544921875, + "height": 44.279998779296875 + }, { + "x0": 164.52000427246094, + "y0": 423.7200012207031, + "x1": 178.9199981689453, + "y1": 468.0, + "width": 14.399993896484375, + "height": 44.279998779296875 + }, { + "x0": 179.27999877929688, + "y0": 423.7200012207031, + "x1": 193.67999267578125, + "y1": 468.0, + "width": 14.399993896484375, + "height": 44.279998779296875 + }, { + "x0": 194.39999389648438, + "y0": 423.7200012207031, + "x1": 208.44000244140625, + "y1": 468.0, + "width": 14.040008544921875, + "height": 44.279998779296875 + }, { + "x0": 209.16000366210938, + "y0": 423.7200012207031, + "x1": 223.55999755859375, + "y1": 468.0, + "width": 14.399993896484375, + "height": 44.279998779296875 + }, { + "x0": 224.27999877929688, + "y0": 423.7200012207031, + "x1": 238.32000732421875, + "y1": 468.0, + "width": 14.040008544921875, + "height": 44.279998779296875 + }, { + "x0": 239.0399932861328, + "y0": 423.7200012207031, + "x1": 253.44000244140625, + "y1": 468.0, + "width": 14.400009155273438, + "height": 44.279998779296875 + }, { + "x0": 253.8000030517578, + "y0": 423.7200012207031, + "x1": 268.20001220703125, + "y1": 468.0, + "width": 14.400009155273438, + "height": 44.279998779296875 + }, { + "x0": 268.9200134277344, + "y0": 423.7200012207031, + "x1": 282.9599914550781, + "y1": 468.0, + "width": 14.03997802734375, + "height": 44.279998779296875 + }, { + "x0": 283.67999267578125, + "y0": 423.7200012207031, + "x1": 298.0799865722656, + "y1": 468.0, + "width": 14.399993896484375, + "height": 44.279998779296875 + }, { + "x0": 298.79998779296875, + "y0": 423.7200012207031, + "x1": 312.8399963378906, + "y1": 468.0, + "width": 14.040008544921875, + "height": 44.279998779296875 + }, { + "x0": 313.55999755859375, + "y0": 423.7200012207031, + "x1": 327.6000061035156, + "y1": 468.0, + "width": 14.040008544921875, + "height": 44.279998779296875 + }, { + "x0": 328.32000732421875, + "y0": 423.7200012207031, + "x1": 342.7200012207031, + "y1": 468.0, + "width": 14.399993896484375, + "height": 44.279998779296875 + }, { + "x0": 117.72000122070312, + "y0": 351.7200012207031, + "x1": 149.0399932861328, + "y1": 423.0, + "width": 31.319992065429688, + "height": 71.27999877929688 + }, { + "x0": 149.75999450683594, + "y0": 351.7200012207031, + "x1": 163.8000030517578, + "y1": 423.0, + "width": 14.040008544921875, + "height": 71.27999877929688 + }, { + "x0": 164.52000427246094, + "y0": 351.7200012207031, + "x1": 178.9199981689453, + "y1": 423.0, + "width": 14.399993896484375, + "height": 71.27999877929688 + }, { + "x0": 179.27999877929688, + "y0": 351.7200012207031, + "x1": 193.67999267578125, + "y1": 423.0, + "width": 14.399993896484375, + "height": 71.27999877929688 + }, { + "x0": 194.39999389648438, + "y0": 351.7200012207031, + "x1": 208.44000244140625, + "y1": 423.0, + "width": 14.040008544921875, + "height": 71.27999877929688 + }, { + "x0": 209.16000366210938, + "y0": 351.7200012207031, + "x1": 223.55999755859375, + "y1": 423.0, + "width": 14.399993896484375, + "height": 71.27999877929688 + }, { + "x0": 224.27999877929688, + "y0": 351.7200012207031, + "x1": 238.32000732421875, + "y1": 423.0, + "width": 14.040008544921875, + "height": 71.27999877929688 + }, { + "x0": 239.0399932861328, + "y0": 351.7200012207031, + "x1": 253.44000244140625, + "y1": 423.0, + "width": 14.400009155273438, + "height": 71.27999877929688 + }, { + "x0": 253.8000030517578, + "y0": 351.7200012207031, + "x1": 268.20001220703125, + "y1": 423.0, + "width": 14.400009155273438, + "height": 71.27999877929688 + }, { + "x0": 268.9200134277344, + "y0": 351.7200012207031, + "x1": 282.9599914550781, + "y1": 423.0, + "width": 14.03997802734375, + "height": 71.27999877929688 + }, { + "x0": 283.67999267578125, + "y0": 351.7200012207031, + "x1": 298.0799865722656, + "y1": 423.0, + "width": 14.399993896484375, + "height": 71.27999877929688 + }, { + "x0": 298.79998779296875, + "y0": 351.7200012207031, + "x1": 312.8399963378906, + "y1": 423.0, + "width": 14.040008544921875, + "height": 71.27999877929688 + }, { + "x0": 313.55999755859375, + "y0": 351.7200012207031, + "x1": 327.6000061035156, + "y1": 423.0, + "width": 14.040008544921875, + "height": 71.27999877929688 + }, { + "x0": 328.32000732421875, + "y0": 351.7200012207031, + "x1": 342.7200012207031, + "y1": 423.0, + "width": 14.399993896484375, + "height": 71.27999877929688 + }, { + "x0": 117.72000122070312, + "y0": 325.0799865722656, + "x1": 149.0399932861328, + "y1": 351.0, + "width": 31.319992065429688, + "height": 25.920013427734375 + }, { + "x0": 149.75999450683594, + "y0": 325.0799865722656, + "x1": 163.8000030517578, + "y1": 351.0, + "width": 14.040008544921875, + "height": 25.920013427734375 + }, { + "x0": 164.52000427246094, + "y0": 325.0799865722656, + "x1": 178.9199981689453, + "y1": 351.0, + "width": 14.399993896484375, + "height": 25.920013427734375 + }, { + "x0": 179.27999877929688, + "y0": 325.0799865722656, + "x1": 193.67999267578125, + "y1": 351.0, + "width": 14.399993896484375, + "height": 25.920013427734375 + }, { + "x0": 194.39999389648438, + "y0": 325.0799865722656, + "x1": 208.44000244140625, + "y1": 351.0, + "width": 14.040008544921875, + "height": 25.920013427734375 + }, { + "x0": 209.16000366210938, + "y0": 325.0799865722656, + "x1": 223.55999755859375, + "y1": 351.0, + "width": 14.399993896484375, + "height": 25.920013427734375 + }, { + "x0": 224.27999877929688, + "y0": 325.0799865722656, + "x1": 238.32000732421875, + "y1": 351.0, + "width": 14.040008544921875, + "height": 25.920013427734375 + }, { + "x0": 239.0399932861328, + "y0": 325.0799865722656, + "x1": 253.44000244140625, + "y1": 351.0, + "width": 14.400009155273438, + "height": 25.920013427734375 + }, { + "x0": 253.8000030517578, + "y0": 325.0799865722656, + "x1": 268.20001220703125, + "y1": 351.0, + "width": 14.400009155273438, + "height": 25.920013427734375 + }, { + "x0": 268.9200134277344, + "y0": 325.0799865722656, + "x1": 282.9599914550781, + "y1": 351.0, + "width": 14.03997802734375, + "height": 25.920013427734375 + }, { + "x0": 283.67999267578125, + "y0": 325.0799865722656, + "x1": 298.0799865722656, + "y1": 351.0, + "width": 14.399993896484375, + "height": 25.920013427734375 + }, { + "x0": 298.79998779296875, + "y0": 325.0799865722656, + "x1": 312.8399963378906, + "y1": 351.0, + "width": 14.040008544921875, + "height": 25.920013427734375 + }, { + "x0": 313.55999755859375, + "y0": 325.0799865722656, + "x1": 327.6000061035156, + "y1": 351.0, + "width": 14.040008544921875, + "height": 25.920013427734375 + }, { + "x0": 328.32000732421875, + "y0": 325.0799865722656, + "x1": 342.7200012207031, + "y1": 351.0, + "width": 14.399993896484375, + "height": 25.920013427734375 + }, { + "x0": 117.72000122070312, + "y0": 247.32000732421875, + "x1": 149.0399932861328, + "y1": 324.3599853515625, + "width": 31.319992065429688, + "height": 77.03997802734375 + }, { + "x0": 149.75999450683594, + "y0": 247.32000732421875, + "x1": 163.8000030517578, + "y1": 324.3599853515625, + "width": 14.040008544921875, + "height": 77.03997802734375 + }, { + "x0": 164.52000427246094, + "y0": 247.32000732421875, + "x1": 178.9199981689453, + "y1": 324.3599853515625, + "width": 14.399993896484375, + "height": 77.03997802734375 + }, { + "x0": 179.27999877929688, + "y0": 247.32000732421875, + "x1": 193.67999267578125, + "y1": 324.3599853515625, + "width": 14.399993896484375, + "height": 77.03997802734375 + }, { + "x0": 194.39999389648438, + "y0": 247.32000732421875, + "x1": 208.44000244140625, + "y1": 324.3599853515625, + "width": 14.040008544921875, + "height": 77.03997802734375 + }, { + "x0": 209.16000366210938, + "y0": 247.32000732421875, + "x1": 223.55999755859375, + "y1": 324.3599853515625, + "width": 14.399993896484375, + "height": 77.03997802734375 + }, { + "x0": 224.27999877929688, + "y0": 247.32000732421875, + "x1": 238.32000732421875, + "y1": 324.3599853515625, + "width": 14.040008544921875, + "height": 77.03997802734375 + }, { + "x0": 239.0399932861328, + "y0": 247.32000732421875, + "x1": 253.44000244140625, + "y1": 324.3599853515625, + "width": 14.400009155273438, + "height": 77.03997802734375 + }, { + "x0": 253.8000030517578, + "y0": 247.32000732421875, + "x1": 268.20001220703125, + "y1": 324.3599853515625, + "width": 14.400009155273438, + "height": 77.03997802734375 + }, { + "x0": 268.9200134277344, + "y0": 247.32000732421875, + "x1": 282.9599914550781, + "y1": 324.3599853515625, + "width": 14.03997802734375, + "height": 77.03997802734375 + }, { + "x0": 283.67999267578125, + "y0": 247.32000732421875, + "x1": 298.0799865722656, + "y1": 324.3599853515625, + "width": 14.399993896484375, + "height": 77.03997802734375 + }, { + "x0": 298.79998779296875, + "y0": 247.32000732421875, + "x1": 312.8399963378906, + "y1": 324.3599853515625, + "width": 14.040008544921875, + "height": 77.03997802734375 + }, { + "x0": 313.55999755859375, + "y0": 247.32000732421875, + "x1": 327.6000061035156, + "y1": 324.3599853515625, + "width": 14.040008544921875, + "height": 77.03997802734375 + }, { + "x0": 328.32000732421875, + "y0": 247.32000732421875, + "x1": 342.7200012207031, + "y1": 324.3599853515625, + "width": 14.399993896484375, + "height": 77.03997802734375 + }, { + "x0": 117.72000122070312, + "y0": 186.47998046875, + "x1": 149.0399932861328, + "y1": 246.5999755859375, + "width": 31.319992065429688, + "height": 60.1199951171875 + }, { + "x0": 149.75999450683594, + "y0": 186.47998046875, + "x1": 163.8000030517578, + "y1": 246.5999755859375, + "width": 14.040008544921875, + "height": 60.1199951171875 + }, { + "x0": 164.52000427246094, + "y0": 186.47998046875, + "x1": 178.9199981689453, + "y1": 246.5999755859375, + "width": 14.399993896484375, + "height": 60.1199951171875 + }, { + "x0": 179.27999877929688, + "y0": 186.47998046875, + "x1": 193.67999267578125, + "y1": 246.5999755859375, + "width": 14.399993896484375, + "height": 60.1199951171875 + }, { + "x0": 194.39999389648438, + "y0": 186.47998046875, + "x1": 208.44000244140625, + "y1": 246.5999755859375, + "width": 14.040008544921875, + "height": 60.1199951171875 + }, { + "x0": 209.16000366210938, + "y0": 186.47998046875, + "x1": 223.55999755859375, + "y1": 246.5999755859375, + "width": 14.399993896484375, + "height": 60.1199951171875 + }, { + "x0": 224.27999877929688, + "y0": 186.47998046875, + "x1": 238.32000732421875, + "y1": 246.5999755859375, + "width": 14.040008544921875, + "height": 60.1199951171875 + }, { + "x0": 239.0399932861328, + "y0": 186.47998046875, + "x1": 253.44000244140625, + "y1": 246.5999755859375, + "width": 14.400009155273438, + "height": 60.1199951171875 + }, { + "x0": 253.8000030517578, + "y0": 186.47998046875, + "x1": 268.20001220703125, + "y1": 246.5999755859375, + "width": 14.400009155273438, + "height": 60.1199951171875 + }, { + "x0": 268.9200134277344, + "y0": 186.47998046875, + "x1": 282.9599914550781, + "y1": 246.5999755859375, + "width": 14.03997802734375, + "height": 60.1199951171875 + }, { + "x0": 283.67999267578125, + "y0": 186.47998046875, + "x1": 298.0799865722656, + "y1": 246.5999755859375, + "width": 14.399993896484375, + "height": 60.1199951171875 + }, { + "x0": 298.79998779296875, + "y0": 186.47998046875, + "x1": 312.8399963378906, + "y1": 246.5999755859375, + "width": 14.040008544921875, + "height": 60.1199951171875 + }, { + "x0": 313.55999755859375, + "y0": 186.47998046875, + "x1": 327.6000061035156, + "y1": 246.5999755859375, + "width": 14.040008544921875, + "height": 60.1199951171875 + }, { + "x0": 328.32000732421875, + "y0": 186.47998046875, + "x1": 342.7200012207031, + "y1": 246.5999755859375, + "width": 14.399993896484375, + "height": 60.1199951171875 + }, { + "x0": 117.72000122070312, + "y0": 144.0, + "x1": 149.0399932861328, + "y1": 185.760009765625, + "width": 31.319992065429688, + "height": 41.760009765625 + }, { + "x0": 149.75999450683594, + "y0": 144.0, + "x1": 163.8000030517578, + "y1": 185.760009765625, + "width": 14.040008544921875, + "height": 41.760009765625 + }, { + "x0": 164.52000427246094, + "y0": 144.0, + "x1": 178.9199981689453, + "y1": 185.760009765625, + "width": 14.399993896484375, + "height": 41.760009765625 + }, { + "x0": 179.27999877929688, + "y0": 144.0, + "x1": 193.67999267578125, + "y1": 185.760009765625, + "width": 14.399993896484375, + "height": 41.760009765625 + }, { + "x0": 194.39999389648438, + "y0": 144.0, + "x1": 208.44000244140625, + "y1": 185.760009765625, + "width": 14.040008544921875, + "height": 41.760009765625 + }, { + "x0": 209.16000366210938, + "y0": 144.0, + "x1": 223.55999755859375, + "y1": 185.760009765625, + "width": 14.399993896484375, + "height": 41.760009765625 + }, { + "x0": 224.27999877929688, + "y0": 144.0, + "x1": 238.32000732421875, + "y1": 185.760009765625, + "width": 14.040008544921875, + "height": 41.760009765625 + }, { + "x0": 239.0399932861328, + "y0": 144.0, + "x1": 253.44000244140625, + "y1": 185.760009765625, + "width": 14.400009155273438, + "height": 41.760009765625 + }, { + "x0": 253.8000030517578, + "y0": 144.0, + "x1": 268.20001220703125, + "y1": 185.760009765625, + "width": 14.400009155273438, + "height": 41.760009765625 + }, { + "x0": 268.9200134277344, + "y0": 144.0, + "x1": 282.9599914550781, + "y1": 185.760009765625, + "width": 14.03997802734375, + "height": 41.760009765625 + }, { + "x0": 283.67999267578125, + "y0": 144.0, + "x1": 298.0799865722656, + "y1": 185.760009765625, + "width": 14.399993896484375, + "height": 41.760009765625 + }, { + "x0": 298.79998779296875, + "y0": 144.0, + "x1": 312.8399963378906, + "y1": 185.760009765625, + "width": 14.040008544921875, + "height": 41.760009765625 + }, { + "x0": 313.55999755859375, + "y0": 144.0, + "x1": 327.6000061035156, + "y1": 185.760009765625, + "width": 14.040008544921875, + "height": 41.760009765625 + }, { + "x0": 328.32000732421875, + "y0": 144.0, + "x1": 342.7200012207031, + "y1": 185.760009765625, + "width": 14.399993896484375, + "height": 41.760009765625 + }, { + "x0": 117.72000122070312, + "y0": 71.280029296875, + "x1": 149.0399932861328, + "y1": 143.280029296875, + "width": 31.319992065429688, + "height": 72.0 + }, { + "x0": 149.75999450683594, + "y0": 71.280029296875, + "x1": 342.7200012207031, + "y1": 143.280029296875, + "width": 192.9600067138672, + "height": 72.0 + } + ] + }, { + "pageInfo": { + "number": 131, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 470.1600036621094, + "y0": 478.44000244140625, + "x1": 712.4400024414062, + "y1": 494.2799987792969, + "width": 242.27999877929688, + "height": 15.839996337890625 + }, { + "x0": 654.47998046875, + "y0": 462.96002197265625, + "x1": 712.4400024414062, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 654.47998046875, + "y0": 448.20001220703125, + "x1": 712.4400024414062, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 654.47998046875, + "y0": 433.08001708984375, + "x1": 712.4400024414062, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 654.47998046875, + "y0": 418.32000732421875, + "x1": 712.4400024414062, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 654.47998046875, + "y0": 403.55999755859375, + "x1": 712.4400024414062, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 654.47998046875, + "y0": 388.44000244140625, + "x1": 712.4400024414062, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 654.47998046875, + "y0": 373.67999267578125, + "x1": 712.4400024414062, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 654.47998046875, + "y0": 358.55999755859375, + "x1": 712.4400024414062, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 654.47998046875, + "y0": 343.79998779296875, + "x1": 712.4400024414062, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 654.47998046875, + "y0": 329.0400085449219, + "x1": 712.4400024414062, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 654.47998046875, + "y0": 313.9200134277344, + "x1": 712.4400024414062, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 654.47998046875, + "y0": 299.1600036621094, + "x1": 712.4400024414062, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 654.47998046875, + "y0": 284.0400085449219, + "x1": 712.4400024414062, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 654.47998046875, + "y0": 269.280029296875, + "x1": 712.4400024414062, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 596.1600341796875, + "y0": 462.96002197265625, + "x1": 653.760009765625, + "y1": 477.7200012207031, + "width": 57.5999755859375, + "height": 14.759979248046875 + }, { + "x0": 596.1600341796875, + "y0": 448.20001220703125, + "x1": 653.760009765625, + "y1": 462.239990234375, + "width": 57.5999755859375, + "height": 14.03997802734375 + }, { + "x0": 596.1600341796875, + "y0": 433.08001708984375, + "x1": 653.760009765625, + "y1": 447.47998046875, + "width": 57.5999755859375, + "height": 14.39996337890625 + }, { + "x0": 596.1600341796875, + "y0": 418.32000732421875, + "x1": 653.760009765625, + "y1": 432.7200012207031, + "width": 57.5999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.1600341796875, + "y0": 403.55999755859375, + "x1": 653.760009765625, + "y1": 417.6000061035156, + "width": 57.5999755859375, + "height": 14.040008544921875 + }, { + "x0": 596.1600341796875, + "y0": 388.44000244140625, + "x1": 653.760009765625, + "y1": 402.8399963378906, + "width": 57.5999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.1600341796875, + "y0": 373.67999267578125, + "x1": 653.760009765625, + "y1": 387.7200012207031, + "width": 57.5999755859375, + "height": 14.040008544921875 + }, { + "x0": 596.1600341796875, + "y0": 358.55999755859375, + "x1": 653.760009765625, + "y1": 372.96002197265625, + "width": 57.5999755859375, + "height": 14.4000244140625 + }, { + "x0": 596.1600341796875, + "y0": 343.79998779296875, + "x1": 653.760009765625, + "y1": 358.20001220703125, + "width": 57.5999755859375, + "height": 14.4000244140625 + }, { + "x0": 596.1600341796875, + "y0": 329.0400085449219, + "x1": 653.760009765625, + "y1": 343.0799865722656, + "width": 57.5999755859375, + "height": 14.03997802734375 + }, { + "x0": 596.1600341796875, + "y0": 313.9200134277344, + "x1": 653.760009765625, + "y1": 328.32000732421875, + "width": 57.5999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.1600341796875, + "y0": 299.1600036621094, + "x1": 653.760009765625, + "y1": 313.20001220703125, + "width": 57.5999755859375, + "height": 14.040008544921875 + }, { + "x0": 596.1600341796875, + "y0": 284.0400085449219, + "x1": 653.760009765625, + "y1": 298.44000244140625, + "width": 57.5999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.1600341796875, + "y0": 269.280029296875, + "x1": 653.760009765625, + "y1": 283.67999267578125, + "width": 57.5999755859375, + "height": 14.39996337890625 + }, { + "x0": 537.47998046875, + "y0": 462.96002197265625, + "x1": 595.4400024414062, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 537.47998046875, + "y0": 448.20001220703125, + "x1": 595.4400024414062, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 537.47998046875, + "y0": 433.08001708984375, + "x1": 595.4400024414062, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 537.47998046875, + "y0": 418.32000732421875, + "x1": 595.4400024414062, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 537.47998046875, + "y0": 403.55999755859375, + "x1": 595.4400024414062, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 537.47998046875, + "y0": 388.44000244140625, + "x1": 595.4400024414062, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 537.47998046875, + "y0": 373.67999267578125, + "x1": 595.4400024414062, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 537.47998046875, + "y0": 358.55999755859375, + "x1": 595.4400024414062, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 537.47998046875, + "y0": 343.79998779296875, + "x1": 595.4400024414062, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 537.47998046875, + "y0": 329.0400085449219, + "x1": 595.4400024414062, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 537.47998046875, + "y0": 313.9200134277344, + "x1": 595.4400024414062, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 537.47998046875, + "y0": 299.1600036621094, + "x1": 595.4400024414062, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 537.47998046875, + "y0": 284.0400085449219, + "x1": 595.4400024414062, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 537.47998046875, + "y0": 269.280029296875, + "x1": 595.4400024414062, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 470.1600036621094, + "y0": 462.96002197265625, + "x1": 536.760009765625, + "y1": 477.7200012207031, + "width": 66.60000610351562, + "height": 14.759979248046875 + }, { + "x0": 470.1600036621094, + "y0": 448.20001220703125, + "x1": 536.760009765625, + "y1": 462.239990234375, + "width": 66.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 470.1600036621094, + "y0": 433.08001708984375, + "x1": 536.760009765625, + "y1": 447.47998046875, + "width": 66.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 470.1600036621094, + "y0": 418.32000732421875, + "x1": 536.760009765625, + "y1": 432.7200012207031, + "width": 66.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 470.1600036621094, + "y0": 403.55999755859375, + "x1": 536.760009765625, + "y1": 417.6000061035156, + "width": 66.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 470.1600036621094, + "y0": 388.44000244140625, + "x1": 536.760009765625, + "y1": 402.8399963378906, + "width": 66.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 470.1600036621094, + "y0": 373.67999267578125, + "x1": 536.760009765625, + "y1": 387.7200012207031, + "width": 66.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 470.1600036621094, + "y0": 358.55999755859375, + "x1": 536.760009765625, + "y1": 372.96002197265625, + "width": 66.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 470.1600036621094, + "y0": 343.79998779296875, + "x1": 536.760009765625, + "y1": 358.20001220703125, + "width": 66.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 470.1600036621094, + "y0": 329.0400085449219, + "x1": 536.760009765625, + "y1": 343.0799865722656, + "width": 66.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 470.1600036621094, + "y0": 313.9200134277344, + "x1": 536.760009765625, + "y1": 328.32000732421875, + "width": 66.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 470.1600036621094, + "y0": 299.1600036621094, + "x1": 536.760009765625, + "y1": 313.20001220703125, + "width": 66.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 470.1600036621094, + "y0": 284.0400085449219, + "x1": 536.760009765625, + "y1": 298.44000244140625, + "width": 66.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 470.1600036621094, + "y0": 269.280029296875, + "x1": 536.760009765625, + "y1": 283.67999267578125, + "width": 66.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 429.4800109863281, + "y0": 462.96002197265625, + "x1": 469.44000244140625, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 429.4800109863281, + "y0": 448.20001220703125, + "x1": 469.44000244140625, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 429.4800109863281, + "y0": 433.08001708984375, + "x1": 469.44000244140625, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 429.4800109863281, + "y0": 418.32000732421875, + "x1": 469.44000244140625, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 429.4800109863281, + "y0": 403.55999755859375, + "x1": 469.44000244140625, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 429.4800109863281, + "y0": 388.44000244140625, + "x1": 469.44000244140625, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 429.4800109863281, + "y0": 373.67999267578125, + "x1": 469.44000244140625, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 429.4800109863281, + "y0": 358.55999755859375, + "x1": 469.44000244140625, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 429.4800109863281, + "y0": 343.79998779296875, + "x1": 469.44000244140625, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 429.4800109863281, + "y0": 329.0400085449219, + "x1": 469.44000244140625, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 429.4800109863281, + "y0": 313.9200134277344, + "x1": 469.44000244140625, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 429.4800109863281, + "y0": 299.1600036621094, + "x1": 469.44000244140625, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 429.4800109863281, + "y0": 284.0400085449219, + "x1": 469.44000244140625, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 429.4800109863281, + "y0": 269.280029296875, + "x1": 469.44000244140625, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 356.760009765625, + "y0": 462.96002197265625, + "x1": 428.760009765625, + "y1": 494.2799987792969, + "width": 72.0, + "height": 31.319976806640625 + }, { + "x0": 356.760009765625, + "y0": 448.20001220703125, + "x1": 428.760009765625, + "y1": 462.239990234375, + "width": 72.0, + "height": 14.03997802734375 + }, { + "x0": 356.760009765625, + "y0": 433.08001708984375, + "x1": 428.760009765625, + "y1": 447.47998046875, + "width": 72.0, + "height": 14.39996337890625 + }, { + "x0": 356.760009765625, + "y0": 418.32000732421875, + "x1": 428.760009765625, + "y1": 432.7200012207031, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 356.760009765625, + "y0": 403.55999755859375, + "x1": 428.760009765625, + "y1": 417.6000061035156, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 356.760009765625, + "y0": 388.44000244140625, + "x1": 428.760009765625, + "y1": 402.8399963378906, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 356.760009765625, + "y0": 373.67999267578125, + "x1": 428.760009765625, + "y1": 387.7200012207031, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 356.760009765625, + "y0": 358.55999755859375, + "x1": 428.760009765625, + "y1": 372.96002197265625, + "width": 72.0, + "height": 14.4000244140625 + }, { + "x0": 356.760009765625, + "y0": 343.79998779296875, + "x1": 428.760009765625, + "y1": 358.20001220703125, + "width": 72.0, + "height": 14.4000244140625 + }, { + "x0": 356.760009765625, + "y0": 329.0400085449219, + "x1": 428.760009765625, + "y1": 343.0799865722656, + "width": 72.0, + "height": 14.03997802734375 + }, { + "x0": 356.760009765625, + "y0": 313.9200134277344, + "x1": 428.760009765625, + "y1": 328.32000732421875, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 356.760009765625, + "y0": 299.1600036621094, + "x1": 428.760009765625, + "y1": 313.20001220703125, + "width": 72.0, + "height": 14.040008544921875 + }, { + "x0": 356.760009765625, + "y0": 284.0400085449219, + "x1": 428.760009765625, + "y1": 298.44000244140625, + "width": 72.0, + "height": 14.399993896484375 + }, { + "x0": 356.760009765625, + "y0": 269.280029296875, + "x1": 428.760009765625, + "y1": 283.67999267578125, + "width": 72.0, + "height": 14.39996337890625 + }, { + "x0": 326.1600036621094, + "y0": 462.96002197265625, + "x1": 356.0400085449219, + "y1": 494.2799987792969, + "width": 29.8800048828125, + "height": 31.319976806640625 + }, { + "x0": 326.1600036621094, + "y0": 448.20001220703125, + "x1": 356.0400085449219, + "y1": 462.239990234375, + "width": 29.8800048828125, + "height": 14.03997802734375 + }, { + "x0": 326.1600036621094, + "y0": 433.08001708984375, + "x1": 356.0400085449219, + "y1": 447.47998046875, + "width": 29.8800048828125, + "height": 14.39996337890625 + }, { + "x0": 326.1600036621094, + "y0": 418.32000732421875, + "x1": 356.0400085449219, + "y1": 432.7200012207031, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.1600036621094, + "y0": 403.55999755859375, + "x1": 356.0400085449219, + "y1": 417.6000061035156, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 326.1600036621094, + "y0": 388.44000244140625, + "x1": 356.0400085449219, + "y1": 402.8399963378906, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.1600036621094, + "y0": 373.67999267578125, + "x1": 356.0400085449219, + "y1": 387.7200012207031, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 326.1600036621094, + "y0": 358.55999755859375, + "x1": 356.0400085449219, + "y1": 372.96002197265625, + "width": 29.8800048828125, + "height": 14.4000244140625 + }, { + "x0": 326.1600036621094, + "y0": 343.79998779296875, + "x1": 356.0400085449219, + "y1": 358.20001220703125, + "width": 29.8800048828125, + "height": 14.4000244140625 + }, { + "x0": 326.1600036621094, + "y0": 329.0400085449219, + "x1": 356.0400085449219, + "y1": 343.0799865722656, + "width": 29.8800048828125, + "height": 14.03997802734375 + }, { + "x0": 326.1600036621094, + "y0": 313.9200134277344, + "x1": 356.0400085449219, + "y1": 328.32000732421875, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.1600036621094, + "y0": 299.1600036621094, + "x1": 356.0400085449219, + "y1": 313.20001220703125, + "width": 29.8800048828125, + "height": 14.040008544921875 + }, { + "x0": 326.1600036621094, + "y0": 284.0400085449219, + "x1": 356.0400085449219, + "y1": 298.44000244140625, + "width": 29.8800048828125, + "height": 14.399993896484375 + }, { + "x0": 326.1600036621094, + "y0": 269.280029296875, + "x1": 356.0400085449219, + "y1": 283.67999267578125, + "width": 29.8800048828125, + "height": 14.39996337890625 + }, { + "x0": 249.47998046875, + "y0": 462.96002197265625, + "x1": 325.44000244140625, + "y1": 494.2799987792969, + "width": 75.96002197265625, + "height": 31.319976806640625 + }, { + "x0": 249.47998046875, + "y0": 448.20001220703125, + "x1": 325.44000244140625, + "y1": 462.239990234375, + "width": 75.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 249.47998046875, + "y0": 433.08001708984375, + "x1": 325.44000244140625, + "y1": 447.47998046875, + "width": 75.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 249.47998046875, + "y0": 418.32000732421875, + "x1": 325.44000244140625, + "y1": 432.7200012207031, + "width": 75.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 249.47998046875, + "y0": 403.55999755859375, + "x1": 325.44000244140625, + "y1": 417.6000061035156, + "width": 75.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 249.47998046875, + "y0": 388.44000244140625, + "x1": 325.44000244140625, + "y1": 402.8399963378906, + "width": 75.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 249.47998046875, + "y0": 373.67999267578125, + "x1": 325.44000244140625, + "y1": 387.7200012207031, + "width": 75.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 249.47998046875, + "y0": 358.55999755859375, + "x1": 325.44000244140625, + "y1": 372.96002197265625, + "width": 75.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 249.47998046875, + "y0": 343.79998779296875, + "x1": 325.44000244140625, + "y1": 358.20001220703125, + "width": 75.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 249.47998046875, + "y0": 329.0400085449219, + "x1": 325.44000244140625, + "y1": 343.0799865722656, + "width": 75.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 249.47998046875, + "y0": 313.9200134277344, + "x1": 325.44000244140625, + "y1": 328.32000732421875, + "width": 75.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 249.47998046875, + "y0": 299.1600036621094, + "x1": 325.44000244140625, + "y1": 313.20001220703125, + "width": 75.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 249.47998046875, + "y0": 284.0400085449219, + "x1": 325.44000244140625, + "y1": 298.44000244140625, + "width": 75.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 249.47998046875, + "y0": 269.280029296875, + "x1": 325.44000244140625, + "y1": 283.67999267578125, + "width": 75.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 191.15997314453125, + "y0": 462.96002197265625, + "x1": 248.760009765625, + "y1": 494.2799987792969, + "width": 57.60003662109375, + "height": 31.319976806640625 + }, { + "x0": 191.15997314453125, + "y0": 448.20001220703125, + "x1": 248.760009765625, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 191.15997314453125, + "y0": 433.08001708984375, + "x1": 248.760009765625, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 191.15997314453125, + "y0": 418.32000732421875, + "x1": 248.760009765625, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 403.55999755859375, + "x1": 248.760009765625, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 191.15997314453125, + "y0": 388.44000244140625, + "x1": 248.760009765625, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 373.67999267578125, + "x1": 248.760009765625, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 191.15997314453125, + "y0": 358.55999755859375, + "x1": 248.760009765625, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 191.15997314453125, + "y0": 343.79998779296875, + "x1": 248.760009765625, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 191.15997314453125, + "y0": 329.0400085449219, + "x1": 248.760009765625, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 191.15997314453125, + "y0": 313.9200134277344, + "x1": 248.760009765625, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 299.1600036621094, + "x1": 248.760009765625, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 191.15997314453125, + "y0": 284.0400085449219, + "x1": 248.760009765625, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 191.15997314453125, + "y0": 269.280029296875, + "x1": 248.760009765625, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 148.67999267578125, + "y0": 462.96002197265625, + "x1": 190.44000244140625, + "y1": 494.2799987792969, + "width": 41.760009765625, + "height": 31.319976806640625 + }, { + "x0": 148.67999267578125, + "y0": 448.20001220703125, + "x1": 190.44000244140625, + "y1": 462.239990234375, + "width": 41.760009765625, + "height": 14.03997802734375 + }, { + "x0": 148.67999267578125, + "y0": 433.08001708984375, + "x1": 190.44000244140625, + "y1": 447.47998046875, + "width": 41.760009765625, + "height": 14.39996337890625 + }, { + "x0": 148.67999267578125, + "y0": 418.32000732421875, + "x1": 190.44000244140625, + "y1": 432.7200012207031, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 403.55999755859375, + "x1": 190.44000244140625, + "y1": 417.6000061035156, + "width": 41.760009765625, + "height": 14.040008544921875 + }, { + "x0": 148.67999267578125, + "y0": 388.44000244140625, + "x1": 190.44000244140625, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 373.67999267578125, + "x1": 190.44000244140625, + "y1": 387.7200012207031, + "width": 41.760009765625, + "height": 14.040008544921875 + }, { + "x0": 148.67999267578125, + "y0": 358.55999755859375, + "x1": 190.44000244140625, + "y1": 372.96002197265625, + "width": 41.760009765625, + "height": 14.4000244140625 + }, { + "x0": 148.67999267578125, + "y0": 343.79998779296875, + "x1": 190.44000244140625, + "y1": 358.20001220703125, + "width": 41.760009765625, + "height": 14.4000244140625 + }, { + "x0": 148.67999267578125, + "y0": 329.0400085449219, + "x1": 190.44000244140625, + "y1": 343.0799865722656, + "width": 41.760009765625, + "height": 14.03997802734375 + }, { + "x0": 148.67999267578125, + "y0": 313.9200134277344, + "x1": 190.44000244140625, + "y1": 328.32000732421875, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 299.1600036621094, + "x1": 190.44000244140625, + "y1": 313.20001220703125, + "width": 41.760009765625, + "height": 14.040008544921875 + }, { + "x0": 148.67999267578125, + "y0": 284.0400085449219, + "x1": 190.44000244140625, + "y1": 298.44000244140625, + "width": 41.760009765625, + "height": 14.399993896484375 + }, { + "x0": 148.67999267578125, + "y0": 269.280029296875, + "x1": 190.44000244140625, + "y1": 283.67999267578125, + "width": 41.760009765625, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 147.96002197265625, + "y1": 494.2799987792969, + "width": 76.67999267578125, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 147.96002197265625, + "y1": 462.239990234375, + "width": 76.67999267578125, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 132, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 472.67999267578125, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 242.280029296875, + "height": 15.839996337890625 + }, { + "x0": 658.7999877929688, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 56.1600341796875, + "height": 14.759979248046875 + }, { + "x0": 658.7999877929688, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 56.1600341796875, + "height": 14.03997802734375 + }, { + "x0": 658.7999877929688, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 56.1600341796875, + "height": 14.39996337890625 + }, { + "x0": 658.7999877929688, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 56.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 658.7999877929688, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 56.1600341796875, + "height": 14.040008544921875 + }, { + "x0": 658.7999877929688, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 56.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 658.7999877929688, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 56.1600341796875, + "height": 14.040008544921875 + }, { + "x0": 658.7999877929688, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 56.1600341796875, + "height": 14.4000244140625 + }, { + "x0": 658.7999877929688, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 56.1600341796875, + "height": 14.4000244140625 + }, { + "x0": 658.7999877929688, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 56.1600341796875, + "height": 14.03997802734375 + }, { + "x0": 658.7999877929688, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 56.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 658.7999877929688, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 56.1600341796875, + "height": 14.040008544921875 + }, { + "x0": 658.7999877929688, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 56.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 658.7999877929688, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 56.1600341796875, + "height": 14.39996337890625 + }, { + "x0": 596.52001953125, + "y0": 462.96002197265625, + "x1": 658.0800170898438, + "y1": 477.7200012207031, + "width": 61.55999755859375, + "height": 14.759979248046875 + }, { + "x0": 596.52001953125, + "y0": 448.20001220703125, + "x1": 658.0800170898438, + "y1": 462.239990234375, + "width": 61.55999755859375, + "height": 14.03997802734375 + }, { + "x0": 596.52001953125, + "y0": 433.08001708984375, + "x1": 658.0800170898438, + "y1": 447.47998046875, + "width": 61.55999755859375, + "height": 14.39996337890625 + }, { + "x0": 596.52001953125, + "y0": 418.32000732421875, + "x1": 658.0800170898438, + "y1": 432.7200012207031, + "width": 61.55999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.52001953125, + "y0": 403.55999755859375, + "x1": 658.0800170898438, + "y1": 417.6000061035156, + "width": 61.55999755859375, + "height": 14.040008544921875 + }, { + "x0": 596.52001953125, + "y0": 388.44000244140625, + "x1": 658.0800170898438, + "y1": 402.8399963378906, + "width": 61.55999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.52001953125, + "y0": 373.67999267578125, + "x1": 658.0800170898438, + "y1": 387.7200012207031, + "width": 61.55999755859375, + "height": 14.040008544921875 + }, { + "x0": 596.52001953125, + "y0": 358.55999755859375, + "x1": 658.0800170898438, + "y1": 372.96002197265625, + "width": 61.55999755859375, + "height": 14.4000244140625 + }, { + "x0": 596.52001953125, + "y0": 343.79998779296875, + "x1": 658.0800170898438, + "y1": 358.20001220703125, + "width": 61.55999755859375, + "height": 14.4000244140625 + }, { + "x0": 596.52001953125, + "y0": 329.0400085449219, + "x1": 658.0800170898438, + "y1": 343.0799865722656, + "width": 61.55999755859375, + "height": 14.03997802734375 + }, { + "x0": 596.52001953125, + "y0": 313.9200134277344, + "x1": 658.0800170898438, + "y1": 328.32000732421875, + "width": 61.55999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.52001953125, + "y0": 299.1600036621094, + "x1": 658.0800170898438, + "y1": 313.20001220703125, + "width": 61.55999755859375, + "height": 14.040008544921875 + }, { + "x0": 596.52001953125, + "y0": 284.0400085449219, + "x1": 658.0800170898438, + "y1": 298.44000244140625, + "width": 61.55999755859375, + "height": 14.399993896484375 + }, { + "x0": 596.52001953125, + "y0": 269.280029296875, + "x1": 658.0800170898438, + "y1": 283.67999267578125, + "width": 61.55999755859375, + "height": 14.39996337890625 + }, { + "x0": 533.8800048828125, + "y0": 462.96002197265625, + "x1": 595.7999877929688, + "y1": 477.7200012207031, + "width": 61.91998291015625, + "height": 14.759979248046875 + }, { + "x0": 533.8800048828125, + "y0": 448.20001220703125, + "x1": 595.7999877929688, + "y1": 462.239990234375, + "width": 61.91998291015625, + "height": 14.03997802734375 + }, { + "x0": 533.8800048828125, + "y0": 433.08001708984375, + "x1": 595.7999877929688, + "y1": 447.47998046875, + "width": 61.91998291015625, + "height": 14.39996337890625 + }, { + "x0": 533.8800048828125, + "y0": 418.32000732421875, + "x1": 595.7999877929688, + "y1": 432.7200012207031, + "width": 61.91998291015625, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 403.55999755859375, + "x1": 595.7999877929688, + "y1": 417.6000061035156, + "width": 61.91998291015625, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 388.44000244140625, + "x1": 595.7999877929688, + "y1": 402.8399963378906, + "width": 61.91998291015625, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 373.67999267578125, + "x1": 595.7999877929688, + "y1": 387.7200012207031, + "width": 61.91998291015625, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 358.55999755859375, + "x1": 595.7999877929688, + "y1": 372.96002197265625, + "width": 61.91998291015625, + "height": 14.4000244140625 + }, { + "x0": 533.8800048828125, + "y0": 343.79998779296875, + "x1": 595.7999877929688, + "y1": 358.20001220703125, + "width": 61.91998291015625, + "height": 14.4000244140625 + }, { + "x0": 533.8800048828125, + "y0": 329.0400085449219, + "x1": 595.7999877929688, + "y1": 343.0799865722656, + "width": 61.91998291015625, + "height": 14.03997802734375 + }, { + "x0": 533.8800048828125, + "y0": 313.9200134277344, + "x1": 595.7999877929688, + "y1": 328.32000732421875, + "width": 61.91998291015625, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 299.1600036621094, + "x1": 595.7999877929688, + "y1": 313.20001220703125, + "width": 61.91998291015625, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 284.0400085449219, + "x1": 595.7999877929688, + "y1": 298.44000244140625, + "width": 61.91998291015625, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 269.280029296875, + "x1": 595.7999877929688, + "y1": 283.67999267578125, + "width": 61.91998291015625, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 462.96002197265625, + "x1": 533.1600341796875, + "y1": 477.7200012207031, + "width": 60.48004150390625, + "height": 14.759979248046875 + }, { + "x0": 472.67999267578125, + "y0": 448.20001220703125, + "x1": 533.1600341796875, + "y1": 462.239990234375, + "width": 60.48004150390625, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 433.08001708984375, + "x1": 533.1600341796875, + "y1": 447.47998046875, + "width": 60.48004150390625, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 418.32000732421875, + "x1": 533.1600341796875, + "y1": 432.7200012207031, + "width": 60.48004150390625, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 403.55999755859375, + "x1": 533.1600341796875, + "y1": 417.6000061035156, + "width": 60.48004150390625, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 388.44000244140625, + "x1": 533.1600341796875, + "y1": 402.8399963378906, + "width": 60.48004150390625, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 373.67999267578125, + "x1": 533.1600341796875, + "y1": 387.7200012207031, + "width": 60.48004150390625, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 358.55999755859375, + "x1": 533.1600341796875, + "y1": 372.96002197265625, + "width": 60.48004150390625, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 343.79998779296875, + "x1": 533.1600341796875, + "y1": 358.20001220703125, + "width": 60.48004150390625, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 329.0400085449219, + "x1": 533.1600341796875, + "y1": 343.0799865722656, + "width": 60.48004150390625, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 313.9200134277344, + "x1": 533.1600341796875, + "y1": 328.32000732421875, + "width": 60.48004150390625, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 299.1600036621094, + "x1": 533.1600341796875, + "y1": 313.20001220703125, + "width": 60.48004150390625, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 284.0400085449219, + "x1": 533.1600341796875, + "y1": 298.44000244140625, + "width": 60.48004150390625, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 269.280029296875, + "x1": 533.1600341796875, + "y1": 283.67999267578125, + "width": 60.48004150390625, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 471.9599914550781, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 471.9599914550781, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 471.9599914550781, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 471.9599914550781, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 471.9599914550781, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 471.9599914550781, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 471.9599914550781, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 471.9599914550781, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 471.9599914550781, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 471.9599914550781, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 471.9599914550781, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 471.9599914550781, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 471.9599914550781, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 471.9599914550781, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 355.67999267578125, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 75.60000610351562, + "height": 31.319976806640625 + }, { + "x0": 355.67999267578125, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 75.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 355.67999267578125, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 75.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 355.67999267578125, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 75.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 355.67999267578125, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 75.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 355.67999267578125, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 75.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 355.67999267578125, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 75.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 355.67999267578125, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 75.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 355.67999267578125, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 75.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 355.67999267578125, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 75.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 328.67999267578125, + "y0": 462.96002197265625, + "x1": 354.9599914550781, + "y1": 494.2799987792969, + "width": 26.279998779296875, + "height": 31.319976806640625 + }, { + "x0": 328.67999267578125, + "y0": 448.20001220703125, + "x1": 354.9599914550781, + "y1": 462.239990234375, + "width": 26.279998779296875, + "height": 14.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 433.08001708984375, + "x1": 354.9599914550781, + "y1": 447.47998046875, + "width": 26.279998779296875, + "height": 14.39996337890625 + }, { + "x0": 328.67999267578125, + "y0": 418.32000732421875, + "x1": 354.9599914550781, + "y1": 432.7200012207031, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 403.55999755859375, + "x1": 354.9599914550781, + "y1": 417.6000061035156, + "width": 26.279998779296875, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 388.44000244140625, + "x1": 354.9599914550781, + "y1": 402.8399963378906, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 373.67999267578125, + "x1": 354.9599914550781, + "y1": 387.7200012207031, + "width": 26.279998779296875, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 358.55999755859375, + "x1": 354.9599914550781, + "y1": 372.96002197265625, + "width": 26.279998779296875, + "height": 14.4000244140625 + }, { + "x0": 328.67999267578125, + "y0": 343.79998779296875, + "x1": 354.9599914550781, + "y1": 358.20001220703125, + "width": 26.279998779296875, + "height": 14.4000244140625 + }, { + "x0": 328.67999267578125, + "y0": 329.0400085449219, + "x1": 354.9599914550781, + "y1": 343.0799865722656, + "width": 26.279998779296875, + "height": 14.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 313.9200134277344, + "x1": 354.9599914550781, + "y1": 328.32000732421875, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 299.1600036621094, + "x1": 354.9599914550781, + "y1": 313.20001220703125, + "width": 26.279998779296875, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 284.0400085449219, + "x1": 354.9599914550781, + "y1": 298.44000244140625, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 269.280029296875, + "x1": 354.9599914550781, + "y1": 283.67999267578125, + "width": 26.279998779296875, + "height": 14.39996337890625 + }, { + "x0": 252.0, + "y0": 462.96002197265625, + "x1": 327.9599914550781, + "y1": 494.2799987792969, + "width": 75.95999145507812, + "height": 31.319976806640625 + }, { + "x0": 252.0, + "y0": 448.20001220703125, + "x1": 327.9599914550781, + "y1": 462.239990234375, + "width": 75.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 252.0, + "y0": 433.08001708984375, + "x1": 327.9599914550781, + "y1": 447.47998046875, + "width": 75.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 252.0, + "y0": 418.32000732421875, + "x1": 327.9599914550781, + "y1": 432.7200012207031, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 403.55999755859375, + "x1": 327.9599914550781, + "y1": 417.6000061035156, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 388.44000244140625, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 373.67999267578125, + "x1": 327.9599914550781, + "y1": 387.7200012207031, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 358.55999755859375, + "x1": 327.9599914550781, + "y1": 372.96002197265625, + "width": 75.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 252.0, + "y0": 343.79998779296875, + "x1": 327.9599914550781, + "y1": 358.20001220703125, + "width": 75.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 252.0, + "y0": 329.0400085449219, + "x1": 327.9599914550781, + "y1": 343.0799865722656, + "width": 75.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 252.0, + "y0": 313.9200134277344, + "x1": 327.9599914550781, + "y1": 328.32000732421875, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 299.1600036621094, + "x1": 327.9599914550781, + "y1": 313.20001220703125, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 284.0400085449219, + "x1": 327.9599914550781, + "y1": 298.44000244140625, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 269.280029296875, + "x1": 327.9599914550781, + "y1": 283.67999267578125, + "width": 75.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 462.96002197265625, + "x1": 251.280029296875, + "y1": 494.2799987792969, + "width": 57.60003662109375, + "height": 31.319976806640625 + }, { + "x0": 193.67999267578125, + "y0": 448.20001220703125, + "x1": 251.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 433.08001708984375, + "x1": 251.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 418.32000732421875, + "x1": 251.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 403.55999755859375, + "x1": 251.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 388.44000244140625, + "x1": 251.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 373.67999267578125, + "x1": 251.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 358.55999755859375, + "x1": 251.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 343.79998779296875, + "x1": 251.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 329.0400085449219, + "x1": 251.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 313.9200134277344, + "x1": 251.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 299.1600036621094, + "x1": 251.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 284.0400085449219, + "x1": 251.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 269.280029296875, + "x1": 251.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 462.96002197265625, + "x1": 192.96002197265625, + "y1": 494.2799987792969, + "width": 45.72003173828125, + "height": 31.319976806640625 + }, { + "x0": 147.239990234375, + "y0": 448.20001220703125, + "x1": 192.96002197265625, + "y1": 462.239990234375, + "width": 45.72003173828125, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 433.08001708984375, + "x1": 192.96002197265625, + "y1": 447.47998046875, + "width": 45.72003173828125, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 418.32000732421875, + "x1": 192.96002197265625, + "y1": 432.7200012207031, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 403.55999755859375, + "x1": 192.96002197265625, + "y1": 417.6000061035156, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 388.44000244140625, + "x1": 192.96002197265625, + "y1": 402.8399963378906, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 373.67999267578125, + "x1": 192.96002197265625, + "y1": 387.7200012207031, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 358.55999755859375, + "x1": 192.96002197265625, + "y1": 372.96002197265625, + "width": 45.72003173828125, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 343.79998779296875, + "x1": 192.96002197265625, + "y1": 358.20001220703125, + "width": 45.72003173828125, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 329.0400085449219, + "x1": 192.96002197265625, + "y1": 343.0799865722656, + "width": 45.72003173828125, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 313.9200134277344, + "x1": 192.96002197265625, + "y1": 328.32000732421875, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 299.1600036621094, + "x1": 192.96002197265625, + "y1": 313.20001220703125, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 284.0400085449219, + "x1": 192.96002197265625, + "y1": 298.44000244140625, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 269.280029296875, + "x1": 192.96002197265625, + "y1": 283.67999267578125, + "width": 45.72003173828125, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 146.52001953125, + "y1": 494.2799987792969, + "width": 75.239990234375, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 146.52001953125, + "y1": 462.239990234375, + "width": 75.239990234375, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 133, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 472.67999267578125, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 242.280029296875, + "height": 15.839996337890625 + }, { + "x0": 652.6799926757812, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 62.280029296875, + "height": 14.759979248046875 + }, { + "x0": 652.6799926757812, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 652.6799926757812, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 462.96002197265625, + "x1": 651.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 594.0, + "y0": 448.20001220703125, + "x1": 651.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 433.08001708984375, + "x1": 651.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 418.32000732421875, + "x1": 651.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 403.55999755859375, + "x1": 651.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 388.44000244140625, + "x1": 651.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 373.67999267578125, + "x1": 651.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 358.55999755859375, + "x1": 651.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 343.79998779296875, + "x1": 651.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 329.0400085449219, + "x1": 651.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 313.9200134277344, + "x1": 651.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 299.1600036621094, + "x1": 651.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 284.0400085449219, + "x1": 651.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 269.280029296875, + "x1": 651.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 540.0, + "y0": 462.96002197265625, + "x1": 593.280029296875, + "y1": 477.7200012207031, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 540.0, + "y0": 448.20001220703125, + "x1": 593.280029296875, + "y1": 462.239990234375, + "width": 53.280029296875, + "height": 14.03997802734375 + }, { + "x0": 540.0, + "y0": 433.08001708984375, + "x1": 593.280029296875, + "y1": 447.47998046875, + "width": 53.280029296875, + "height": 14.39996337890625 + }, { + "x0": 540.0, + "y0": 418.32000732421875, + "x1": 593.280029296875, + "y1": 432.7200012207031, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 403.55999755859375, + "x1": 593.280029296875, + "y1": 417.6000061035156, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 388.44000244140625, + "x1": 593.280029296875, + "y1": 402.8399963378906, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 373.67999267578125, + "x1": 593.280029296875, + "y1": 387.7200012207031, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 358.55999755859375, + "x1": 593.280029296875, + "y1": 372.96002197265625, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 540.0, + "y0": 343.79998779296875, + "x1": 593.280029296875, + "y1": 358.20001220703125, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 540.0, + "y0": 329.0400085449219, + "x1": 593.280029296875, + "y1": 343.0799865722656, + "width": 53.280029296875, + "height": 14.03997802734375 + }, { + "x0": 540.0, + "y0": 313.9200134277344, + "x1": 593.280029296875, + "y1": 328.32000732421875, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 299.1600036621094, + "x1": 593.280029296875, + "y1": 313.20001220703125, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 284.0400085449219, + "x1": 593.280029296875, + "y1": 298.44000244140625, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 269.280029296875, + "x1": 593.280029296875, + "y1": 283.67999267578125, + "width": 53.280029296875, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 462.96002197265625, + "x1": 539.280029296875, + "y1": 477.7200012207031, + "width": 66.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 472.67999267578125, + "y0": 448.20001220703125, + "x1": 539.280029296875, + "y1": 462.239990234375, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 433.08001708984375, + "x1": 539.280029296875, + "y1": 447.47998046875, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 418.32000732421875, + "x1": 539.280029296875, + "y1": 432.7200012207031, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 403.55999755859375, + "x1": 539.280029296875, + "y1": 417.6000061035156, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 388.44000244140625, + "x1": 539.280029296875, + "y1": 402.8399963378906, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 373.67999267578125, + "x1": 539.280029296875, + "y1": 387.7200012207031, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 358.55999755859375, + "x1": 539.280029296875, + "y1": 372.96002197265625, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 343.79998779296875, + "x1": 539.280029296875, + "y1": 358.20001220703125, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 329.0400085449219, + "x1": 539.280029296875, + "y1": 343.0799865722656, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 313.9200134277344, + "x1": 539.280029296875, + "y1": 328.32000732421875, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 299.1600036621094, + "x1": 539.280029296875, + "y1": 313.20001220703125, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 284.0400085449219, + "x1": 539.280029296875, + "y1": 298.44000244140625, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 269.280029296875, + "x1": 539.280029296875, + "y1": 283.67999267578125, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 471.9599914550781, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 471.9599914550781, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 471.9599914550781, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 471.9599914550781, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 471.9599914550781, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 471.9599914550781, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 471.9599914550781, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 471.9599914550781, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 471.9599914550781, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 471.9599914550781, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 471.9599914550781, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 471.9599914550781, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 471.9599914550781, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 471.9599914550781, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 357.1199951171875, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 74.16000366210938, + "height": 31.319976806640625 + }, { + "x0": 357.1199951171875, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 74.16000366210938, + "height": 14.03997802734375 + }, { + "x0": 357.1199951171875, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 74.16000366210938, + "height": 14.39996337890625 + }, { + "x0": 357.1199951171875, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 74.16000366210938, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 74.16000366210938, + "height": 14.040008544921875 + }, { + "x0": 357.1199951171875, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 74.16000366210938, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 74.16000366210938, + "height": 14.040008544921875 + }, { + "x0": 357.1199951171875, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 74.16000366210938, + "height": 14.4000244140625 + }, { + "x0": 357.1199951171875, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 74.16000366210938, + "height": 14.4000244140625 + }, { + "x0": 357.1199951171875, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 74.16000366210938, + "height": 14.03997802734375 + }, { + "x0": 357.1199951171875, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 74.16000366210938, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 74.16000366210938, + "height": 14.040008544921875 + }, { + "x0": 357.1199951171875, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 74.16000366210938, + "height": 14.399993896484375 + }, { + "x0": 357.1199951171875, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 74.16000366210938, + "height": 14.39996337890625 + }, { + "x0": 331.9200134277344, + "y0": 462.96002197265625, + "x1": 356.3999938964844, + "y1": 494.2799987792969, + "width": 24.47998046875, + "height": 31.319976806640625 + }, { + "x0": 331.9200134277344, + "y0": 448.20001220703125, + "x1": 356.3999938964844, + "y1": 462.239990234375, + "width": 24.47998046875, + "height": 14.03997802734375 + }, { + "x0": 331.9200134277344, + "y0": 433.08001708984375, + "x1": 356.3999938964844, + "y1": 447.47998046875, + "width": 24.47998046875, + "height": 14.39996337890625 + }, { + "x0": 331.9200134277344, + "y0": 418.32000732421875, + "x1": 356.3999938964844, + "y1": 432.7200012207031, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 331.9200134277344, + "y0": 403.55999755859375, + "x1": 356.3999938964844, + "y1": 417.6000061035156, + "width": 24.47998046875, + "height": 14.040008544921875 + }, { + "x0": 331.9200134277344, + "y0": 388.44000244140625, + "x1": 356.3999938964844, + "y1": 402.8399963378906, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 331.9200134277344, + "y0": 373.67999267578125, + "x1": 356.3999938964844, + "y1": 387.7200012207031, + "width": 24.47998046875, + "height": 14.040008544921875 + }, { + "x0": 331.9200134277344, + "y0": 358.55999755859375, + "x1": 356.3999938964844, + "y1": 372.96002197265625, + "width": 24.47998046875, + "height": 14.4000244140625 + }, { + "x0": 331.9200134277344, + "y0": 343.79998779296875, + "x1": 356.3999938964844, + "y1": 358.20001220703125, + "width": 24.47998046875, + "height": 14.4000244140625 + }, { + "x0": 331.9200134277344, + "y0": 329.0400085449219, + "x1": 356.3999938964844, + "y1": 343.0799865722656, + "width": 24.47998046875, + "height": 14.03997802734375 + }, { + "x0": 331.9200134277344, + "y0": 313.9200134277344, + "x1": 356.3999938964844, + "y1": 328.32000732421875, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 331.9200134277344, + "y0": 299.1600036621094, + "x1": 356.3999938964844, + "y1": 313.20001220703125, + "width": 24.47998046875, + "height": 14.040008544921875 + }, { + "x0": 331.9200134277344, + "y0": 284.0400085449219, + "x1": 356.3999938964844, + "y1": 298.44000244140625, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 331.9200134277344, + "y0": 269.280029296875, + "x1": 356.3999938964844, + "y1": 283.67999267578125, + "width": 24.47998046875, + "height": 14.39996337890625 + }, { + "x0": 254.15997314453125, + "y0": 462.96002197265625, + "x1": 331.20001220703125, + "y1": 494.2799987792969, + "width": 77.0400390625, + "height": 31.319976806640625 + }, { + "x0": 254.15997314453125, + "y0": 448.20001220703125, + "x1": 331.20001220703125, + "y1": 462.239990234375, + "width": 77.0400390625, + "height": 14.03997802734375 + }, { + "x0": 254.15997314453125, + "y0": 433.08001708984375, + "x1": 331.20001220703125, + "y1": 447.47998046875, + "width": 77.0400390625, + "height": 14.39996337890625 + }, { + "x0": 254.15997314453125, + "y0": 418.32000732421875, + "x1": 331.20001220703125, + "y1": 432.7200012207031, + "width": 77.0400390625, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 403.55999755859375, + "x1": 331.20001220703125, + "y1": 417.6000061035156, + "width": 77.0400390625, + "height": 14.040008544921875 + }, { + "x0": 254.15997314453125, + "y0": 388.44000244140625, + "x1": 331.20001220703125, + "y1": 402.8399963378906, + "width": 77.0400390625, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 373.67999267578125, + "x1": 331.20001220703125, + "y1": 387.7200012207031, + "width": 77.0400390625, + "height": 14.040008544921875 + }, { + "x0": 254.15997314453125, + "y0": 358.55999755859375, + "x1": 331.20001220703125, + "y1": 372.96002197265625, + "width": 77.0400390625, + "height": 14.4000244140625 + }, { + "x0": 254.15997314453125, + "y0": 343.79998779296875, + "x1": 331.20001220703125, + "y1": 358.20001220703125, + "width": 77.0400390625, + "height": 14.4000244140625 + }, { + "x0": 254.15997314453125, + "y0": 329.0400085449219, + "x1": 331.20001220703125, + "y1": 343.0799865722656, + "width": 77.0400390625, + "height": 14.03997802734375 + }, { + "x0": 254.15997314453125, + "y0": 313.9200134277344, + "x1": 331.20001220703125, + "y1": 328.32000732421875, + "width": 77.0400390625, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 299.1600036621094, + "x1": 331.20001220703125, + "y1": 313.20001220703125, + "width": 77.0400390625, + "height": 14.040008544921875 + }, { + "x0": 254.15997314453125, + "y0": 284.0400085449219, + "x1": 331.20001220703125, + "y1": 298.44000244140625, + "width": 77.0400390625, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 269.280029296875, + "x1": 331.20001220703125, + "y1": 283.67999267578125, + "width": 77.0400390625, + "height": 14.39996337890625 + }, { + "x0": 190.44000244140625, + "y0": 462.96002197265625, + "x1": 253.44000244140625, + "y1": 494.2799987792969, + "width": 63.0, + "height": 31.319976806640625 + }, { + "x0": 190.44000244140625, + "y0": 448.20001220703125, + "x1": 253.44000244140625, + "y1": 462.239990234375, + "width": 63.0, + "height": 14.03997802734375 + }, { + "x0": 190.44000244140625, + "y0": 433.08001708984375, + "x1": 253.44000244140625, + "y1": 447.47998046875, + "width": 63.0, + "height": 14.39996337890625 + }, { + "x0": 190.44000244140625, + "y0": 418.32000732421875, + "x1": 253.44000244140625, + "y1": 432.7200012207031, + "width": 63.0, + "height": 14.399993896484375 + }, { + "x0": 190.44000244140625, + "y0": 403.55999755859375, + "x1": 253.44000244140625, + "y1": 417.6000061035156, + "width": 63.0, + "height": 14.040008544921875 + }, { + "x0": 190.44000244140625, + "y0": 388.44000244140625, + "x1": 253.44000244140625, + "y1": 402.8399963378906, + "width": 63.0, + "height": 14.399993896484375 + }, { + "x0": 190.44000244140625, + "y0": 373.67999267578125, + "x1": 253.44000244140625, + "y1": 387.7200012207031, + "width": 63.0, + "height": 14.040008544921875 + }, { + "x0": 190.44000244140625, + "y0": 358.55999755859375, + "x1": 253.44000244140625, + "y1": 372.96002197265625, + "width": 63.0, + "height": 14.4000244140625 + }, { + "x0": 190.44000244140625, + "y0": 343.79998779296875, + "x1": 253.44000244140625, + "y1": 358.20001220703125, + "width": 63.0, + "height": 14.4000244140625 + }, { + "x0": 190.44000244140625, + "y0": 329.0400085449219, + "x1": 253.44000244140625, + "y1": 343.0799865722656, + "width": 63.0, + "height": 14.03997802734375 + }, { + "x0": 190.44000244140625, + "y0": 313.9200134277344, + "x1": 253.44000244140625, + "y1": 328.32000732421875, + "width": 63.0, + "height": 14.399993896484375 + }, { + "x0": 190.44000244140625, + "y0": 299.1600036621094, + "x1": 253.44000244140625, + "y1": 313.20001220703125, + "width": 63.0, + "height": 14.040008544921875 + }, { + "x0": 190.44000244140625, + "y0": 284.0400085449219, + "x1": 253.44000244140625, + "y1": 298.44000244140625, + "width": 63.0, + "height": 14.399993896484375 + }, { + "x0": 190.44000244140625, + "y0": 269.280029296875, + "x1": 253.44000244140625, + "y1": 283.67999267578125, + "width": 63.0, + "height": 14.39996337890625 + }, { + "x0": 147.96002197265625, + "y0": 462.96002197265625, + "x1": 189.719970703125, + "y1": 494.2799987792969, + "width": 41.75994873046875, + "height": 31.319976806640625 + }, { + "x0": 147.96002197265625, + "y0": 448.20001220703125, + "x1": 189.719970703125, + "y1": 462.239990234375, + "width": 41.75994873046875, + "height": 14.03997802734375 + }, { + "x0": 147.96002197265625, + "y0": 433.08001708984375, + "x1": 189.719970703125, + "y1": 447.47998046875, + "width": 41.75994873046875, + "height": 14.39996337890625 + }, { + "x0": 147.96002197265625, + "y0": 418.32000732421875, + "x1": 189.719970703125, + "y1": 432.7200012207031, + "width": 41.75994873046875, + "height": 14.399993896484375 + }, { + "x0": 147.96002197265625, + "y0": 403.55999755859375, + "x1": 189.719970703125, + "y1": 417.6000061035156, + "width": 41.75994873046875, + "height": 14.040008544921875 + }, { + "x0": 147.96002197265625, + "y0": 388.44000244140625, + "x1": 189.719970703125, + "y1": 402.8399963378906, + "width": 41.75994873046875, + "height": 14.399993896484375 + }, { + "x0": 147.96002197265625, + "y0": 373.67999267578125, + "x1": 189.719970703125, + "y1": 387.7200012207031, + "width": 41.75994873046875, + "height": 14.040008544921875 + }, { + "x0": 147.96002197265625, + "y0": 358.55999755859375, + "x1": 189.719970703125, + "y1": 372.96002197265625, + "width": 41.75994873046875, + "height": 14.4000244140625 + }, { + "x0": 147.96002197265625, + "y0": 343.79998779296875, + "x1": 189.719970703125, + "y1": 358.20001220703125, + "width": 41.75994873046875, + "height": 14.4000244140625 + }, { + "x0": 147.96002197265625, + "y0": 329.0400085449219, + "x1": 189.719970703125, + "y1": 343.0799865722656, + "width": 41.75994873046875, + "height": 14.03997802734375 + }, { + "x0": 147.96002197265625, + "y0": 313.9200134277344, + "x1": 189.719970703125, + "y1": 328.32000732421875, + "width": 41.75994873046875, + "height": 14.399993896484375 + }, { + "x0": 147.96002197265625, + "y0": 299.1600036621094, + "x1": 189.719970703125, + "y1": 313.20001220703125, + "width": 41.75994873046875, + "height": 14.040008544921875 + }, { + "x0": 147.96002197265625, + "y0": 284.0400085449219, + "x1": 189.719970703125, + "y1": 298.44000244140625, + "width": 41.75994873046875, + "height": 14.399993896484375 + }, { + "x0": 147.96002197265625, + "y0": 269.280029296875, + "x1": 189.719970703125, + "y1": 283.67999267578125, + "width": 41.75994873046875, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 147.239990234375, + "y1": 494.2799987792969, + "width": 75.9599609375, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 147.239990234375, + "y1": 462.239990234375, + "width": 75.9599609375, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 134, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 472.67999267578125, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 242.280029296875, + "height": 15.839996337890625 + }, { + "x0": 652.6799926757812, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 62.280029296875, + "height": 14.759979248046875 + }, { + "x0": 652.6799926757812, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 652.6799926757812, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 462.96002197265625, + "x1": 651.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 594.0, + "y0": 448.20001220703125, + "x1": 651.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 433.08001708984375, + "x1": 651.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 418.32000732421875, + "x1": 651.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 403.55999755859375, + "x1": 651.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 388.44000244140625, + "x1": 651.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 373.67999267578125, + "x1": 651.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 358.55999755859375, + "x1": 651.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 343.79998779296875, + "x1": 651.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 329.0400085449219, + "x1": 651.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 313.9200134277344, + "x1": 651.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 299.1600036621094, + "x1": 651.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 284.0400085449219, + "x1": 651.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 269.280029296875, + "x1": 651.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 535.6799926757812, + "y0": 462.96002197265625, + "x1": 593.280029296875, + "y1": 477.7200012207031, + "width": 57.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 535.6799926757812, + "y0": 448.20001220703125, + "x1": 593.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 535.6799926757812, + "y0": 433.08001708984375, + "x1": 593.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 535.6799926757812, + "y0": 418.32000732421875, + "x1": 593.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 403.55999755859375, + "x1": 593.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 535.6799926757812, + "y0": 388.44000244140625, + "x1": 593.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 373.67999267578125, + "x1": 593.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 535.6799926757812, + "y0": 358.55999755859375, + "x1": 593.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 535.6799926757812, + "y0": 343.79998779296875, + "x1": 593.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 535.6799926757812, + "y0": 329.0400085449219, + "x1": 593.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 535.6799926757812, + "y0": 313.9200134277344, + "x1": 593.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 299.1600036621094, + "x1": 593.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 535.6799926757812, + "y0": 284.0400085449219, + "x1": 593.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 269.280029296875, + "x1": 593.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 462.96002197265625, + "x1": 534.9599609375, + "y1": 477.7200012207031, + "width": 62.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 472.67999267578125, + "y0": 448.20001220703125, + "x1": 534.9599609375, + "y1": 462.239990234375, + "width": 62.27996826171875, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 433.08001708984375, + "x1": 534.9599609375, + "y1": 447.47998046875, + "width": 62.27996826171875, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 418.32000732421875, + "x1": 534.9599609375, + "y1": 432.7200012207031, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 403.55999755859375, + "x1": 534.9599609375, + "y1": 417.6000061035156, + "width": 62.27996826171875, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 388.44000244140625, + "x1": 534.9599609375, + "y1": 402.8399963378906, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 373.67999267578125, + "x1": 534.9599609375, + "y1": 387.7200012207031, + "width": 62.27996826171875, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 358.55999755859375, + "x1": 534.9599609375, + "y1": 372.96002197265625, + "width": 62.27996826171875, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 343.79998779296875, + "x1": 534.9599609375, + "y1": 358.20001220703125, + "width": 62.27996826171875, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 329.0400085449219, + "x1": 534.9599609375, + "y1": 343.0799865722656, + "width": 62.27996826171875, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 313.9200134277344, + "x1": 534.9599609375, + "y1": 328.32000732421875, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 299.1600036621094, + "x1": 534.9599609375, + "y1": 313.20001220703125, + "width": 62.27996826171875, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 284.0400085449219, + "x1": 534.9599609375, + "y1": 298.44000244140625, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 269.280029296875, + "x1": 534.9599609375, + "y1": 283.67999267578125, + "width": 62.27996826171875, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 471.9599914550781, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 471.9599914550781, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 471.9599914550781, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 471.9599914550781, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 471.9599914550781, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 471.9599914550781, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 471.9599914550781, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 471.9599914550781, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 471.9599914550781, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 471.9599914550781, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 471.9599914550781, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 471.9599914550781, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 471.9599914550781, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 471.9599914550781, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 356.0400085449219, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 75.239990234375, + "height": 31.319976806640625 + }, { + "x0": 356.0400085449219, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 75.239990234375, + "height": 14.03997802734375 + }, { + "x0": 356.0400085449219, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 75.239990234375, + "height": 14.39996337890625 + }, { + "x0": 356.0400085449219, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 75.239990234375, + "height": 14.399993896484375 + }, { + "x0": 356.0400085449219, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 75.239990234375, + "height": 14.040008544921875 + }, { + "x0": 356.0400085449219, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 75.239990234375, + "height": 14.399993896484375 + }, { + "x0": 356.0400085449219, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 75.239990234375, + "height": 14.040008544921875 + }, { + "x0": 356.0400085449219, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 75.239990234375, + "height": 14.4000244140625 + }, { + "x0": 356.0400085449219, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 75.239990234375, + "height": 14.4000244140625 + }, { + "x0": 356.0400085449219, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 75.239990234375, + "height": 14.03997802734375 + }, { + "x0": 356.0400085449219, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 75.239990234375, + "height": 14.399993896484375 + }, { + "x0": 356.0400085449219, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 75.239990234375, + "height": 14.040008544921875 + }, { + "x0": 356.0400085449219, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 75.239990234375, + "height": 14.399993896484375 + }, { + "x0": 356.0400085449219, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 75.239990234375, + "height": 14.39996337890625 + }, { + "x0": 330.8399963378906, + "y0": 462.96002197265625, + "x1": 355.32000732421875, + "y1": 494.2799987792969, + "width": 24.480010986328125, + "height": 31.319976806640625 + }, { + "x0": 330.8399963378906, + "y0": 448.20001220703125, + "x1": 355.32000732421875, + "y1": 462.239990234375, + "width": 24.480010986328125, + "height": 14.03997802734375 + }, { + "x0": 330.8399963378906, + "y0": 433.08001708984375, + "x1": 355.32000732421875, + "y1": 447.47998046875, + "width": 24.480010986328125, + "height": 14.39996337890625 + }, { + "x0": 330.8399963378906, + "y0": 418.32000732421875, + "x1": 355.32000732421875, + "y1": 432.7200012207031, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 330.8399963378906, + "y0": 403.55999755859375, + "x1": 355.32000732421875, + "y1": 417.6000061035156, + "width": 24.480010986328125, + "height": 14.040008544921875 + }, { + "x0": 330.8399963378906, + "y0": 388.44000244140625, + "x1": 355.32000732421875, + "y1": 402.8399963378906, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 330.8399963378906, + "y0": 373.67999267578125, + "x1": 355.32000732421875, + "y1": 387.7200012207031, + "width": 24.480010986328125, + "height": 14.040008544921875 + }, { + "x0": 330.8399963378906, + "y0": 358.55999755859375, + "x1": 355.32000732421875, + "y1": 372.96002197265625, + "width": 24.480010986328125, + "height": 14.4000244140625 + }, { + "x0": 330.8399963378906, + "y0": 343.79998779296875, + "x1": 355.32000732421875, + "y1": 358.20001220703125, + "width": 24.480010986328125, + "height": 14.4000244140625 + }, { + "x0": 330.8399963378906, + "y0": 329.0400085449219, + "x1": 355.32000732421875, + "y1": 343.0799865722656, + "width": 24.480010986328125, + "height": 14.03997802734375 + }, { + "x0": 330.8399963378906, + "y0": 313.9200134277344, + "x1": 355.32000732421875, + "y1": 328.32000732421875, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 330.8399963378906, + "y0": 299.1600036621094, + "x1": 355.32000732421875, + "y1": 313.20001220703125, + "width": 24.480010986328125, + "height": 14.040008544921875 + }, { + "x0": 330.8399963378906, + "y0": 284.0400085449219, + "x1": 355.32000732421875, + "y1": 298.44000244140625, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 330.8399963378906, + "y0": 269.280029296875, + "x1": 355.32000732421875, + "y1": 283.67999267578125, + "width": 24.480010986328125, + "height": 14.39996337890625 + }, { + "x0": 253.44000244140625, + "y0": 462.96002197265625, + "x1": 330.1199951171875, + "y1": 494.2799987792969, + "width": 76.67999267578125, + "height": 31.319976806640625 + }, { + "x0": 253.44000244140625, + "y0": 448.20001220703125, + "x1": 330.1199951171875, + "y1": 462.239990234375, + "width": 76.67999267578125, + "height": 14.03997802734375 + }, { + "x0": 253.44000244140625, + "y0": 433.08001708984375, + "x1": 330.1199951171875, + "y1": 447.47998046875, + "width": 76.67999267578125, + "height": 14.39996337890625 + }, { + "x0": 253.44000244140625, + "y0": 418.32000732421875, + "x1": 330.1199951171875, + "y1": 432.7200012207031, + "width": 76.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 253.44000244140625, + "y0": 403.55999755859375, + "x1": 330.1199951171875, + "y1": 417.6000061035156, + "width": 76.67999267578125, + "height": 14.040008544921875 + }, { + "x0": 253.44000244140625, + "y0": 388.44000244140625, + "x1": 330.1199951171875, + "y1": 402.8399963378906, + "width": 76.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 253.44000244140625, + "y0": 373.67999267578125, + "x1": 330.1199951171875, + "y1": 387.7200012207031, + "width": 76.67999267578125, + "height": 14.040008544921875 + }, { + "x0": 253.44000244140625, + "y0": 358.55999755859375, + "x1": 330.1199951171875, + "y1": 372.96002197265625, + "width": 76.67999267578125, + "height": 14.4000244140625 + }, { + "x0": 253.44000244140625, + "y0": 343.79998779296875, + "x1": 330.1199951171875, + "y1": 358.20001220703125, + "width": 76.67999267578125, + "height": 14.4000244140625 + }, { + "x0": 253.44000244140625, + "y0": 329.0400085449219, + "x1": 330.1199951171875, + "y1": 343.0799865722656, + "width": 76.67999267578125, + "height": 14.03997802734375 + }, { + "x0": 253.44000244140625, + "y0": 313.9200134277344, + "x1": 330.1199951171875, + "y1": 328.32000732421875, + "width": 76.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 253.44000244140625, + "y0": 299.1600036621094, + "x1": 330.1199951171875, + "y1": 313.20001220703125, + "width": 76.67999267578125, + "height": 14.040008544921875 + }, { + "x0": 253.44000244140625, + "y0": 284.0400085449219, + "x1": 330.1199951171875, + "y1": 298.44000244140625, + "width": 76.67999267578125, + "height": 14.399993896484375 + }, { + "x0": 253.44000244140625, + "y0": 269.280029296875, + "x1": 330.1199951171875, + "y1": 283.67999267578125, + "width": 76.67999267578125, + "height": 14.39996337890625 + }, { + "x0": 193.32000732421875, + "y0": 462.96002197265625, + "x1": 252.719970703125, + "y1": 494.2799987792969, + "width": 59.39996337890625, + "height": 31.319976806640625 + }, { + "x0": 193.32000732421875, + "y0": 448.20001220703125, + "x1": 252.719970703125, + "y1": 462.239990234375, + "width": 59.39996337890625, + "height": 14.03997802734375 + }, { + "x0": 193.32000732421875, + "y0": 433.08001708984375, + "x1": 252.719970703125, + "y1": 447.47998046875, + "width": 59.39996337890625, + "height": 14.39996337890625 + }, { + "x0": 193.32000732421875, + "y0": 418.32000732421875, + "x1": 252.719970703125, + "y1": 432.7200012207031, + "width": 59.39996337890625, + "height": 14.399993896484375 + }, { + "x0": 193.32000732421875, + "y0": 403.55999755859375, + "x1": 252.719970703125, + "y1": 417.6000061035156, + "width": 59.39996337890625, + "height": 14.040008544921875 + }, { + "x0": 193.32000732421875, + "y0": 388.44000244140625, + "x1": 252.719970703125, + "y1": 402.8399963378906, + "width": 59.39996337890625, + "height": 14.399993896484375 + }, { + "x0": 193.32000732421875, + "y0": 373.67999267578125, + "x1": 252.719970703125, + "y1": 387.7200012207031, + "width": 59.39996337890625, + "height": 14.040008544921875 + }, { + "x0": 193.32000732421875, + "y0": 358.55999755859375, + "x1": 252.719970703125, + "y1": 372.96002197265625, + "width": 59.39996337890625, + "height": 14.4000244140625 + }, { + "x0": 193.32000732421875, + "y0": 343.79998779296875, + "x1": 252.719970703125, + "y1": 358.20001220703125, + "width": 59.39996337890625, + "height": 14.4000244140625 + }, { + "x0": 193.32000732421875, + "y0": 329.0400085449219, + "x1": 252.719970703125, + "y1": 343.0799865722656, + "width": 59.39996337890625, + "height": 14.03997802734375 + }, { + "x0": 193.32000732421875, + "y0": 313.9200134277344, + "x1": 252.719970703125, + "y1": 328.32000732421875, + "width": 59.39996337890625, + "height": 14.399993896484375 + }, { + "x0": 193.32000732421875, + "y0": 299.1600036621094, + "x1": 252.719970703125, + "y1": 313.20001220703125, + "width": 59.39996337890625, + "height": 14.040008544921875 + }, { + "x0": 193.32000732421875, + "y0": 284.0400085449219, + "x1": 252.719970703125, + "y1": 298.44000244140625, + "width": 59.39996337890625, + "height": 14.399993896484375 + }, { + "x0": 193.32000732421875, + "y0": 269.280029296875, + "x1": 252.719970703125, + "y1": 283.67999267578125, + "width": 59.39996337890625, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 462.96002197265625, + "x1": 192.5999755859375, + "y1": 494.2799987792969, + "width": 45.3599853515625, + "height": 31.319976806640625 + }, { + "x0": 147.239990234375, + "y0": 448.20001220703125, + "x1": 192.5999755859375, + "y1": 462.239990234375, + "width": 45.3599853515625, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 433.08001708984375, + "x1": 192.5999755859375, + "y1": 447.47998046875, + "width": 45.3599853515625, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 418.32000732421875, + "x1": 192.5999755859375, + "y1": 432.7200012207031, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 403.55999755859375, + "x1": 192.5999755859375, + "y1": 417.6000061035156, + "width": 45.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 388.44000244140625, + "x1": 192.5999755859375, + "y1": 402.8399963378906, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 373.67999267578125, + "x1": 192.5999755859375, + "y1": 387.7200012207031, + "width": 45.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 358.55999755859375, + "x1": 192.5999755859375, + "y1": 372.96002197265625, + "width": 45.3599853515625, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 343.79998779296875, + "x1": 192.5999755859375, + "y1": 358.20001220703125, + "width": 45.3599853515625, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 329.0400085449219, + "x1": 192.5999755859375, + "y1": 343.0799865722656, + "width": 45.3599853515625, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 313.9200134277344, + "x1": 192.5999755859375, + "y1": 328.32000732421875, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 299.1600036621094, + "x1": 192.5999755859375, + "y1": 313.20001220703125, + "width": 45.3599853515625, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 284.0400085449219, + "x1": 192.5999755859375, + "y1": 298.44000244140625, + "width": 45.3599853515625, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 269.280029296875, + "x1": 192.5999755859375, + "y1": 283.67999267578125, + "width": 45.3599853515625, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 146.52001953125, + "y1": 494.2799987792969, + "width": 75.239990234375, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 146.52001953125, + "y1": 462.239990234375, + "width": 75.239990234375, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 135, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 472.67999267578125, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 242.280029296875, + "height": 15.839996337890625 + }, { + "x0": 652.6799926757812, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 62.280029296875, + "height": 14.759979248046875 + }, { + "x0": 652.6799926757812, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 652.6799926757812, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 652.6799926757812, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 652.6799926757812, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 652.6799926757812, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 652.6799926757812, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 462.96002197265625, + "x1": 651.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 594.0, + "y0": 448.20001220703125, + "x1": 651.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 433.08001708984375, + "x1": 651.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 418.32000732421875, + "x1": 651.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 403.55999755859375, + "x1": 651.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 388.44000244140625, + "x1": 651.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 373.67999267578125, + "x1": 651.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 358.55999755859375, + "x1": 651.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 343.79998779296875, + "x1": 651.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 329.0400085449219, + "x1": 651.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 313.9200134277344, + "x1": 651.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 299.1600036621094, + "x1": 651.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 284.0400085449219, + "x1": 651.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 269.280029296875, + "x1": 651.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 540.0, + "y0": 462.96002197265625, + "x1": 593.280029296875, + "y1": 477.7200012207031, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 540.0, + "y0": 448.20001220703125, + "x1": 593.280029296875, + "y1": 462.239990234375, + "width": 53.280029296875, + "height": 14.03997802734375 + }, { + "x0": 540.0, + "y0": 433.08001708984375, + "x1": 593.280029296875, + "y1": 447.47998046875, + "width": 53.280029296875, + "height": 14.39996337890625 + }, { + "x0": 540.0, + "y0": 418.32000732421875, + "x1": 593.280029296875, + "y1": 432.7200012207031, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 403.55999755859375, + "x1": 593.280029296875, + "y1": 417.6000061035156, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 388.44000244140625, + "x1": 593.280029296875, + "y1": 402.8399963378906, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 373.67999267578125, + "x1": 593.280029296875, + "y1": 387.7200012207031, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 358.55999755859375, + "x1": 593.280029296875, + "y1": 372.96002197265625, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 540.0, + "y0": 343.79998779296875, + "x1": 593.280029296875, + "y1": 358.20001220703125, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 540.0, + "y0": 329.0400085449219, + "x1": 593.280029296875, + "y1": 343.0799865722656, + "width": 53.280029296875, + "height": 14.03997802734375 + }, { + "x0": 540.0, + "y0": 313.9200134277344, + "x1": 593.280029296875, + "y1": 328.32000732421875, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 299.1600036621094, + "x1": 593.280029296875, + "y1": 313.20001220703125, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 284.0400085449219, + "x1": 593.280029296875, + "y1": 298.44000244140625, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 269.280029296875, + "x1": 593.280029296875, + "y1": 283.67999267578125, + "width": 53.280029296875, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 462.96002197265625, + "x1": 539.280029296875, + "y1": 477.7200012207031, + "width": 66.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 472.67999267578125, + "y0": 448.20001220703125, + "x1": 539.280029296875, + "y1": 462.239990234375, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 433.08001708984375, + "x1": 539.280029296875, + "y1": 447.47998046875, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 418.32000732421875, + "x1": 539.280029296875, + "y1": 432.7200012207031, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 403.55999755859375, + "x1": 539.280029296875, + "y1": 417.6000061035156, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 388.44000244140625, + "x1": 539.280029296875, + "y1": 402.8399963378906, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 373.67999267578125, + "x1": 539.280029296875, + "y1": 387.7200012207031, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 358.55999755859375, + "x1": 539.280029296875, + "y1": 372.96002197265625, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 343.79998779296875, + "x1": 539.280029296875, + "y1": 358.20001220703125, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 329.0400085449219, + "x1": 539.280029296875, + "y1": 343.0799865722656, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 313.9200134277344, + "x1": 539.280029296875, + "y1": 328.32000732421875, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 299.1600036621094, + "x1": 539.280029296875, + "y1": 313.20001220703125, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 284.0400085449219, + "x1": 539.280029296875, + "y1": 298.44000244140625, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 269.280029296875, + "x1": 539.280029296875, + "y1": 283.67999267578125, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 471.9599914550781, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 471.9599914550781, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 471.9599914550781, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 471.9599914550781, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 471.9599914550781, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 471.9599914550781, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 471.9599914550781, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 471.9599914550781, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 471.9599914550781, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 471.9599914550781, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 471.9599914550781, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 471.9599914550781, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 471.9599914550781, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 471.9599914550781, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 355.67999267578125, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 75.60000610351562, + "height": 31.319976806640625 + }, { + "x0": 355.67999267578125, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 75.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 355.67999267578125, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 75.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 355.67999267578125, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 75.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 355.67999267578125, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 75.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 355.67999267578125, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 75.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 355.67999267578125, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 75.60000610351562, + "height": 14.4000244140625 + }, { + "x0": 355.67999267578125, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 75.60000610351562, + "height": 14.03997802734375 + }, { + "x0": 355.67999267578125, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 75.60000610351562, + "height": 14.040008544921875 + }, { + "x0": 355.67999267578125, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 75.60000610351562, + "height": 14.399993896484375 + }, { + "x0": 355.67999267578125, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 75.60000610351562, + "height": 14.39996337890625 + }, { + "x0": 328.67999267578125, + "y0": 462.96002197265625, + "x1": 354.9599914550781, + "y1": 494.2799987792969, + "width": 26.279998779296875, + "height": 31.319976806640625 + }, { + "x0": 328.67999267578125, + "y0": 448.20001220703125, + "x1": 354.9599914550781, + "y1": 462.239990234375, + "width": 26.279998779296875, + "height": 14.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 433.08001708984375, + "x1": 354.9599914550781, + "y1": 447.47998046875, + "width": 26.279998779296875, + "height": 14.39996337890625 + }, { + "x0": 328.67999267578125, + "y0": 418.32000732421875, + "x1": 354.9599914550781, + "y1": 432.7200012207031, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 403.55999755859375, + "x1": 354.9599914550781, + "y1": 417.6000061035156, + "width": 26.279998779296875, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 388.44000244140625, + "x1": 354.9599914550781, + "y1": 402.8399963378906, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 373.67999267578125, + "x1": 354.9599914550781, + "y1": 387.7200012207031, + "width": 26.279998779296875, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 358.55999755859375, + "x1": 354.9599914550781, + "y1": 372.96002197265625, + "width": 26.279998779296875, + "height": 14.4000244140625 + }, { + "x0": 328.67999267578125, + "y0": 343.79998779296875, + "x1": 354.9599914550781, + "y1": 358.20001220703125, + "width": 26.279998779296875, + "height": 14.4000244140625 + }, { + "x0": 328.67999267578125, + "y0": 329.0400085449219, + "x1": 354.9599914550781, + "y1": 343.0799865722656, + "width": 26.279998779296875, + "height": 14.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 313.9200134277344, + "x1": 354.9599914550781, + "y1": 328.32000732421875, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 299.1600036621094, + "x1": 354.9599914550781, + "y1": 313.20001220703125, + "width": 26.279998779296875, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 284.0400085449219, + "x1": 354.9599914550781, + "y1": 298.44000244140625, + "width": 26.279998779296875, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 269.280029296875, + "x1": 354.9599914550781, + "y1": 283.67999267578125, + "width": 26.279998779296875, + "height": 14.39996337890625 + }, { + "x0": 252.0, + "y0": 462.96002197265625, + "x1": 327.9599914550781, + "y1": 494.2799987792969, + "width": 75.95999145507812, + "height": 31.319976806640625 + }, { + "x0": 252.0, + "y0": 448.20001220703125, + "x1": 327.9599914550781, + "y1": 462.239990234375, + "width": 75.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 252.0, + "y0": 433.08001708984375, + "x1": 327.9599914550781, + "y1": 447.47998046875, + "width": 75.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 252.0, + "y0": 418.32000732421875, + "x1": 327.9599914550781, + "y1": 432.7200012207031, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 403.55999755859375, + "x1": 327.9599914550781, + "y1": 417.6000061035156, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 388.44000244140625, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 373.67999267578125, + "x1": 327.9599914550781, + "y1": 387.7200012207031, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 358.55999755859375, + "x1": 327.9599914550781, + "y1": 372.96002197265625, + "width": 75.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 252.0, + "y0": 343.79998779296875, + "x1": 327.9599914550781, + "y1": 358.20001220703125, + "width": 75.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 252.0, + "y0": 329.0400085449219, + "x1": 327.9599914550781, + "y1": 343.0799865722656, + "width": 75.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 252.0, + "y0": 313.9200134277344, + "x1": 327.9599914550781, + "y1": 328.32000732421875, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 299.1600036621094, + "x1": 327.9599914550781, + "y1": 313.20001220703125, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 284.0400085449219, + "x1": 327.9599914550781, + "y1": 298.44000244140625, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 269.280029296875, + "x1": 327.9599914550781, + "y1": 283.67999267578125, + "width": 75.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 462.96002197265625, + "x1": 251.280029296875, + "y1": 494.2799987792969, + "width": 57.60003662109375, + "height": 31.319976806640625 + }, { + "x0": 193.67999267578125, + "y0": 448.20001220703125, + "x1": 251.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 433.08001708984375, + "x1": 251.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 418.32000732421875, + "x1": 251.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 403.55999755859375, + "x1": 251.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 388.44000244140625, + "x1": 251.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 373.67999267578125, + "x1": 251.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 358.55999755859375, + "x1": 251.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 343.79998779296875, + "x1": 251.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 329.0400085449219, + "x1": 251.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 313.9200134277344, + "x1": 251.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 299.1600036621094, + "x1": 251.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 284.0400085449219, + "x1": 251.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 269.280029296875, + "x1": 251.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 462.96002197265625, + "x1": 192.96002197265625, + "y1": 494.2799987792969, + "width": 45.72003173828125, + "height": 31.319976806640625 + }, { + "x0": 147.239990234375, + "y0": 448.20001220703125, + "x1": 192.96002197265625, + "y1": 462.239990234375, + "width": 45.72003173828125, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 433.08001708984375, + "x1": 192.96002197265625, + "y1": 447.47998046875, + "width": 45.72003173828125, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 418.32000732421875, + "x1": 192.96002197265625, + "y1": 432.7200012207031, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 403.55999755859375, + "x1": 192.96002197265625, + "y1": 417.6000061035156, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 388.44000244140625, + "x1": 192.96002197265625, + "y1": 402.8399963378906, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 373.67999267578125, + "x1": 192.96002197265625, + "y1": 387.7200012207031, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 358.55999755859375, + "x1": 192.96002197265625, + "y1": 372.96002197265625, + "width": 45.72003173828125, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 343.79998779296875, + "x1": 192.96002197265625, + "y1": 358.20001220703125, + "width": 45.72003173828125, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 329.0400085449219, + "x1": 192.96002197265625, + "y1": 343.0799865722656, + "width": 45.72003173828125, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 313.9200134277344, + "x1": 192.96002197265625, + "y1": 328.32000732421875, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 299.1600036621094, + "x1": 192.96002197265625, + "y1": 313.20001220703125, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 284.0400085449219, + "x1": 192.96002197265625, + "y1": 298.44000244140625, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 269.280029296875, + "x1": 192.96002197265625, + "y1": 283.67999267578125, + "width": 45.72003173828125, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 146.52001953125, + "y1": 494.2799987792969, + "width": 75.239990234375, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 146.52001953125, + "y1": 462.239990234375, + "width": 75.239990234375, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 136, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 472.67999267578125, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 242.280029296875, + "height": 15.839996337890625 + }, { + "x0": 657.0, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 657.0, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 657.0, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 657.0, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 657.0, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 657.0, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 657.0, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 462.96002197265625, + "x1": 656.280029296875, + "y1": 477.7200012207031, + "width": 62.280029296875, + "height": 14.759979248046875 + }, { + "x0": 594.0, + "y0": 448.20001220703125, + "x1": 656.280029296875, + "y1": 462.239990234375, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 433.08001708984375, + "x1": 656.280029296875, + "y1": 447.47998046875, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 418.32000732421875, + "x1": 656.280029296875, + "y1": 432.7200012207031, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 403.55999755859375, + "x1": 656.280029296875, + "y1": 417.6000061035156, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 388.44000244140625, + "x1": 656.280029296875, + "y1": 402.8399963378906, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 373.67999267578125, + "x1": 656.280029296875, + "y1": 387.7200012207031, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 358.55999755859375, + "x1": 656.280029296875, + "y1": 372.96002197265625, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 343.79998779296875, + "x1": 656.280029296875, + "y1": 358.20001220703125, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 329.0400085449219, + "x1": 656.280029296875, + "y1": 343.0799865722656, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 313.9200134277344, + "x1": 656.280029296875, + "y1": 328.32000732421875, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 299.1600036621094, + "x1": 656.280029296875, + "y1": 313.20001220703125, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 284.0400085449219, + "x1": 656.280029296875, + "y1": 298.44000244140625, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 269.280029296875, + "x1": 656.280029296875, + "y1": 283.67999267578125, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 535.6799926757812, + "y0": 462.96002197265625, + "x1": 593.280029296875, + "y1": 477.7200012207031, + "width": 57.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 535.6799926757812, + "y0": 448.20001220703125, + "x1": 593.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 535.6799926757812, + "y0": 433.08001708984375, + "x1": 593.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 535.6799926757812, + "y0": 418.32000732421875, + "x1": 593.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 403.55999755859375, + "x1": 593.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 535.6799926757812, + "y0": 388.44000244140625, + "x1": 593.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 373.67999267578125, + "x1": 593.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 535.6799926757812, + "y0": 358.55999755859375, + "x1": 593.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 535.6799926757812, + "y0": 343.79998779296875, + "x1": 593.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 535.6799926757812, + "y0": 329.0400085449219, + "x1": 593.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 535.6799926757812, + "y0": 313.9200134277344, + "x1": 593.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 299.1600036621094, + "x1": 593.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 535.6799926757812, + "y0": 284.0400085449219, + "x1": 593.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 535.6799926757812, + "y0": 269.280029296875, + "x1": 593.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 462.96002197265625, + "x1": 534.9599609375, + "y1": 477.7200012207031, + "width": 62.27996826171875, + "height": 14.759979248046875 + }, { + "x0": 472.67999267578125, + "y0": 448.20001220703125, + "x1": 534.9599609375, + "y1": 462.239990234375, + "width": 62.27996826171875, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 433.08001708984375, + "x1": 534.9599609375, + "y1": 447.47998046875, + "width": 62.27996826171875, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 418.32000732421875, + "x1": 534.9599609375, + "y1": 432.7200012207031, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 403.55999755859375, + "x1": 534.9599609375, + "y1": 417.6000061035156, + "width": 62.27996826171875, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 388.44000244140625, + "x1": 534.9599609375, + "y1": 402.8399963378906, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 373.67999267578125, + "x1": 534.9599609375, + "y1": 387.7200012207031, + "width": 62.27996826171875, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 358.55999755859375, + "x1": 534.9599609375, + "y1": 372.96002197265625, + "width": 62.27996826171875, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 343.79998779296875, + "x1": 534.9599609375, + "y1": 358.20001220703125, + "width": 62.27996826171875, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 329.0400085449219, + "x1": 534.9599609375, + "y1": 343.0799865722656, + "width": 62.27996826171875, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 313.9200134277344, + "x1": 534.9599609375, + "y1": 328.32000732421875, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 299.1600036621094, + "x1": 534.9599609375, + "y1": 313.20001220703125, + "width": 62.27996826171875, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 284.0400085449219, + "x1": 534.9599609375, + "y1": 298.44000244140625, + "width": 62.27996826171875, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 269.280029296875, + "x1": 534.9599609375, + "y1": 283.67999267578125, + "width": 62.27996826171875, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 471.9599914550781, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 471.9599914550781, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 471.9599914550781, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 471.9599914550781, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 471.9599914550781, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 471.9599914550781, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 471.9599914550781, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 471.9599914550781, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 471.9599914550781, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 471.9599914550781, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 471.9599914550781, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 471.9599914550781, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 471.9599914550781, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 471.9599914550781, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 353.8800048828125, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 77.39999389648438, + "height": 31.319976806640625 + }, { + "x0": 353.8800048828125, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 77.39999389648438, + "height": 14.03997802734375 + }, { + "x0": 353.8800048828125, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 77.39999389648438, + "height": 14.39996337890625 + }, { + "x0": 353.8800048828125, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 77.39999389648438, + "height": 14.399993896484375 + }, { + "x0": 353.8800048828125, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 77.39999389648438, + "height": 14.040008544921875 + }, { + "x0": 353.8800048828125, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 77.39999389648438, + "height": 14.399993896484375 + }, { + "x0": 353.8800048828125, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 77.39999389648438, + "height": 14.040008544921875 + }, { + "x0": 353.8800048828125, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 77.39999389648438, + "height": 14.4000244140625 + }, { + "x0": 353.8800048828125, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 77.39999389648438, + "height": 14.4000244140625 + }, { + "x0": 353.8800048828125, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 77.39999389648438, + "height": 14.03997802734375 + }, { + "x0": 353.8800048828125, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 77.39999389648438, + "height": 14.399993896484375 + }, { + "x0": 353.8800048828125, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 77.39999389648438, + "height": 14.040008544921875 + }, { + "x0": 353.8800048828125, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 77.39999389648438, + "height": 14.399993896484375 + }, { + "x0": 353.8800048828125, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 77.39999389648438, + "height": 14.39996337890625 + }, { + "x0": 328.67999267578125, + "y0": 462.96002197265625, + "x1": 353.1600036621094, + "y1": 494.2799987792969, + "width": 24.480010986328125, + "height": 31.319976806640625 + }, { + "x0": 328.67999267578125, + "y0": 448.20001220703125, + "x1": 353.1600036621094, + "y1": 462.239990234375, + "width": 24.480010986328125, + "height": 14.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 433.08001708984375, + "x1": 353.1600036621094, + "y1": 447.47998046875, + "width": 24.480010986328125, + "height": 14.39996337890625 + }, { + "x0": 328.67999267578125, + "y0": 418.32000732421875, + "x1": 353.1600036621094, + "y1": 432.7200012207031, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 403.55999755859375, + "x1": 353.1600036621094, + "y1": 417.6000061035156, + "width": 24.480010986328125, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 388.44000244140625, + "x1": 353.1600036621094, + "y1": 402.8399963378906, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 373.67999267578125, + "x1": 353.1600036621094, + "y1": 387.7200012207031, + "width": 24.480010986328125, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 358.55999755859375, + "x1": 353.1600036621094, + "y1": 372.96002197265625, + "width": 24.480010986328125, + "height": 14.4000244140625 + }, { + "x0": 328.67999267578125, + "y0": 343.79998779296875, + "x1": 353.1600036621094, + "y1": 358.20001220703125, + "width": 24.480010986328125, + "height": 14.4000244140625 + }, { + "x0": 328.67999267578125, + "y0": 329.0400085449219, + "x1": 353.1600036621094, + "y1": 343.0799865722656, + "width": 24.480010986328125, + "height": 14.03997802734375 + }, { + "x0": 328.67999267578125, + "y0": 313.9200134277344, + "x1": 353.1600036621094, + "y1": 328.32000732421875, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 299.1600036621094, + "x1": 353.1600036621094, + "y1": 313.20001220703125, + "width": 24.480010986328125, + "height": 14.040008544921875 + }, { + "x0": 328.67999267578125, + "y0": 284.0400085449219, + "x1": 353.1600036621094, + "y1": 298.44000244140625, + "width": 24.480010986328125, + "height": 14.399993896484375 + }, { + "x0": 328.67999267578125, + "y0": 269.280029296875, + "x1": 353.1600036621094, + "y1": 283.67999267578125, + "width": 24.480010986328125, + "height": 14.39996337890625 + }, { + "x0": 252.0, + "y0": 462.96002197265625, + "x1": 327.9599914550781, + "y1": 494.2799987792969, + "width": 75.95999145507812, + "height": 31.319976806640625 + }, { + "x0": 252.0, + "y0": 448.20001220703125, + "x1": 327.9599914550781, + "y1": 462.239990234375, + "width": 75.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 252.0, + "y0": 433.08001708984375, + "x1": 327.9599914550781, + "y1": 447.47998046875, + "width": 75.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 252.0, + "y0": 418.32000732421875, + "x1": 327.9599914550781, + "y1": 432.7200012207031, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 403.55999755859375, + "x1": 327.9599914550781, + "y1": 417.6000061035156, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 388.44000244140625, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 373.67999267578125, + "x1": 327.9599914550781, + "y1": 387.7200012207031, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 358.55999755859375, + "x1": 327.9599914550781, + "y1": 372.96002197265625, + "width": 75.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 252.0, + "y0": 343.79998779296875, + "x1": 327.9599914550781, + "y1": 358.20001220703125, + "width": 75.95999145507812, + "height": 14.4000244140625 + }, { + "x0": 252.0, + "y0": 329.0400085449219, + "x1": 327.9599914550781, + "y1": 343.0799865722656, + "width": 75.95999145507812, + "height": 14.03997802734375 + }, { + "x0": 252.0, + "y0": 313.9200134277344, + "x1": 327.9599914550781, + "y1": 328.32000732421875, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 299.1600036621094, + "x1": 327.9599914550781, + "y1": 313.20001220703125, + "width": 75.95999145507812, + "height": 14.040008544921875 + }, { + "x0": 252.0, + "y0": 284.0400085449219, + "x1": 327.9599914550781, + "y1": 298.44000244140625, + "width": 75.95999145507812, + "height": 14.399993896484375 + }, { + "x0": 252.0, + "y0": 269.280029296875, + "x1": 327.9599914550781, + "y1": 283.67999267578125, + "width": 75.95999145507812, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 462.96002197265625, + "x1": 251.280029296875, + "y1": 494.2799987792969, + "width": 57.60003662109375, + "height": 31.319976806640625 + }, { + "x0": 193.67999267578125, + "y0": 448.20001220703125, + "x1": 251.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 433.08001708984375, + "x1": 251.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 418.32000732421875, + "x1": 251.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 403.55999755859375, + "x1": 251.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 388.44000244140625, + "x1": 251.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 373.67999267578125, + "x1": 251.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 358.55999755859375, + "x1": 251.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 343.79998779296875, + "x1": 251.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 329.0400085449219, + "x1": 251.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 313.9200134277344, + "x1": 251.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 299.1600036621094, + "x1": 251.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 284.0400085449219, + "x1": 251.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 269.280029296875, + "x1": 251.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 144.0, + "y0": 462.96002197265625, + "x1": 192.96002197265625, + "y1": 494.2799987792969, + "width": 48.96002197265625, + "height": 31.319976806640625 + }, { + "x0": 144.0, + "y0": 448.20001220703125, + "x1": 192.96002197265625, + "y1": 462.239990234375, + "width": 48.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 144.0, + "y0": 433.08001708984375, + "x1": 192.96002197265625, + "y1": 447.47998046875, + "width": 48.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 144.0, + "y0": 418.32000732421875, + "x1": 192.96002197265625, + "y1": 432.7200012207031, + "width": 48.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 144.0, + "y0": 403.55999755859375, + "x1": 192.96002197265625, + "y1": 417.6000061035156, + "width": 48.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 144.0, + "y0": 388.44000244140625, + "x1": 192.96002197265625, + "y1": 402.8399963378906, + "width": 48.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 144.0, + "y0": 373.67999267578125, + "x1": 192.96002197265625, + "y1": 387.7200012207031, + "width": 48.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 144.0, + "y0": 358.55999755859375, + "x1": 192.96002197265625, + "y1": 372.96002197265625, + "width": 48.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 144.0, + "y0": 343.79998779296875, + "x1": 192.96002197265625, + "y1": 358.20001220703125, + "width": 48.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 144.0, + "y0": 329.0400085449219, + "x1": 192.96002197265625, + "y1": 343.0799865722656, + "width": 48.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 144.0, + "y0": 313.9200134277344, + "x1": 192.96002197265625, + "y1": 328.32000732421875, + "width": 48.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 144.0, + "y0": 299.1600036621094, + "x1": 192.96002197265625, + "y1": 313.20001220703125, + "width": 48.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 144.0, + "y0": 284.0400085449219, + "x1": 192.96002197265625, + "y1": 298.44000244140625, + "width": 48.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 144.0, + "y0": 269.280029296875, + "x1": 192.96002197265625, + "y1": 283.67999267578125, + "width": 48.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 143.280029296875, + "y1": 494.2799987792969, + "width": 72.0, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 143.280029296875, + "y1": 462.239990234375, + "width": 72.0, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 137, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 472.67999267578125, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 242.280029296875, + "height": 15.839996337890625 + }, { + "x0": 657.0, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 657.0, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 657.0, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 657.0, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 657.0, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 657.0, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 657.0, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 462.96002197265625, + "x1": 656.280029296875, + "y1": 477.7200012207031, + "width": 62.280029296875, + "height": 14.759979248046875 + }, { + "x0": 594.0, + "y0": 448.20001220703125, + "x1": 656.280029296875, + "y1": 462.239990234375, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 433.08001708984375, + "x1": 656.280029296875, + "y1": 447.47998046875, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 594.0, + "y0": 418.32000732421875, + "x1": 656.280029296875, + "y1": 432.7200012207031, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 403.55999755859375, + "x1": 656.280029296875, + "y1": 417.6000061035156, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 388.44000244140625, + "x1": 656.280029296875, + "y1": 402.8399963378906, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 373.67999267578125, + "x1": 656.280029296875, + "y1": 387.7200012207031, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 358.55999755859375, + "x1": 656.280029296875, + "y1": 372.96002197265625, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 343.79998779296875, + "x1": 656.280029296875, + "y1": 358.20001220703125, + "width": 62.280029296875, + "height": 14.4000244140625 + }, { + "x0": 594.0, + "y0": 329.0400085449219, + "x1": 656.280029296875, + "y1": 343.0799865722656, + "width": 62.280029296875, + "height": 14.03997802734375 + }, { + "x0": 594.0, + "y0": 313.9200134277344, + "x1": 656.280029296875, + "y1": 328.32000732421875, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 299.1600036621094, + "x1": 656.280029296875, + "y1": 313.20001220703125, + "width": 62.280029296875, + "height": 14.040008544921875 + }, { + "x0": 594.0, + "y0": 284.0400085449219, + "x1": 656.280029296875, + "y1": 298.44000244140625, + "width": 62.280029296875, + "height": 14.399993896484375 + }, { + "x0": 594.0, + "y0": 269.280029296875, + "x1": 656.280029296875, + "y1": 283.67999267578125, + "width": 62.280029296875, + "height": 14.39996337890625 + }, { + "x0": 540.0, + "y0": 462.96002197265625, + "x1": 593.280029296875, + "y1": 477.7200012207031, + "width": 53.280029296875, + "height": 14.759979248046875 + }, { + "x0": 540.0, + "y0": 448.20001220703125, + "x1": 593.280029296875, + "y1": 462.239990234375, + "width": 53.280029296875, + "height": 14.03997802734375 + }, { + "x0": 540.0, + "y0": 433.08001708984375, + "x1": 593.280029296875, + "y1": 447.47998046875, + "width": 53.280029296875, + "height": 14.39996337890625 + }, { + "x0": 540.0, + "y0": 418.32000732421875, + "x1": 593.280029296875, + "y1": 432.7200012207031, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 403.55999755859375, + "x1": 593.280029296875, + "y1": 417.6000061035156, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 388.44000244140625, + "x1": 593.280029296875, + "y1": 402.8399963378906, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 373.67999267578125, + "x1": 593.280029296875, + "y1": 387.7200012207031, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 358.55999755859375, + "x1": 593.280029296875, + "y1": 372.96002197265625, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 540.0, + "y0": 343.79998779296875, + "x1": 593.280029296875, + "y1": 358.20001220703125, + "width": 53.280029296875, + "height": 14.4000244140625 + }, { + "x0": 540.0, + "y0": 329.0400085449219, + "x1": 593.280029296875, + "y1": 343.0799865722656, + "width": 53.280029296875, + "height": 14.03997802734375 + }, { + "x0": 540.0, + "y0": 313.9200134277344, + "x1": 593.280029296875, + "y1": 328.32000732421875, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 299.1600036621094, + "x1": 593.280029296875, + "y1": 313.20001220703125, + "width": 53.280029296875, + "height": 14.040008544921875 + }, { + "x0": 540.0, + "y0": 284.0400085449219, + "x1": 593.280029296875, + "y1": 298.44000244140625, + "width": 53.280029296875, + "height": 14.399993896484375 + }, { + "x0": 540.0, + "y0": 269.280029296875, + "x1": 593.280029296875, + "y1": 283.67999267578125, + "width": 53.280029296875, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 462.96002197265625, + "x1": 539.280029296875, + "y1": 477.7200012207031, + "width": 66.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 472.67999267578125, + "y0": 448.20001220703125, + "x1": 539.280029296875, + "y1": 462.239990234375, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 433.08001708984375, + "x1": 539.280029296875, + "y1": 447.47998046875, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 472.67999267578125, + "y0": 418.32000732421875, + "x1": 539.280029296875, + "y1": 432.7200012207031, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 403.55999755859375, + "x1": 539.280029296875, + "y1": 417.6000061035156, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 388.44000244140625, + "x1": 539.280029296875, + "y1": 402.8399963378906, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 373.67999267578125, + "x1": 539.280029296875, + "y1": 387.7200012207031, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 358.55999755859375, + "x1": 539.280029296875, + "y1": 372.96002197265625, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 343.79998779296875, + "x1": 539.280029296875, + "y1": 358.20001220703125, + "width": 66.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 472.67999267578125, + "y0": 329.0400085449219, + "x1": 539.280029296875, + "y1": 343.0799865722656, + "width": 66.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 472.67999267578125, + "y0": 313.9200134277344, + "x1": 539.280029296875, + "y1": 328.32000732421875, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 299.1600036621094, + "x1": 539.280029296875, + "y1": 313.20001220703125, + "width": 66.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 472.67999267578125, + "y0": 284.0400085449219, + "x1": 539.280029296875, + "y1": 298.44000244140625, + "width": 66.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 472.67999267578125, + "y0": 269.280029296875, + "x1": 539.280029296875, + "y1": 283.67999267578125, + "width": 66.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 471.9599914550781, + "y1": 494.2799987792969, + "width": 39.959991455078125, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 471.9599914550781, + "y1": 462.239990234375, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 471.9599914550781, + "y1": 447.47998046875, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 471.9599914550781, + "y1": 432.7200012207031, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 471.9599914550781, + "y1": 417.6000061035156, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 471.9599914550781, + "y1": 402.8399963378906, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 471.9599914550781, + "y1": 387.7200012207031, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 471.9599914550781, + "y1": 372.96002197265625, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 471.9599914550781, + "y1": 358.20001220703125, + "width": 39.959991455078125, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 471.9599914550781, + "y1": 343.0799865722656, + "width": 39.959991455078125, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 471.9599914550781, + "y1": 328.32000732421875, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 471.9599914550781, + "y1": 313.20001220703125, + "width": 39.959991455078125, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 471.9599914550781, + "y1": 298.44000244140625, + "width": 39.959991455078125, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 471.9599914550781, + "y1": 283.67999267578125, + "width": 39.959991455078125, + "height": 14.39996337890625 + }, { + "x0": 353.5199890136719, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 77.760009765625, + "height": 31.319976806640625 + }, { + "x0": 353.5199890136719, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 77.760009765625, + "height": 14.03997802734375 + }, { + "x0": 353.5199890136719, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 77.760009765625, + "height": 14.39996337890625 + }, { + "x0": 353.5199890136719, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 77.760009765625, + "height": 14.399993896484375 + }, { + "x0": 353.5199890136719, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 77.760009765625, + "height": 14.040008544921875 + }, { + "x0": 353.5199890136719, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 77.760009765625, + "height": 14.399993896484375 + }, { + "x0": 353.5199890136719, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 77.760009765625, + "height": 14.040008544921875 + }, { + "x0": 353.5199890136719, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 77.760009765625, + "height": 14.4000244140625 + }, { + "x0": 353.5199890136719, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 77.760009765625, + "height": 14.4000244140625 + }, { + "x0": 353.5199890136719, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 77.760009765625, + "height": 14.03997802734375 + }, { + "x0": 353.5199890136719, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 77.760009765625, + "height": 14.399993896484375 + }, { + "x0": 353.5199890136719, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 77.760009765625, + "height": 14.040008544921875 + }, { + "x0": 353.5199890136719, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 77.760009765625, + "height": 14.399993896484375 + }, { + "x0": 353.5199890136719, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 77.760009765625, + "height": 14.39996337890625 + }, { + "x0": 328.32000732421875, + "y0": 462.96002197265625, + "x1": 352.79998779296875, + "y1": 494.2799987792969, + "width": 24.47998046875, + "height": 31.319976806640625 + }, { + "x0": 328.32000732421875, + "y0": 448.20001220703125, + "x1": 352.79998779296875, + "y1": 462.239990234375, + "width": 24.47998046875, + "height": 14.03997802734375 + }, { + "x0": 328.32000732421875, + "y0": 433.08001708984375, + "x1": 352.79998779296875, + "y1": 447.47998046875, + "width": 24.47998046875, + "height": 14.39996337890625 + }, { + "x0": 328.32000732421875, + "y0": 418.32000732421875, + "x1": 352.79998779296875, + "y1": 432.7200012207031, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 328.32000732421875, + "y0": 403.55999755859375, + "x1": 352.79998779296875, + "y1": 417.6000061035156, + "width": 24.47998046875, + "height": 14.040008544921875 + }, { + "x0": 328.32000732421875, + "y0": 388.44000244140625, + "x1": 352.79998779296875, + "y1": 402.8399963378906, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 328.32000732421875, + "y0": 373.67999267578125, + "x1": 352.79998779296875, + "y1": 387.7200012207031, + "width": 24.47998046875, + "height": 14.040008544921875 + }, { + "x0": 328.32000732421875, + "y0": 358.55999755859375, + "x1": 352.79998779296875, + "y1": 372.96002197265625, + "width": 24.47998046875, + "height": 14.4000244140625 + }, { + "x0": 328.32000732421875, + "y0": 343.79998779296875, + "x1": 352.79998779296875, + "y1": 358.20001220703125, + "width": 24.47998046875, + "height": 14.4000244140625 + }, { + "x0": 328.32000732421875, + "y0": 329.0400085449219, + "x1": 352.79998779296875, + "y1": 343.0799865722656, + "width": 24.47998046875, + "height": 14.03997802734375 + }, { + "x0": 328.32000732421875, + "y0": 313.9200134277344, + "x1": 352.79998779296875, + "y1": 328.32000732421875, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 328.32000732421875, + "y0": 299.1600036621094, + "x1": 352.79998779296875, + "y1": 313.20001220703125, + "width": 24.47998046875, + "height": 14.040008544921875 + }, { + "x0": 328.32000732421875, + "y0": 284.0400085449219, + "x1": 352.79998779296875, + "y1": 298.44000244140625, + "width": 24.47998046875, + "height": 14.399993896484375 + }, { + "x0": 328.32000732421875, + "y0": 269.280029296875, + "x1": 352.79998779296875, + "y1": 283.67999267578125, + "width": 24.47998046875, + "height": 14.39996337890625 + }, { + "x0": 252.3599853515625, + "y0": 462.96002197265625, + "x1": 327.6000061035156, + "y1": 494.2799987792969, + "width": 75.24002075195312, + "height": 31.319976806640625 + }, { + "x0": 252.3599853515625, + "y0": 448.20001220703125, + "x1": 327.6000061035156, + "y1": 462.239990234375, + "width": 75.24002075195312, + "height": 14.03997802734375 + }, { + "x0": 252.3599853515625, + "y0": 433.08001708984375, + "x1": 327.6000061035156, + "y1": 447.47998046875, + "width": 75.24002075195312, + "height": 14.39996337890625 + }, { + "x0": 252.3599853515625, + "y0": 418.32000732421875, + "x1": 327.6000061035156, + "y1": 432.7200012207031, + "width": 75.24002075195312, + "height": 14.399993896484375 + }, { + "x0": 252.3599853515625, + "y0": 403.55999755859375, + "x1": 327.6000061035156, + "y1": 417.6000061035156, + "width": 75.24002075195312, + "height": 14.040008544921875 + }, { + "x0": 252.3599853515625, + "y0": 388.44000244140625, + "x1": 327.6000061035156, + "y1": 402.8399963378906, + "width": 75.24002075195312, + "height": 14.399993896484375 + }, { + "x0": 252.3599853515625, + "y0": 373.67999267578125, + "x1": 327.6000061035156, + "y1": 387.7200012207031, + "width": 75.24002075195312, + "height": 14.040008544921875 + }, { + "x0": 252.3599853515625, + "y0": 358.55999755859375, + "x1": 327.6000061035156, + "y1": 372.96002197265625, + "width": 75.24002075195312, + "height": 14.4000244140625 + }, { + "x0": 252.3599853515625, + "y0": 343.79998779296875, + "x1": 327.6000061035156, + "y1": 358.20001220703125, + "width": 75.24002075195312, + "height": 14.4000244140625 + }, { + "x0": 252.3599853515625, + "y0": 329.0400085449219, + "x1": 327.6000061035156, + "y1": 343.0799865722656, + "width": 75.24002075195312, + "height": 14.03997802734375 + }, { + "x0": 252.3599853515625, + "y0": 313.9200134277344, + "x1": 327.6000061035156, + "y1": 328.32000732421875, + "width": 75.24002075195312, + "height": 14.399993896484375 + }, { + "x0": 252.3599853515625, + "y0": 299.1600036621094, + "x1": 327.6000061035156, + "y1": 313.20001220703125, + "width": 75.24002075195312, + "height": 14.040008544921875 + }, { + "x0": 252.3599853515625, + "y0": 284.0400085449219, + "x1": 327.6000061035156, + "y1": 298.44000244140625, + "width": 75.24002075195312, + "height": 14.399993896484375 + }, { + "x0": 252.3599853515625, + "y0": 269.280029296875, + "x1": 327.6000061035156, + "y1": 283.67999267578125, + "width": 75.24002075195312, + "height": 14.39996337890625 + }, { + "x0": 192.5999755859375, + "y0": 462.96002197265625, + "x1": 251.6400146484375, + "y1": 494.2799987792969, + "width": 59.0400390625, + "height": 31.319976806640625 + }, { + "x0": 192.5999755859375, + "y0": 448.20001220703125, + "x1": 251.6400146484375, + "y1": 462.239990234375, + "width": 59.0400390625, + "height": 14.03997802734375 + }, { + "x0": 192.5999755859375, + "y0": 433.08001708984375, + "x1": 251.6400146484375, + "y1": 447.47998046875, + "width": 59.0400390625, + "height": 14.39996337890625 + }, { + "x0": 192.5999755859375, + "y0": 418.32000732421875, + "x1": 251.6400146484375, + "y1": 432.7200012207031, + "width": 59.0400390625, + "height": 14.399993896484375 + }, { + "x0": 192.5999755859375, + "y0": 403.55999755859375, + "x1": 251.6400146484375, + "y1": 417.6000061035156, + "width": 59.0400390625, + "height": 14.040008544921875 + }, { + "x0": 192.5999755859375, + "y0": 388.44000244140625, + "x1": 251.6400146484375, + "y1": 402.8399963378906, + "width": 59.0400390625, + "height": 14.399993896484375 + }, { + "x0": 192.5999755859375, + "y0": 373.67999267578125, + "x1": 251.6400146484375, + "y1": 387.7200012207031, + "width": 59.0400390625, + "height": 14.040008544921875 + }, { + "x0": 192.5999755859375, + "y0": 358.55999755859375, + "x1": 251.6400146484375, + "y1": 372.96002197265625, + "width": 59.0400390625, + "height": 14.4000244140625 + }, { + "x0": 192.5999755859375, + "y0": 343.79998779296875, + "x1": 251.6400146484375, + "y1": 358.20001220703125, + "width": 59.0400390625, + "height": 14.4000244140625 + }, { + "x0": 192.5999755859375, + "y0": 329.0400085449219, + "x1": 251.6400146484375, + "y1": 343.0799865722656, + "width": 59.0400390625, + "height": 14.03997802734375 + }, { + "x0": 192.5999755859375, + "y0": 313.9200134277344, + "x1": 251.6400146484375, + "y1": 328.32000732421875, + "width": 59.0400390625, + "height": 14.399993896484375 + }, { + "x0": 192.5999755859375, + "y0": 299.1600036621094, + "x1": 251.6400146484375, + "y1": 313.20001220703125, + "width": 59.0400390625, + "height": 14.040008544921875 + }, { + "x0": 192.5999755859375, + "y0": 284.0400085449219, + "x1": 251.6400146484375, + "y1": 298.44000244140625, + "width": 59.0400390625, + "height": 14.399993896484375 + }, { + "x0": 192.5999755859375, + "y0": 269.280029296875, + "x1": 251.6400146484375, + "y1": 283.67999267578125, + "width": 59.0400390625, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 462.96002197265625, + "x1": 191.8800048828125, + "y1": 494.2799987792969, + "width": 44.6400146484375, + "height": 31.319976806640625 + }, { + "x0": 147.239990234375, + "y0": 448.20001220703125, + "x1": 191.8800048828125, + "y1": 462.239990234375, + "width": 44.6400146484375, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 433.08001708984375, + "x1": 191.8800048828125, + "y1": 447.47998046875, + "width": 44.6400146484375, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 418.32000732421875, + "x1": 191.8800048828125, + "y1": 432.7200012207031, + "width": 44.6400146484375, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 403.55999755859375, + "x1": 191.8800048828125, + "y1": 417.6000061035156, + "width": 44.6400146484375, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 388.44000244140625, + "x1": 191.8800048828125, + "y1": 402.8399963378906, + "width": 44.6400146484375, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 373.67999267578125, + "x1": 191.8800048828125, + "y1": 387.7200012207031, + "width": 44.6400146484375, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 358.55999755859375, + "x1": 191.8800048828125, + "y1": 372.96002197265625, + "width": 44.6400146484375, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 343.79998779296875, + "x1": 191.8800048828125, + "y1": 358.20001220703125, + "width": 44.6400146484375, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 329.0400085449219, + "x1": 191.8800048828125, + "y1": 343.0799865722656, + "width": 44.6400146484375, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 313.9200134277344, + "x1": 191.8800048828125, + "y1": 328.32000732421875, + "width": 44.6400146484375, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 299.1600036621094, + "x1": 191.8800048828125, + "y1": 313.20001220703125, + "width": 44.6400146484375, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 284.0400085449219, + "x1": 191.8800048828125, + "y1": 298.44000244140625, + "width": 44.6400146484375, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 269.280029296875, + "x1": 191.8800048828125, + "y1": 283.67999267578125, + "width": 44.6400146484375, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 146.52001953125, + "y1": 494.2799987792969, + "width": 75.239990234375, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 146.52001953125, + "y1": 462.239990234375, + "width": 75.239990234375, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 138, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 471.239990234375, + "y0": 478.44000244140625, + "x1": 714.9600219726562, + "y1": 494.2799987792969, + "width": 243.72003173828125, + "height": 15.839996337890625 + }, { + "x0": 657.0, + "y0": 462.96002197265625, + "x1": 714.9600219726562, + "y1": 477.7200012207031, + "width": 57.96002197265625, + "height": 14.759979248046875 + }, { + "x0": 657.0, + "y0": 448.20001220703125, + "x1": 714.9600219726562, + "y1": 462.239990234375, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 657.0, + "y0": 433.08001708984375, + "x1": 714.9600219726562, + "y1": 447.47998046875, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 657.0, + "y0": 418.32000732421875, + "x1": 714.9600219726562, + "y1": 432.7200012207031, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 403.55999755859375, + "x1": 714.9600219726562, + "y1": 417.6000061035156, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 388.44000244140625, + "x1": 714.9600219726562, + "y1": 402.8399963378906, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 373.67999267578125, + "x1": 714.9600219726562, + "y1": 387.7200012207031, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 358.55999755859375, + "x1": 714.9600219726562, + "y1": 372.96002197265625, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 657.0, + "y0": 343.79998779296875, + "x1": 714.9600219726562, + "y1": 358.20001220703125, + "width": 57.96002197265625, + "height": 14.4000244140625 + }, { + "x0": 657.0, + "y0": 329.0400085449219, + "x1": 714.9600219726562, + "y1": 343.0799865722656, + "width": 57.96002197265625, + "height": 14.03997802734375 + }, { + "x0": 657.0, + "y0": 313.9200134277344, + "x1": 714.9600219726562, + "y1": 328.32000732421875, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 299.1600036621094, + "x1": 714.9600219726562, + "y1": 313.20001220703125, + "width": 57.96002197265625, + "height": 14.040008544921875 + }, { + "x0": 657.0, + "y0": 284.0400085449219, + "x1": 714.9600219726562, + "y1": 298.44000244140625, + "width": 57.96002197265625, + "height": 14.399993896484375 + }, { + "x0": 657.0, + "y0": 269.280029296875, + "x1": 714.9600219726562, + "y1": 283.67999267578125, + "width": 57.96002197265625, + "height": 14.39996337890625 + }, { + "x0": 598.6799926757812, + "y0": 462.96002197265625, + "x1": 656.280029296875, + "y1": 477.7200012207031, + "width": 57.60003662109375, + "height": 14.759979248046875 + }, { + "x0": 598.6799926757812, + "y0": 448.20001220703125, + "x1": 656.280029296875, + "y1": 462.239990234375, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 598.6799926757812, + "y0": 433.08001708984375, + "x1": 656.280029296875, + "y1": 447.47998046875, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 598.6799926757812, + "y0": 418.32000732421875, + "x1": 656.280029296875, + "y1": 432.7200012207031, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 598.6799926757812, + "y0": 403.55999755859375, + "x1": 656.280029296875, + "y1": 417.6000061035156, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 598.6799926757812, + "y0": 388.44000244140625, + "x1": 656.280029296875, + "y1": 402.8399963378906, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 598.6799926757812, + "y0": 373.67999267578125, + "x1": 656.280029296875, + "y1": 387.7200012207031, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 598.6799926757812, + "y0": 358.55999755859375, + "x1": 656.280029296875, + "y1": 372.96002197265625, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 598.6799926757812, + "y0": 343.79998779296875, + "x1": 656.280029296875, + "y1": 358.20001220703125, + "width": 57.60003662109375, + "height": 14.4000244140625 + }, { + "x0": 598.6799926757812, + "y0": 329.0400085449219, + "x1": 656.280029296875, + "y1": 343.0799865722656, + "width": 57.60003662109375, + "height": 14.03997802734375 + }, { + "x0": 598.6799926757812, + "y0": 313.9200134277344, + "x1": 656.280029296875, + "y1": 328.32000732421875, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 598.6799926757812, + "y0": 299.1600036621094, + "x1": 656.280029296875, + "y1": 313.20001220703125, + "width": 57.60003662109375, + "height": 14.040008544921875 + }, { + "x0": 598.6799926757812, + "y0": 284.0400085449219, + "x1": 656.280029296875, + "y1": 298.44000244140625, + "width": 57.60003662109375, + "height": 14.399993896484375 + }, { + "x0": 598.6799926757812, + "y0": 269.280029296875, + "x1": 656.280029296875, + "y1": 283.67999267578125, + "width": 57.60003662109375, + "height": 14.39996337890625 + }, { + "x0": 533.8800048828125, + "y0": 462.96002197265625, + "x1": 597.9600219726562, + "y1": 477.7200012207031, + "width": 64.08001708984375, + "height": 14.759979248046875 + }, { + "x0": 533.8800048828125, + "y0": 448.20001220703125, + "x1": 597.9600219726562, + "y1": 462.239990234375, + "width": 64.08001708984375, + "height": 14.03997802734375 + }, { + "x0": 533.8800048828125, + "y0": 433.08001708984375, + "x1": 597.9600219726562, + "y1": 447.47998046875, + "width": 64.08001708984375, + "height": 14.39996337890625 + }, { + "x0": 533.8800048828125, + "y0": 418.32000732421875, + "x1": 597.9600219726562, + "y1": 432.7200012207031, + "width": 64.08001708984375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 403.55999755859375, + "x1": 597.9600219726562, + "y1": 417.6000061035156, + "width": 64.08001708984375, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 388.44000244140625, + "x1": 597.9600219726562, + "y1": 402.8399963378906, + "width": 64.08001708984375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 373.67999267578125, + "x1": 597.9600219726562, + "y1": 387.7200012207031, + "width": 64.08001708984375, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 358.55999755859375, + "x1": 597.9600219726562, + "y1": 372.96002197265625, + "width": 64.08001708984375, + "height": 14.4000244140625 + }, { + "x0": 533.8800048828125, + "y0": 343.79998779296875, + "x1": 597.9600219726562, + "y1": 358.20001220703125, + "width": 64.08001708984375, + "height": 14.4000244140625 + }, { + "x0": 533.8800048828125, + "y0": 329.0400085449219, + "x1": 597.9600219726562, + "y1": 343.0799865722656, + "width": 64.08001708984375, + "height": 14.03997802734375 + }, { + "x0": 533.8800048828125, + "y0": 313.9200134277344, + "x1": 597.9600219726562, + "y1": 328.32000732421875, + "width": 64.08001708984375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 299.1600036621094, + "x1": 597.9600219726562, + "y1": 313.20001220703125, + "width": 64.08001708984375, + "height": 14.040008544921875 + }, { + "x0": 533.8800048828125, + "y0": 284.0400085449219, + "x1": 597.9600219726562, + "y1": 298.44000244140625, + "width": 64.08001708984375, + "height": 14.399993896484375 + }, { + "x0": 533.8800048828125, + "y0": 269.280029296875, + "x1": 597.9600219726562, + "y1": 283.67999267578125, + "width": 64.08001708984375, + "height": 14.39996337890625 + }, { + "x0": 471.239990234375, + "y0": 462.96002197265625, + "x1": 533.1600341796875, + "y1": 477.7200012207031, + "width": 61.9200439453125, + "height": 14.759979248046875 + }, { + "x0": 471.239990234375, + "y0": 448.20001220703125, + "x1": 533.1600341796875, + "y1": 462.239990234375, + "width": 61.9200439453125, + "height": 14.03997802734375 + }, { + "x0": 471.239990234375, + "y0": 433.08001708984375, + "x1": 533.1600341796875, + "y1": 447.47998046875, + "width": 61.9200439453125, + "height": 14.39996337890625 + }, { + "x0": 471.239990234375, + "y0": 418.32000732421875, + "x1": 533.1600341796875, + "y1": 432.7200012207031, + "width": 61.9200439453125, + "height": 14.399993896484375 + }, { + "x0": 471.239990234375, + "y0": 403.55999755859375, + "x1": 533.1600341796875, + "y1": 417.6000061035156, + "width": 61.9200439453125, + "height": 14.040008544921875 + }, { + "x0": 471.239990234375, + "y0": 388.44000244140625, + "x1": 533.1600341796875, + "y1": 402.8399963378906, + "width": 61.9200439453125, + "height": 14.399993896484375 + }, { + "x0": 471.239990234375, + "y0": 373.67999267578125, + "x1": 533.1600341796875, + "y1": 387.7200012207031, + "width": 61.9200439453125, + "height": 14.040008544921875 + }, { + "x0": 471.239990234375, + "y0": 358.55999755859375, + "x1": 533.1600341796875, + "y1": 372.96002197265625, + "width": 61.9200439453125, + "height": 14.4000244140625 + }, { + "x0": 471.239990234375, + "y0": 343.79998779296875, + "x1": 533.1600341796875, + "y1": 358.20001220703125, + "width": 61.9200439453125, + "height": 14.4000244140625 + }, { + "x0": 471.239990234375, + "y0": 329.0400085449219, + "x1": 533.1600341796875, + "y1": 343.0799865722656, + "width": 61.9200439453125, + "height": 14.03997802734375 + }, { + "x0": 471.239990234375, + "y0": 313.9200134277344, + "x1": 533.1600341796875, + "y1": 328.32000732421875, + "width": 61.9200439453125, + "height": 14.399993896484375 + }, { + "x0": 471.239990234375, + "y0": 299.1600036621094, + "x1": 533.1600341796875, + "y1": 313.20001220703125, + "width": 61.9200439453125, + "height": 14.040008544921875 + }, { + "x0": 471.239990234375, + "y0": 284.0400085449219, + "x1": 533.1600341796875, + "y1": 298.44000244140625, + "width": 61.9200439453125, + "height": 14.399993896484375 + }, { + "x0": 471.239990234375, + "y0": 269.280029296875, + "x1": 533.1600341796875, + "y1": 283.67999267578125, + "width": 61.9200439453125, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 462.96002197265625, + "x1": 470.5199890136719, + "y1": 494.2799987792969, + "width": 38.519989013671875, + "height": 31.319976806640625 + }, { + "x0": 432.0, + "y0": 448.20001220703125, + "x1": 470.5199890136719, + "y1": 462.239990234375, + "width": 38.519989013671875, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 433.08001708984375, + "x1": 470.5199890136719, + "y1": 447.47998046875, + "width": 38.519989013671875, + "height": 14.39996337890625 + }, { + "x0": 432.0, + "y0": 418.32000732421875, + "x1": 470.5199890136719, + "y1": 432.7200012207031, + "width": 38.519989013671875, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 403.55999755859375, + "x1": 470.5199890136719, + "y1": 417.6000061035156, + "width": 38.519989013671875, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 388.44000244140625, + "x1": 470.5199890136719, + "y1": 402.8399963378906, + "width": 38.519989013671875, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 373.67999267578125, + "x1": 470.5199890136719, + "y1": 387.7200012207031, + "width": 38.519989013671875, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 358.55999755859375, + "x1": 470.5199890136719, + "y1": 372.96002197265625, + "width": 38.519989013671875, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 343.79998779296875, + "x1": 470.5199890136719, + "y1": 358.20001220703125, + "width": 38.519989013671875, + "height": 14.4000244140625 + }, { + "x0": 432.0, + "y0": 329.0400085449219, + "x1": 470.5199890136719, + "y1": 343.0799865722656, + "width": 38.519989013671875, + "height": 14.03997802734375 + }, { + "x0": 432.0, + "y0": 313.9200134277344, + "x1": 470.5199890136719, + "y1": 328.32000732421875, + "width": 38.519989013671875, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 299.1600036621094, + "x1": 470.5199890136719, + "y1": 313.20001220703125, + "width": 38.519989013671875, + "height": 14.040008544921875 + }, { + "x0": 432.0, + "y0": 284.0400085449219, + "x1": 470.5199890136719, + "y1": 298.44000244140625, + "width": 38.519989013671875, + "height": 14.399993896484375 + }, { + "x0": 432.0, + "y0": 269.280029296875, + "x1": 470.5199890136719, + "y1": 283.67999267578125, + "width": 38.519989013671875, + "height": 14.39996337890625 + }, { + "x0": 360.0, + "y0": 462.96002197265625, + "x1": 431.2799987792969, + "y1": 494.2799987792969, + "width": 71.27999877929688, + "height": 31.319976806640625 + }, { + "x0": 360.0, + "y0": 448.20001220703125, + "x1": 431.2799987792969, + "y1": 462.239990234375, + "width": 71.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 360.0, + "y0": 433.08001708984375, + "x1": 431.2799987792969, + "y1": 447.47998046875, + "width": 71.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 360.0, + "y0": 418.32000732421875, + "x1": 431.2799987792969, + "y1": 432.7200012207031, + "width": 71.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 360.0, + "y0": 403.55999755859375, + "x1": 431.2799987792969, + "y1": 417.6000061035156, + "width": 71.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 360.0, + "y0": 388.44000244140625, + "x1": 431.2799987792969, + "y1": 402.8399963378906, + "width": 71.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 360.0, + "y0": 373.67999267578125, + "x1": 431.2799987792969, + "y1": 387.7200012207031, + "width": 71.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 360.0, + "y0": 358.55999755859375, + "x1": 431.2799987792969, + "y1": 372.96002197265625, + "width": 71.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 360.0, + "y0": 343.79998779296875, + "x1": 431.2799987792969, + "y1": 358.20001220703125, + "width": 71.27999877929688, + "height": 14.4000244140625 + }, { + "x0": 360.0, + "y0": 329.0400085449219, + "x1": 431.2799987792969, + "y1": 343.0799865722656, + "width": 71.27999877929688, + "height": 14.03997802734375 + }, { + "x0": 360.0, + "y0": 313.9200134277344, + "x1": 431.2799987792969, + "y1": 328.32000732421875, + "width": 71.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 360.0, + "y0": 299.1600036621094, + "x1": 431.2799987792969, + "y1": 313.20001220703125, + "width": 71.27999877929688, + "height": 14.040008544921875 + }, { + "x0": 360.0, + "y0": 284.0400085449219, + "x1": 431.2799987792969, + "y1": 298.44000244140625, + "width": 71.27999877929688, + "height": 14.399993896484375 + }, { + "x0": 360.0, + "y0": 269.280029296875, + "x1": 431.2799987792969, + "y1": 283.67999267578125, + "width": 71.27999877929688, + "height": 14.39996337890625 + }, { + "x0": 329.0400085449219, + "y0": 462.96002197265625, + "x1": 359.2799987792969, + "y1": 494.2799987792969, + "width": 30.239990234375, + "height": 31.319976806640625 + }, { + "x0": 329.0400085449219, + "y0": 448.20001220703125, + "x1": 359.2799987792969, + "y1": 462.239990234375, + "width": 30.239990234375, + "height": 14.03997802734375 + }, { + "x0": 329.0400085449219, + "y0": 433.08001708984375, + "x1": 359.2799987792969, + "y1": 447.47998046875, + "width": 30.239990234375, + "height": 14.39996337890625 + }, { + "x0": 329.0400085449219, + "y0": 418.32000732421875, + "x1": 359.2799987792969, + "y1": 432.7200012207031, + "width": 30.239990234375, + "height": 14.399993896484375 + }, { + "x0": 329.0400085449219, + "y0": 403.55999755859375, + "x1": 359.2799987792969, + "y1": 417.6000061035156, + "width": 30.239990234375, + "height": 14.040008544921875 + }, { + "x0": 329.0400085449219, + "y0": 388.44000244140625, + "x1": 359.2799987792969, + "y1": 402.8399963378906, + "width": 30.239990234375, + "height": 14.399993896484375 + }, { + "x0": 329.0400085449219, + "y0": 373.67999267578125, + "x1": 359.2799987792969, + "y1": 387.7200012207031, + "width": 30.239990234375, + "height": 14.040008544921875 + }, { + "x0": 329.0400085449219, + "y0": 358.55999755859375, + "x1": 359.2799987792969, + "y1": 372.96002197265625, + "width": 30.239990234375, + "height": 14.4000244140625 + }, { + "x0": 329.0400085449219, + "y0": 343.79998779296875, + "x1": 359.2799987792969, + "y1": 358.20001220703125, + "width": 30.239990234375, + "height": 14.4000244140625 + }, { + "x0": 329.0400085449219, + "y0": 329.0400085449219, + "x1": 359.2799987792969, + "y1": 343.0799865722656, + "width": 30.239990234375, + "height": 14.03997802734375 + }, { + "x0": 329.0400085449219, + "y0": 313.9200134277344, + "x1": 359.2799987792969, + "y1": 328.32000732421875, + "width": 30.239990234375, + "height": 14.399993896484375 + }, { + "x0": 329.0400085449219, + "y0": 299.1600036621094, + "x1": 359.2799987792969, + "y1": 313.20001220703125, + "width": 30.239990234375, + "height": 14.040008544921875 + }, { + "x0": 329.0400085449219, + "y0": 284.0400085449219, + "x1": 359.2799987792969, + "y1": 298.44000244140625, + "width": 30.239990234375, + "height": 14.399993896484375 + }, { + "x0": 329.0400085449219, + "y0": 269.280029296875, + "x1": 359.2799987792969, + "y1": 283.67999267578125, + "width": 30.239990234375, + "height": 14.39996337890625 + }, { + "x0": 254.15997314453125, + "y0": 462.96002197265625, + "x1": 328.32000732421875, + "y1": 494.2799987792969, + "width": 74.1600341796875, + "height": 31.319976806640625 + }, { + "x0": 254.15997314453125, + "y0": 448.20001220703125, + "x1": 328.32000732421875, + "y1": 462.239990234375, + "width": 74.1600341796875, + "height": 14.03997802734375 + }, { + "x0": 254.15997314453125, + "y0": 433.08001708984375, + "x1": 328.32000732421875, + "y1": 447.47998046875, + "width": 74.1600341796875, + "height": 14.39996337890625 + }, { + "x0": 254.15997314453125, + "y0": 418.32000732421875, + "x1": 328.32000732421875, + "y1": 432.7200012207031, + "width": 74.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 403.55999755859375, + "x1": 328.32000732421875, + "y1": 417.6000061035156, + "width": 74.1600341796875, + "height": 14.040008544921875 + }, { + "x0": 254.15997314453125, + "y0": 388.44000244140625, + "x1": 328.32000732421875, + "y1": 402.8399963378906, + "width": 74.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 373.67999267578125, + "x1": 328.32000732421875, + "y1": 387.7200012207031, + "width": 74.1600341796875, + "height": 14.040008544921875 + }, { + "x0": 254.15997314453125, + "y0": 358.55999755859375, + "x1": 328.32000732421875, + "y1": 372.96002197265625, + "width": 74.1600341796875, + "height": 14.4000244140625 + }, { + "x0": 254.15997314453125, + "y0": 343.79998779296875, + "x1": 328.32000732421875, + "y1": 358.20001220703125, + "width": 74.1600341796875, + "height": 14.4000244140625 + }, { + "x0": 254.15997314453125, + "y0": 329.0400085449219, + "x1": 328.32000732421875, + "y1": 343.0799865722656, + "width": 74.1600341796875, + "height": 14.03997802734375 + }, { + "x0": 254.15997314453125, + "y0": 313.9200134277344, + "x1": 328.32000732421875, + "y1": 328.32000732421875, + "width": 74.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 299.1600036621094, + "x1": 328.32000732421875, + "y1": 313.20001220703125, + "width": 74.1600341796875, + "height": 14.040008544921875 + }, { + "x0": 254.15997314453125, + "y0": 284.0400085449219, + "x1": 328.32000732421875, + "y1": 298.44000244140625, + "width": 74.1600341796875, + "height": 14.399993896484375 + }, { + "x0": 254.15997314453125, + "y0": 269.280029296875, + "x1": 328.32000732421875, + "y1": 283.67999267578125, + "width": 74.1600341796875, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 462.96002197265625, + "x1": 253.44000244140625, + "y1": 494.2799987792969, + "width": 59.760009765625, + "height": 31.319976806640625 + }, { + "x0": 193.67999267578125, + "y0": 448.20001220703125, + "x1": 253.44000244140625, + "y1": 462.239990234375, + "width": 59.760009765625, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 433.08001708984375, + "x1": 253.44000244140625, + "y1": 447.47998046875, + "width": 59.760009765625, + "height": 14.39996337890625 + }, { + "x0": 193.67999267578125, + "y0": 418.32000732421875, + "x1": 253.44000244140625, + "y1": 432.7200012207031, + "width": 59.760009765625, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 403.55999755859375, + "x1": 253.44000244140625, + "y1": 417.6000061035156, + "width": 59.760009765625, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 388.44000244140625, + "x1": 253.44000244140625, + "y1": 402.8399963378906, + "width": 59.760009765625, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 373.67999267578125, + "x1": 253.44000244140625, + "y1": 387.7200012207031, + "width": 59.760009765625, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 358.55999755859375, + "x1": 253.44000244140625, + "y1": 372.96002197265625, + "width": 59.760009765625, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 343.79998779296875, + "x1": 253.44000244140625, + "y1": 358.20001220703125, + "width": 59.760009765625, + "height": 14.4000244140625 + }, { + "x0": 193.67999267578125, + "y0": 329.0400085449219, + "x1": 253.44000244140625, + "y1": 343.0799865722656, + "width": 59.760009765625, + "height": 14.03997802734375 + }, { + "x0": 193.67999267578125, + "y0": 313.9200134277344, + "x1": 253.44000244140625, + "y1": 328.32000732421875, + "width": 59.760009765625, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 299.1600036621094, + "x1": 253.44000244140625, + "y1": 313.20001220703125, + "width": 59.760009765625, + "height": 14.040008544921875 + }, { + "x0": 193.67999267578125, + "y0": 284.0400085449219, + "x1": 253.44000244140625, + "y1": 298.44000244140625, + "width": 59.760009765625, + "height": 14.399993896484375 + }, { + "x0": 193.67999267578125, + "y0": 269.280029296875, + "x1": 253.44000244140625, + "y1": 283.67999267578125, + "width": 59.760009765625, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 462.96002197265625, + "x1": 192.96002197265625, + "y1": 494.2799987792969, + "width": 45.72003173828125, + "height": 31.319976806640625 + }, { + "x0": 147.239990234375, + "y0": 448.20001220703125, + "x1": 192.96002197265625, + "y1": 462.239990234375, + "width": 45.72003173828125, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 433.08001708984375, + "x1": 192.96002197265625, + "y1": 447.47998046875, + "width": 45.72003173828125, + "height": 14.39996337890625 + }, { + "x0": 147.239990234375, + "y0": 418.32000732421875, + "x1": 192.96002197265625, + "y1": 432.7200012207031, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 403.55999755859375, + "x1": 192.96002197265625, + "y1": 417.6000061035156, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 388.44000244140625, + "x1": 192.96002197265625, + "y1": 402.8399963378906, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 373.67999267578125, + "x1": 192.96002197265625, + "y1": 387.7200012207031, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 358.55999755859375, + "x1": 192.96002197265625, + "y1": 372.96002197265625, + "width": 45.72003173828125, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 343.79998779296875, + "x1": 192.96002197265625, + "y1": 358.20001220703125, + "width": 45.72003173828125, + "height": 14.4000244140625 + }, { + "x0": 147.239990234375, + "y0": 329.0400085449219, + "x1": 192.96002197265625, + "y1": 343.0799865722656, + "width": 45.72003173828125, + "height": 14.03997802734375 + }, { + "x0": 147.239990234375, + "y0": 313.9200134277344, + "x1": 192.96002197265625, + "y1": 328.32000732421875, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 299.1600036621094, + "x1": 192.96002197265625, + "y1": 313.20001220703125, + "width": 45.72003173828125, + "height": 14.040008544921875 + }, { + "x0": 147.239990234375, + "y0": 284.0400085449219, + "x1": 192.96002197265625, + "y1": 298.44000244140625, + "width": 45.72003173828125, + "height": 14.399993896484375 + }, { + "x0": 147.239990234375, + "y0": 269.280029296875, + "x1": 192.96002197265625, + "y1": 283.67999267578125, + "width": 45.72003173828125, + "height": 14.39996337890625 + }, { + "x0": 71.280029296875, + "y0": 462.96002197265625, + "x1": 146.52001953125, + "y1": 494.2799987792969, + "width": 75.239990234375, + "height": 31.319976806640625 + }, { + "x0": 71.280029296875, + "y0": 269.280029296875, + "x1": 146.52001953125, + "y1": 462.239990234375, + "width": 75.239990234375, + "height": 192.9599609375 + } + ] + }, { + "pageInfo": { + "number": 147, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 428.0400085449219, + "y1": 536.0399780273438, + "width": 95.39999389648438, + "height": 272.8800048828125 + }, { + "x0": 429.4800109863281, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 536.0399780273438, + "width": 96.11996459960938, + "height": 272.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 151, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 428.760009765625, + "y1": 536.760009765625, + "width": 96.1199951171875, + "height": 273.60003662109375 + }, { + "x0": 430.20001220703125, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 536.760009765625, + "width": 95.39996337890625, + "height": 273.60003662109375 + } + ] + }, { + "pageInfo": { + "number": 155, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 429.4800109863281, + "y1": 538.5599975585938, + "width": 96.83999633789062, + "height": 275.4000244140625 + }, { + "x0": 430.55999755859375, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 95.03997802734375, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 159, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 432.0, + "y1": 538.5599975585938, + "width": 99.3599853515625, + "height": 275.4000244140625 + }, { + "x0": 433.79998779296875, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 91.79998779296875, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 168, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 435.6000061035156, + "y1": 537.47998046875, + "width": 102.95999145507812, + "height": 274.32000732421875 + }, { + "x0": 437.0400085449219, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 537.47998046875, + "width": 88.55996704101562, + "height": 274.32000732421875 + } + ] + }, { + "pageInfo": { + "number": 176, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 442.79998779296875, + "y1": 537.47998046875, + "width": 110.15997314453125, + "height": 274.32000732421875 + }, { + "x0": 444.6000061035156, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 537.47998046875, + "width": 80.99996948242188, + "height": 274.32000732421875 + } + ] + }, { + "pageInfo": { + "number": 181, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 429.4800109863281, + "y1": 538.5599975585938, + "width": 96.83999633789062, + "height": 275.4000244140625 + }, { + "x0": 430.9200134277344, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 94.67996215820312, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 185, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 433.0799865722656, + "y1": 538.5599975585938, + "width": 100.43997192382812, + "height": 275.4000244140625 + }, { + "x0": 434.5199890136719, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 91.07998657226562, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 193, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 422.6400146484375, + "y1": 537.8399658203125, + "width": 90.0, + "height": 274.67999267578125 + }, { + "x0": 424.44000244140625, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 537.8399658203125, + "width": 101.15997314453125, + "height": 274.67999267578125 + } + ] + }, { + "pageInfo": { + "number": 201, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 435.9599914550781, + "y1": 538.5599975585938, + "width": 103.31997680664062, + "height": 275.4000244140625 + }, { + "x0": 437.0400085449219, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 88.55996704101562, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 210, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 276.84002685546875, + "x1": 461.5199890136719, + "y1": 551.8800048828125, + "width": 128.87997436523438, + "height": 275.03997802734375 + }, { + "x0": 462.9599914550781, + "y0": 276.84002685546875, + "x1": 525.5999755859375, + "y1": 551.8800048828125, + "width": 62.639984130859375, + "height": 275.03997802734375 + } + ] + }, { + "pageInfo": { + "number": 215, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 428.760009765625, + "y1": 538.5599975585938, + "width": 96.1199951171875, + "height": 275.4000244140625 + }, { + "x0": 430.20001220703125, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 95.39996337890625, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 219, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 429.1199951171875, + "y1": 538.5599975585938, + "width": 96.47998046875, + "height": 275.4000244140625 + }, { + "x0": 430.55999755859375, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 95.03997802734375, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 223, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 428.760009765625, + "y1": 538.5599975585938, + "width": 96.1199951171875, + "height": 275.4000244140625 + }, { + "x0": 429.8399963378906, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 95.75997924804688, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 227, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 432.0, + "y1": 538.5599975585938, + "width": 99.3599853515625, + "height": 275.4000244140625 + }, { + "x0": 433.44000244140625, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.5599975585938, + "width": 92.15997314453125, + "height": 275.4000244140625 + } + ] + }, { + "pageInfo": { + "number": 236, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 332.6400146484375, + "y0": 263.15997314453125, + "x1": 435.6000061035156, + "y1": 538.2000122070312, + "width": 102.95999145507812, + "height": 275.0400390625 + }, { + "x0": 437.0400085449219, + "y0": 263.15997314453125, + "x1": 525.5999755859375, + "y1": 538.2000122070312, + "width": 88.55996704101562, + "height": 275.0400390625 + } + ] + }, { + "pageInfo": { + "number": 260, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 414.3599853515625, + "y0": 316.0799865722656, + "x1": 429.1199951171875, + "y1": 588.5999755859375, + "width": 14.760009765625, + "height": 272.5199890136719 + }, { + "x0": 430.55999755859375, + "y0": 316.0799865722656, + "x1": 444.6000061035156, + "y1": 588.5999755859375, + "width": 14.040008544921875, + "height": 272.5199890136719 + } + ] + }, { + "pageInfo": { + "number": 275, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 413.6400146484375, + "y0": 313.9200134277344, + "x1": 432.0, + "y1": 588.5999755859375, + "width": 18.3599853515625, + "height": 274.6799621582031 + }, { + "x0": 433.44000244140625, + "y0": 316.0799865722656, + "x1": 450.0, + "y1": 588.5999755859375, + "width": 16.55999755859375, + "height": 272.5199890136719 + } + ] + }, { + "pageInfo": { + "number": 276, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 379.79998779296875, + "y0": 313.9200134277344, + "x1": 432.0, + "y1": 587.8800048828125, + "width": 52.20001220703125, + "height": 273.9599914550781 + }, { + "x0": 433.44000244140625, + "y0": 316.0799865722656, + "x1": 448.9200134277344, + "y1": 587.8800048828125, + "width": 15.480010986328125, + "height": 271.8000183105469 + } + ] + }, { + "pageInfo": { + "number": 307, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 102.5999984741211, + "y0": 644.0399780273438, + "x1": 514.4400024414062, + "y1": 658.0800170898438, + "width": 411.84000396728516, + "height": 14.0400390625 + }, { + "x0": 102.5999984741211, + "y0": 625.6799926757812, + "x1": 514.7999877929688, + "y1": 642.5999755859375, + "width": 412.19998931884766, + "height": 16.91998291015625 + }, { + "x0": 102.5999984741211, + "y0": 117.719970703125, + "x1": 517.6799926757812, + "y1": 624.5999755859375, + "width": 415.07999420166016, + "height": 506.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 316, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 164.16000366210938, + "y0": 133.91998291015625, + "x1": 186.1199951171875, + "y1": 154.44000244140625, + "width": 21.959991455078125, + "height": 20.52001953125 + }, { + "x0": 186.83999633789062, + "y0": 133.91998291015625, + "x1": 254.16000366210938, + "y1": 154.44000244140625, + "width": 67.32000732421875, + "height": 20.52001953125 + } + ] + }, { + "pageInfo": { + "number": 401, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 641.52001953125, + "x1": 117.0, + "y1": 653.760009765625, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 641.52001953125, + "x1": 152.27999877929688, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 641.52001953125, + "x1": 187.1999969482422, + "y1": 653.760009765625, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 641.52001953125, + "x1": 222.47999572753906, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 641.52001953125, + "x1": 257.760009765625, + "y1": 653.760009765625, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 641.52001953125, + "x1": 293.0400085449219, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 641.52001953125, + "x1": 328.32000732421875, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 641.52001953125, + "x1": 363.6000061035156, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 641.52001953125, + "x1": 398.8800048828125, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 641.52001953125, + "x1": 434.1600036621094, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 641.52001953125, + "x1": 469.44000244140625, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 641.52001953125, + "x1": 504.7200012207031, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 641.52001953125, + "x1": 540.0, + "y1": 653.760009765625, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 628.5599975585938, + "x1": 117.0, + "y1": 640.7999877929688, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 628.5599975585938, + "x1": 152.27999877929688, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 628.5599975585938, + "x1": 187.1999969482422, + "y1": 640.7999877929688, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 628.5599975585938, + "x1": 222.47999572753906, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 628.5599975585938, + "x1": 257.760009765625, + "y1": 640.7999877929688, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 628.5599975585938, + "x1": 293.0400085449219, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 628.5599975585938, + "x1": 328.32000732421875, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 628.5599975585938, + "x1": 363.6000061035156, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 628.5599975585938, + "x1": 398.8800048828125, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 628.5599975585938, + "x1": 434.1600036621094, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 628.5599975585938, + "x1": 469.44000244140625, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 628.5599975585938, + "x1": 504.7200012207031, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 628.5599975585938, + "x1": 540.0, + "y1": 640.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 541.7999877929688, + "x1": 117.0, + "y1": 553.6799926757812, + "width": 26.279998779296875, + "height": 11.8800048828125 + }, { + "x0": 117.72000122070312, + "y0": 541.7999877929688, + "x1": 152.27999877929688, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 153.0, + "y0": 541.7999877929688, + "x1": 187.1999969482422, + "y1": 553.6799926757812, + "width": 34.19999694824219, + "height": 11.8800048828125 + }, { + "x0": 187.9199981689453, + "y0": 541.7999877929688, + "x1": 222.47999572753906, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 223.1999969482422, + "y0": 541.7999877929688, + "x1": 257.760009765625, + "y1": 553.6799926757812, + "width": 34.56001281738281, + "height": 11.8800048828125 + }, { + "x0": 258.4800109863281, + "y0": 541.7999877929688, + "x1": 293.0400085449219, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 293.760009765625, + "y0": 541.7999877929688, + "x1": 328.32000732421875, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 329.0400085449219, + "y0": 541.7999877929688, + "x1": 363.6000061035156, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 364.32000732421875, + "y0": 541.7999877929688, + "x1": 398.8800048828125, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 399.6000061035156, + "y0": 541.7999877929688, + "x1": 434.1600036621094, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 434.8800048828125, + "y0": 541.7999877929688, + "x1": 469.44000244140625, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 470.1600036621094, + "y0": 541.7999877929688, + "x1": 504.7200012207031, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 505.44000244140625, + "y0": 541.7999877929688, + "x1": 540.0, + "y1": 553.6799926757812, + "width": 34.55999755859375, + "height": 11.8800048828125 + }, { + "x0": 90.72000122070312, + "y0": 528.8399658203125, + "x1": 117.0, + "y1": 541.0800170898438, + "width": 26.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 117.72000122070312, + "y0": 528.8399658203125, + "x1": 152.27999877929688, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 153.0, + "y0": 528.8399658203125, + "x1": 187.1999969482422, + "y1": 541.0800170898438, + "width": 34.19999694824219, + "height": 12.24005126953125 + }, { + "x0": 187.9199981689453, + "y0": 528.8399658203125, + "x1": 222.47999572753906, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 223.1999969482422, + "y0": 528.8399658203125, + "x1": 257.760009765625, + "y1": 541.0800170898438, + "width": 34.56001281738281, + "height": 12.24005126953125 + }, { + "x0": 258.4800109863281, + "y0": 528.8399658203125, + "x1": 293.0400085449219, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 293.760009765625, + "y0": 528.8399658203125, + "x1": 328.32000732421875, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 329.0400085449219, + "y0": 528.8399658203125, + "x1": 363.6000061035156, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 364.32000732421875, + "y0": 528.8399658203125, + "x1": 398.8800048828125, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 399.6000061035156, + "y0": 528.8399658203125, + "x1": 434.1600036621094, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 434.8800048828125, + "y0": 528.8399658203125, + "x1": 469.44000244140625, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 470.1600036621094, + "y0": 528.8399658203125, + "x1": 504.7200012207031, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 505.44000244140625, + "y0": 528.8399658203125, + "x1": 540.0, + "y1": 541.0800170898438, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 506.5199890136719, + "x1": 327.9599914550781, + "y1": 518.760009765625, + "width": 39.600006103515625, + "height": 12.240020751953125 + }, { + "x0": 288.3599853515625, + "y0": 493.9200134277344, + "x1": 327.9599914550781, + "y1": 505.79998779296875, + "width": 39.600006103515625, + "height": 11.879974365234375 + }, { + "x0": 288.3599853515625, + "y0": 469.79998779296875, + "x1": 327.9599914550781, + "y1": 483.4800109863281, + "width": 39.600006103515625, + "height": 13.680023193359375 + }, { + "x0": 288.3599853515625, + "y0": 455.0400085449219, + "x1": 327.9599914550781, + "y1": 469.0799865722656, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 365.0400085449219, + "x1": 327.9599914550781, + "y1": 377.6400146484375, + "width": 39.600006103515625, + "height": 12.600006103515625 + }, { + "x0": 328.67999267578125, + "y0": 365.0400085449219, + "x1": 369.7200012207031, + "y1": 377.6400146484375, + "width": 41.040008544921875, + "height": 12.600006103515625 + }, { + "x0": 371.5199890136719, + "y0": 365.0400085449219, + "x1": 412.55999755859375, + "y1": 377.6400146484375, + "width": 41.040008544921875, + "height": 12.600006103515625 + }, { + "x0": 413.2799987792969, + "y0": 365.0400085449219, + "x1": 454.67999267578125, + "y1": 377.6400146484375, + "width": 41.399993896484375, + "height": 12.600006103515625 + }, { + "x0": 456.1199951171875, + "y0": 365.0400085449219, + "x1": 497.5199890136719, + "y1": 377.6400146484375, + "width": 41.399993896484375, + "height": 12.600006103515625 + }, { + "x0": 498.239990234375, + "y0": 365.0400085449219, + "x1": 540.0, + "y1": 377.6400146484375, + "width": 41.760009765625, + "height": 12.600006103515625 + }, { + "x0": 288.3599853515625, + "y0": 344.1600036621094, + "x1": 327.9599914550781, + "y1": 364.32000732421875, + "width": 39.600006103515625, + "height": 20.160003662109375 + }, { + "x0": 328.67999267578125, + "y0": 344.1600036621094, + "x1": 369.7200012207031, + "y1": 364.32000732421875, + "width": 41.040008544921875, + "height": 20.160003662109375 + }, { + "x0": 371.5199890136719, + "y0": 344.1600036621094, + "x1": 412.55999755859375, + "y1": 364.32000732421875, + "width": 41.040008544921875, + "height": 20.160003662109375 + }, { + "x0": 413.2799987792969, + "y0": 344.1600036621094, + "x1": 454.67999267578125, + "y1": 364.32000732421875, + "width": 41.399993896484375, + "height": 20.160003662109375 + }, { + "x0": 456.1199951171875, + "y0": 344.1600036621094, + "x1": 497.5199890136719, + "y1": 364.32000732421875, + "width": 41.399993896484375, + "height": 20.160003662109375 + }, { + "x0": 498.239990234375, + "y0": 344.1600036621094, + "x1": 540.0, + "y1": 364.32000732421875, + "width": 41.760009765625, + "height": 20.160003662109375 + }, { + "x0": 288.3599853515625, + "y0": 215.280029296875, + "x1": 413.6400146484375, + "y1": 227.52001953125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 215.280029296875, + "x1": 540.0, + "y1": 227.52001953125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 202.32000732421875, + "x1": 413.6400146484375, + "y1": 214.55999755859375, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 202.32000732421875, + "x1": 540.0, + "y1": 214.55999755859375, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 189.719970703125, + "x1": 413.6400146484375, + "y1": 201.5999755859375, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 189.719970703125, + "x1": 540.0, + "y1": 201.5999755859375, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 176.760009765625, + "x1": 413.6400146484375, + "y1": 189.0, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 176.760009765625, + "x1": 540.0, + "y1": 189.0, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 163.79998779296875, + "x1": 413.6400146484375, + "y1": 176.03997802734375, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.79998779296875, + "x1": 540.0, + "y1": 176.03997802734375, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.84002685546875, + "x1": 413.6400146484375, + "y1": 163.08001708984375, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.84002685546875, + "x1": 540.0, + "y1": 163.08001708984375, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 138.239990234375, + "x1": 413.6400146484375, + "y1": 150.1199951171875, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 138.239990234375, + "x1": 540.0, + "y1": 150.1199951171875, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 125.280029296875, + "x1": 413.6400146484375, + "y1": 137.52001953125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 125.280029296875, + "x1": 540.0, + "y1": 137.52001953125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 112.32000732421875, + "x1": 413.6400146484375, + "y1": 124.55999755859375, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 112.32000732421875, + "x1": 540.0, + "y1": 124.55999755859375, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 99.719970703125, + "x1": 413.6400146484375, + "y1": 111.5999755859375, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 99.719970703125, + "x1": 540.0, + "y1": 111.5999755859375, + "width": 125.6400146484375, + "height": 11.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 402, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 666.3599853515625, + "x1": 117.0, + "y1": 678.5999755859375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 666.3599853515625, + "x1": 152.27999877929688, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 666.3599853515625, + "x1": 187.1999969482422, + "y1": 678.5999755859375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 666.3599853515625, + "x1": 222.47999572753906, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 666.3599853515625, + "x1": 257.760009765625, + "y1": 678.5999755859375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 666.3599853515625, + "x1": 293.0400085449219, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 666.3599853515625, + "x1": 328.32000732421875, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 666.3599853515625, + "x1": 363.6000061035156, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 666.3599853515625, + "x1": 398.8800048828125, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 666.3599853515625, + "x1": 434.1600036621094, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 666.3599853515625, + "x1": 469.44000244140625, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 666.3599853515625, + "x1": 504.7200012207031, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 666.3599853515625, + "x1": 540.0, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 117.0, + "y1": 665.6400146484375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 653.4000244140625, + "x1": 152.27999877929688, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 653.4000244140625, + "x1": 187.1999969482422, + "y1": 665.6400146484375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 653.4000244140625, + "x1": 222.47999572753906, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 653.4000244140625, + "x1": 257.760009765625, + "y1": 665.6400146484375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 653.4000244140625, + "x1": 293.0400085449219, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 653.4000244140625, + "x1": 328.32000732421875, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 653.4000244140625, + "x1": 363.6000061035156, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 653.4000244140625, + "x1": 398.8800048828125, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 653.4000244140625, + "x1": 434.1600036621094, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 653.4000244140625, + "x1": 469.44000244140625, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 653.4000244140625, + "x1": 504.7200012207031, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 566.6400146484375, + "x1": 117.0, + "y1": 578.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 566.6400146484375, + "x1": 152.27999877929688, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 566.6400146484375, + "x1": 187.1999969482422, + "y1": 578.8800048828125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 566.6400146484375, + "x1": 222.47999572753906, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 566.6400146484375, + "x1": 257.760009765625, + "y1": 578.8800048828125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 566.6400146484375, + "x1": 293.0400085449219, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 566.6400146484375, + "x1": 328.32000732421875, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 566.6400146484375, + "x1": 363.6000061035156, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 566.6400146484375, + "x1": 398.8800048828125, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 566.6400146484375, + "x1": 434.1600036621094, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 566.6400146484375, + "x1": 469.44000244140625, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 566.6400146484375, + "x1": 504.7200012207031, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 566.6400146484375, + "x1": 540.0, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 553.6799926757812, + "x1": 117.0, + "y1": 565.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 553.6799926757812, + "x1": 152.27999877929688, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 553.6799926757812, + "x1": 187.1999969482422, + "y1": 565.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 553.6799926757812, + "x1": 222.47999572753906, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 553.6799926757812, + "x1": 257.760009765625, + "y1": 565.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 553.6799926757812, + "x1": 293.0400085449219, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 553.6799926757812, + "x1": 328.32000732421875, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 553.6799926757812, + "x1": 363.6000061035156, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 553.6799926757812, + "x1": 398.8800048828125, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 553.6799926757812, + "x1": 434.1600036621094, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 553.6799926757812, + "x1": 469.44000244140625, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 553.6799926757812, + "x1": 504.7200012207031, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 553.6799926757812, + "x1": 540.0, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 531.719970703125, + "x1": 327.9599914550781, + "y1": 543.5999755859375, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 518.760009765625, + "x1": 327.9599914550781, + "y1": 531.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 494.6400146484375, + "x1": 327.9599914550781, + "y1": 508.67999267578125, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 479.8800048828125, + "x1": 327.9599914550781, + "y1": 493.9200134277344, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 389.8800048828125, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 39.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 328.67999267578125, + "y0": 389.8800048828125, + "x1": 369.7200012207031, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 371.5199890136719, + "y0": 389.8800048828125, + "x1": 412.55999755859375, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 413.2799987792969, + "y0": 389.8800048828125, + "x1": 454.67999267578125, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 456.1199951171875, + "y0": 389.8800048828125, + "x1": 497.5199890136719, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 498.239990234375, + "y0": 389.8800048828125, + "x1": 540.0, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 12.959991455078125 + }, { + "x0": 288.3599853515625, + "y0": 369.3599853515625, + "x1": 327.9599914550781, + "y1": 389.1600036621094, + "width": 39.600006103515625, + "height": 19.800018310546875 + }, { + "x0": 328.67999267578125, + "y0": 369.3599853515625, + "x1": 369.7200012207031, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 371.5199890136719, + "y0": 369.3599853515625, + "x1": 412.55999755859375, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 413.2799987792969, + "y0": 369.3599853515625, + "x1": 454.67999267578125, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 456.1199951171875, + "y0": 369.3599853515625, + "x1": 497.5199890136719, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 498.239990234375, + "y0": 369.3599853515625, + "x1": 540.0, + "y1": 389.1600036621094, + "width": 41.760009765625, + "height": 19.800018310546875 + }, { + "x0": 288.3599853515625, + "y0": 240.1199951171875, + "x1": 413.6400146484375, + "y1": 252.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 240.1199951171875, + "x1": 540.0, + "y1": 252.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 227.15997314453125, + "x1": 413.6400146484375, + "y1": 239.4000244140625, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 227.15997314453125, + "x1": 540.0, + "y1": 239.4000244140625, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 214.55999755859375, + "x1": 413.6400146484375, + "y1": 226.44000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 214.55999755859375, + "x1": 540.0, + "y1": 226.44000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 201.5999755859375, + "x1": 413.6400146484375, + "y1": 213.84002685546875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 201.5999755859375, + "x1": 540.0, + "y1": 213.84002685546875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 188.6400146484375, + "x1": 413.6400146484375, + "y1": 200.8800048828125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 188.6400146484375, + "x1": 540.0, + "y1": 200.8800048828125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 176.03997802734375, + "x1": 413.6400146484375, + "y1": 187.91998291015625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 176.03997802734375, + "x1": 540.0, + "y1": 187.91998291015625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 163.08001708984375, + "x1": 413.6400146484375, + "y1": 175.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.08001708984375, + "x1": 540.0, + "y1": 175.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.1199951171875, + "x1": 413.6400146484375, + "y1": 162.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.1199951171875, + "x1": 540.0, + "y1": 162.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 137.52001953125, + "x1": 413.6400146484375, + "y1": 149.4000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 137.52001953125, + "x1": 540.0, + "y1": 149.4000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 124.55999755859375, + "x1": 540.0, + "y1": 136.79998779296875, + "width": 251.6400146484375, + "height": 12.239990234375 + } + ] + }, { + "pageInfo": { + "number": 403, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 666.3599853515625, + "x1": 117.0, + "y1": 678.5999755859375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 666.3599853515625, + "x1": 152.27999877929688, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 666.3599853515625, + "x1": 187.1999969482422, + "y1": 678.5999755859375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 666.3599853515625, + "x1": 222.47999572753906, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 666.3599853515625, + "x1": 257.760009765625, + "y1": 678.5999755859375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 666.3599853515625, + "x1": 293.0400085449219, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 666.3599853515625, + "x1": 328.32000732421875, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 666.3599853515625, + "x1": 363.6000061035156, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 666.3599853515625, + "x1": 398.8800048828125, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 666.3599853515625, + "x1": 434.1600036621094, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 666.3599853515625, + "x1": 469.44000244140625, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 666.3599853515625, + "x1": 504.7200012207031, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 666.3599853515625, + "x1": 540.0, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 117.0, + "y1": 665.6400146484375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 653.4000244140625, + "x1": 152.27999877929688, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 653.4000244140625, + "x1": 187.1999969482422, + "y1": 665.6400146484375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 653.4000244140625, + "x1": 222.47999572753906, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 653.4000244140625, + "x1": 257.760009765625, + "y1": 665.6400146484375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 653.4000244140625, + "x1": 293.0400085449219, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 653.4000244140625, + "x1": 328.32000732421875, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 653.4000244140625, + "x1": 363.6000061035156, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 653.4000244140625, + "x1": 398.8800048828125, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 653.4000244140625, + "x1": 434.1600036621094, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 653.4000244140625, + "x1": 469.44000244140625, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 653.4000244140625, + "x1": 504.7200012207031, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 566.6400146484375, + "x1": 117.0, + "y1": 578.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 566.6400146484375, + "x1": 152.27999877929688, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 566.6400146484375, + "x1": 187.1999969482422, + "y1": 578.8800048828125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 566.6400146484375, + "x1": 222.47999572753906, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 566.6400146484375, + "x1": 257.760009765625, + "y1": 578.8800048828125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 566.6400146484375, + "x1": 293.0400085449219, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 566.6400146484375, + "x1": 328.32000732421875, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 566.6400146484375, + "x1": 363.6000061035156, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 566.6400146484375, + "x1": 398.8800048828125, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 566.6400146484375, + "x1": 434.1600036621094, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 566.6400146484375, + "x1": 469.44000244140625, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 566.6400146484375, + "x1": 504.7200012207031, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 566.6400146484375, + "x1": 540.0, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 553.6799926757812, + "x1": 117.0, + "y1": 565.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 553.6799926757812, + "x1": 152.27999877929688, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 553.6799926757812, + "x1": 187.1999969482422, + "y1": 565.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 553.6799926757812, + "x1": 222.47999572753906, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 553.6799926757812, + "x1": 257.760009765625, + "y1": 565.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 553.6799926757812, + "x1": 293.0400085449219, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 553.6799926757812, + "x1": 328.32000732421875, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 553.6799926757812, + "x1": 363.6000061035156, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 553.6799926757812, + "x1": 398.8800048828125, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 553.6799926757812, + "x1": 434.1600036621094, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 553.6799926757812, + "x1": 469.44000244140625, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 553.6799926757812, + "x1": 504.7200012207031, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 553.6799926757812, + "x1": 540.0, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 531.719970703125, + "x1": 327.9599914550781, + "y1": 543.5999755859375, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 518.760009765625, + "x1": 327.9599914550781, + "y1": 531.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 494.6400146484375, + "x1": 327.9599914550781, + "y1": 508.67999267578125, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 479.8800048828125, + "x1": 327.9599914550781, + "y1": 493.9200134277344, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 389.8800048828125, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 39.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 328.67999267578125, + "y0": 389.8800048828125, + "x1": 369.7200012207031, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 371.5199890136719, + "y0": 389.8800048828125, + "x1": 412.55999755859375, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 413.2799987792969, + "y0": 389.8800048828125, + "x1": 454.67999267578125, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 456.1199951171875, + "y0": 389.8800048828125, + "x1": 497.5199890136719, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 498.239990234375, + "y0": 389.8800048828125, + "x1": 540.0, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 12.959991455078125 + }, { + "x0": 288.3599853515625, + "y0": 369.3599853515625, + "x1": 327.9599914550781, + "y1": 389.1600036621094, + "width": 39.600006103515625, + "height": 19.800018310546875 + }, { + "x0": 328.67999267578125, + "y0": 369.3599853515625, + "x1": 369.7200012207031, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 371.5199890136719, + "y0": 369.3599853515625, + "x1": 412.55999755859375, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 413.2799987792969, + "y0": 369.3599853515625, + "x1": 454.67999267578125, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 456.1199951171875, + "y0": 369.3599853515625, + "x1": 497.5199890136719, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 498.239990234375, + "y0": 369.3599853515625, + "x1": 540.0, + "y1": 389.1600036621094, + "width": 41.760009765625, + "height": 19.800018310546875 + }, { + "x0": 288.3599853515625, + "y0": 240.1199951171875, + "x1": 413.6400146484375, + "y1": 252.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 240.1199951171875, + "x1": 540.0, + "y1": 252.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 227.15997314453125, + "x1": 413.6400146484375, + "y1": 239.4000244140625, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 227.15997314453125, + "x1": 540.0, + "y1": 239.4000244140625, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 214.55999755859375, + "x1": 413.6400146484375, + "y1": 226.44000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 214.55999755859375, + "x1": 540.0, + "y1": 226.44000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 201.5999755859375, + "x1": 413.6400146484375, + "y1": 213.84002685546875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 201.5999755859375, + "x1": 540.0, + "y1": 213.84002685546875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 188.6400146484375, + "x1": 413.6400146484375, + "y1": 200.8800048828125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 188.6400146484375, + "x1": 540.0, + "y1": 200.8800048828125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 176.03997802734375, + "x1": 413.6400146484375, + "y1": 187.91998291015625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 176.03997802734375, + "x1": 540.0, + "y1": 187.91998291015625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 163.08001708984375, + "x1": 413.6400146484375, + "y1": 175.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.08001708984375, + "x1": 540.0, + "y1": 175.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.1199951171875, + "x1": 413.6400146484375, + "y1": 162.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.1199951171875, + "x1": 540.0, + "y1": 162.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 137.52001953125, + "x1": 413.6400146484375, + "y1": 149.4000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 137.52001953125, + "x1": 540.0, + "y1": 149.4000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 120.5999755859375, + "x1": 540.0, + "y1": 136.79998779296875, + "width": 251.6400146484375, + "height": 16.20001220703125 + } + ] + }, { + "pageInfo": { + "number": 404, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 666.3599853515625, + "x1": 117.0, + "y1": 678.5999755859375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 666.3599853515625, + "x1": 152.27999877929688, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 666.3599853515625, + "x1": 187.1999969482422, + "y1": 678.5999755859375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 666.3599853515625, + "x1": 222.47999572753906, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 666.3599853515625, + "x1": 257.760009765625, + "y1": 678.5999755859375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 666.3599853515625, + "x1": 293.0400085449219, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 666.3599853515625, + "x1": 328.32000732421875, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 666.3599853515625, + "x1": 363.6000061035156, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 666.3599853515625, + "x1": 398.8800048828125, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 666.3599853515625, + "x1": 434.1600036621094, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 666.3599853515625, + "x1": 469.44000244140625, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 666.3599853515625, + "x1": 504.7200012207031, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 666.3599853515625, + "x1": 540.0, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 117.0, + "y1": 665.6400146484375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 653.4000244140625, + "x1": 152.27999877929688, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 653.4000244140625, + "x1": 187.1999969482422, + "y1": 665.6400146484375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 653.4000244140625, + "x1": 222.47999572753906, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 653.4000244140625, + "x1": 257.760009765625, + "y1": 665.6400146484375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 653.4000244140625, + "x1": 293.0400085449219, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 653.4000244140625, + "x1": 328.32000732421875, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 653.4000244140625, + "x1": 363.6000061035156, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 653.4000244140625, + "x1": 398.8800048828125, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 653.4000244140625, + "x1": 434.1600036621094, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 653.4000244140625, + "x1": 469.44000244140625, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 653.4000244140625, + "x1": 504.7200012207031, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 566.6400146484375, + "x1": 117.0, + "y1": 578.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 566.6400146484375, + "x1": 152.27999877929688, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 566.6400146484375, + "x1": 187.1999969482422, + "y1": 578.8800048828125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 566.6400146484375, + "x1": 222.47999572753906, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 566.6400146484375, + "x1": 257.760009765625, + "y1": 578.8800048828125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 566.6400146484375, + "x1": 293.0400085449219, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 566.6400146484375, + "x1": 328.32000732421875, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 566.6400146484375, + "x1": 363.6000061035156, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 566.6400146484375, + "x1": 398.8800048828125, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 566.6400146484375, + "x1": 434.1600036621094, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 566.6400146484375, + "x1": 469.44000244140625, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 566.6400146484375, + "x1": 504.7200012207031, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 566.6400146484375, + "x1": 540.0, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 553.6799926757812, + "x1": 117.0, + "y1": 565.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 553.6799926757812, + "x1": 152.27999877929688, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 553.6799926757812, + "x1": 187.1999969482422, + "y1": 565.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 553.6799926757812, + "x1": 222.47999572753906, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 553.6799926757812, + "x1": 257.760009765625, + "y1": 565.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 553.6799926757812, + "x1": 293.0400085449219, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 553.6799926757812, + "x1": 328.32000732421875, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 553.6799926757812, + "x1": 363.6000061035156, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 553.6799926757812, + "x1": 398.8800048828125, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 553.6799926757812, + "x1": 434.1600036621094, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 553.6799926757812, + "x1": 469.44000244140625, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 553.6799926757812, + "x1": 504.7200012207031, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 553.6799926757812, + "x1": 540.0, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 531.719970703125, + "x1": 327.9599914550781, + "y1": 543.5999755859375, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 518.760009765625, + "x1": 327.9599914550781, + "y1": 531.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 494.6400146484375, + "x1": 327.9599914550781, + "y1": 508.67999267578125, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 479.8800048828125, + "x1": 327.9599914550781, + "y1": 493.9200134277344, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 389.8800048828125, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 39.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 328.67999267578125, + "y0": 389.8800048828125, + "x1": 369.7200012207031, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 371.5199890136719, + "y0": 389.8800048828125, + "x1": 412.55999755859375, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 413.2799987792969, + "y0": 389.8800048828125, + "x1": 454.67999267578125, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 456.1199951171875, + "y0": 389.8800048828125, + "x1": 497.5199890136719, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 498.239990234375, + "y0": 389.8800048828125, + "x1": 540.0, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 12.959991455078125 + }, { + "x0": 288.3599853515625, + "y0": 369.3599853515625, + "x1": 327.9599914550781, + "y1": 389.1600036621094, + "width": 39.600006103515625, + "height": 19.800018310546875 + }, { + "x0": 328.67999267578125, + "y0": 369.3599853515625, + "x1": 369.7200012207031, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 371.5199890136719, + "y0": 369.3599853515625, + "x1": 412.55999755859375, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 413.2799987792969, + "y0": 369.3599853515625, + "x1": 454.67999267578125, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 456.1199951171875, + "y0": 369.3599853515625, + "x1": 497.5199890136719, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 498.239990234375, + "y0": 369.3599853515625, + "x1": 540.0, + "y1": 389.1600036621094, + "width": 41.760009765625, + "height": 19.800018310546875 + }, { + "x0": 288.3599853515625, + "y0": 240.1199951171875, + "x1": 413.6400146484375, + "y1": 252.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 240.1199951171875, + "x1": 540.0, + "y1": 252.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 227.15997314453125, + "x1": 413.6400146484375, + "y1": 239.4000244140625, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 227.15997314453125, + "x1": 540.0, + "y1": 239.4000244140625, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 214.55999755859375, + "x1": 413.6400146484375, + "y1": 226.44000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 214.55999755859375, + "x1": 540.0, + "y1": 226.44000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 201.5999755859375, + "x1": 413.6400146484375, + "y1": 213.84002685546875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 201.5999755859375, + "x1": 540.0, + "y1": 213.84002685546875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 188.6400146484375, + "x1": 413.6400146484375, + "y1": 200.8800048828125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 188.6400146484375, + "x1": 540.0, + "y1": 200.8800048828125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 176.03997802734375, + "x1": 413.6400146484375, + "y1": 187.91998291015625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 176.03997802734375, + "x1": 540.0, + "y1": 187.91998291015625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 163.08001708984375, + "x1": 413.6400146484375, + "y1": 175.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.08001708984375, + "x1": 540.0, + "y1": 175.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.1199951171875, + "x1": 413.6400146484375, + "y1": 162.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.1199951171875, + "x1": 540.0, + "y1": 162.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 137.52001953125, + "x1": 413.6400146484375, + "y1": 149.4000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 137.52001953125, + "x1": 540.0, + "y1": 149.4000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 120.5999755859375, + "x1": 540.0, + "y1": 136.79998779296875, + "width": 251.6400146484375, + "height": 16.20001220703125 + } + ] + }, { + "pageInfo": { + "number": 405, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 652.6799926757812, + "x1": 117.0, + "y1": 664.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 652.6799926757812, + "x1": 152.27999877929688, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 652.6799926757812, + "x1": 187.1999969482422, + "y1": 664.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 652.6799926757812, + "x1": 222.47999572753906, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 652.6799926757812, + "x1": 257.760009765625, + "y1": 664.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 652.6799926757812, + "x1": 293.0400085449219, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 652.6799926757812, + "x1": 328.32000732421875, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 652.6799926757812, + "x1": 363.6000061035156, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 652.6799926757812, + "x1": 398.8800048828125, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 652.6799926757812, + "x1": 434.1600036621094, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 652.6799926757812, + "x1": 469.44000244140625, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 652.6799926757812, + "x1": 504.7200012207031, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 652.6799926757812, + "x1": 540.0, + "y1": 664.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 639.719970703125, + "x1": 117.0, + "y1": 651.9600219726562, + "width": 26.279998779296875, + "height": 12.24005126953125 + }, { + "x0": 117.72000122070312, + "y0": 639.719970703125, + "x1": 152.27999877929688, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 153.0, + "y0": 639.719970703125, + "x1": 187.1999969482422, + "y1": 651.9600219726562, + "width": 34.19999694824219, + "height": 12.24005126953125 + }, { + "x0": 187.9199981689453, + "y0": 639.719970703125, + "x1": 222.47999572753906, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 223.1999969482422, + "y0": 639.719970703125, + "x1": 257.760009765625, + "y1": 651.9600219726562, + "width": 34.56001281738281, + "height": 12.24005126953125 + }, { + "x0": 258.4800109863281, + "y0": 639.719970703125, + "x1": 293.0400085449219, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 293.760009765625, + "y0": 639.719970703125, + "x1": 328.32000732421875, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 329.0400085449219, + "y0": 639.719970703125, + "x1": 363.6000061035156, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 364.32000732421875, + "y0": 639.719970703125, + "x1": 398.8800048828125, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 399.6000061035156, + "y0": 639.719970703125, + "x1": 434.1600036621094, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 434.8800048828125, + "y0": 639.719970703125, + "x1": 469.44000244140625, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 470.1600036621094, + "y0": 639.719970703125, + "x1": 504.7200012207031, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 505.44000244140625, + "y0": 639.719970703125, + "x1": 540.0, + "y1": 651.9600219726562, + "width": 34.55999755859375, + "height": 12.24005126953125 + }, { + "x0": 90.72000122070312, + "y0": 552.9600219726562, + "x1": 117.0, + "y1": 564.8399658203125, + "width": 26.279998779296875, + "height": 11.87994384765625 + }, { + "x0": 117.72000122070312, + "y0": 552.9600219726562, + "x1": 152.27999877929688, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 153.0, + "y0": 552.9600219726562, + "x1": 187.1999969482422, + "y1": 564.8399658203125, + "width": 34.19999694824219, + "height": 11.87994384765625 + }, { + "x0": 187.9199981689453, + "y0": 552.9600219726562, + "x1": 222.47999572753906, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 223.1999969482422, + "y0": 552.9600219726562, + "x1": 257.760009765625, + "y1": 564.8399658203125, + "width": 34.56001281738281, + "height": 11.87994384765625 + }, { + "x0": 258.4800109863281, + "y0": 552.9600219726562, + "x1": 293.0400085449219, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 293.760009765625, + "y0": 552.9600219726562, + "x1": 328.32000732421875, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 329.0400085449219, + "y0": 552.9600219726562, + "x1": 363.6000061035156, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 364.32000732421875, + "y0": 552.9600219726562, + "x1": 398.8800048828125, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 399.6000061035156, + "y0": 552.9600219726562, + "x1": 434.1600036621094, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 434.8800048828125, + "y0": 552.9600219726562, + "x1": 469.44000244140625, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 470.1600036621094, + "y0": 552.9600219726562, + "x1": 504.7200012207031, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 505.44000244140625, + "y0": 552.9600219726562, + "x1": 540.0, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 11.87994384765625 + }, { + "x0": 90.72000122070312, + "y0": 540.0, + "x1": 117.0, + "y1": 552.239990234375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 540.0, + "x1": 152.27999877929688, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 540.0, + "x1": 187.1999969482422, + "y1": 552.239990234375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 540.0, + "x1": 222.47999572753906, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 540.0, + "x1": 257.760009765625, + "y1": 552.239990234375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 540.0, + "x1": 293.0400085449219, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 540.0, + "x1": 328.32000732421875, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 540.0, + "x1": 363.6000061035156, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 540.0, + "x1": 398.8800048828125, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 540.0, + "x1": 434.1600036621094, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 540.0, + "x1": 469.44000244140625, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 540.0, + "x1": 504.7200012207031, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 540.0, + "x1": 540.0, + "y1": 552.239990234375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 517.6799926757812, + "x1": 327.9599914550781, + "y1": 529.9200439453125, + "width": 39.600006103515625, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 505.0799865722656, + "x1": 327.9599914550781, + "y1": 516.9599609375, + "width": 39.600006103515625, + "height": 11.879974365234375 + }, { + "x0": 288.3599853515625, + "y0": 480.6000061035156, + "x1": 327.9599914550781, + "y1": 494.6400146484375, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 466.20001220703125, + "x1": 327.9599914550781, + "y1": 479.8800048828125, + "width": 39.600006103515625, + "height": 13.67999267578125 + }, { + "x0": 288.3599853515625, + "y0": 376.20001220703125, + "x1": 327.9599914550781, + "y1": 388.79998779296875, + "width": 39.600006103515625, + "height": 12.5999755859375 + }, { + "x0": 328.67999267578125, + "y0": 376.20001220703125, + "x1": 369.7200012207031, + "y1": 388.79998779296875, + "width": 41.040008544921875, + "height": 12.5999755859375 + }, { + "x0": 371.5199890136719, + "y0": 376.20001220703125, + "x1": 412.55999755859375, + "y1": 388.79998779296875, + "width": 41.040008544921875, + "height": 12.5999755859375 + }, { + "x0": 413.2799987792969, + "y0": 376.20001220703125, + "x1": 454.67999267578125, + "y1": 388.79998779296875, + "width": 41.399993896484375, + "height": 12.5999755859375 + }, { + "x0": 456.1199951171875, + "y0": 376.20001220703125, + "x1": 497.5199890136719, + "y1": 388.79998779296875, + "width": 41.399993896484375, + "height": 12.5999755859375 + }, { + "x0": 498.239990234375, + "y0": 376.20001220703125, + "x1": 540.0, + "y1": 388.79998779296875, + "width": 41.760009765625, + "height": 12.5999755859375 + }, { + "x0": 288.3599853515625, + "y0": 355.32000732421875, + "x1": 327.9599914550781, + "y1": 375.4800109863281, + "width": 39.600006103515625, + "height": 20.160003662109375 + }, { + "x0": 328.67999267578125, + "y0": 355.32000732421875, + "x1": 369.7200012207031, + "y1": 375.4800109863281, + "width": 41.040008544921875, + "height": 20.160003662109375 + }, { + "x0": 371.5199890136719, + "y0": 355.32000732421875, + "x1": 412.55999755859375, + "y1": 375.4800109863281, + "width": 41.040008544921875, + "height": 20.160003662109375 + }, { + "x0": 413.2799987792969, + "y0": 355.32000732421875, + "x1": 454.67999267578125, + "y1": 375.4800109863281, + "width": 41.399993896484375, + "height": 20.160003662109375 + }, { + "x0": 456.1199951171875, + "y0": 355.32000732421875, + "x1": 497.5199890136719, + "y1": 375.4800109863281, + "width": 41.399993896484375, + "height": 20.160003662109375 + }, { + "x0": 498.239990234375, + "y0": 355.32000732421875, + "x1": 540.0, + "y1": 375.4800109863281, + "width": 41.760009765625, + "height": 20.160003662109375 + }, { + "x0": 288.3599853515625, + "y0": 226.44000244140625, + "x1": 413.6400146484375, + "y1": 238.67999267578125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 226.44000244140625, + "x1": 540.0, + "y1": 238.67999267578125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 213.47998046875, + "x1": 413.6400146484375, + "y1": 225.719970703125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 213.47998046875, + "x1": 540.0, + "y1": 225.719970703125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 200.52001953125, + "x1": 413.6400146484375, + "y1": 212.760009765625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 200.52001953125, + "x1": 540.0, + "y1": 212.760009765625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 187.91998291015625, + "x1": 413.6400146484375, + "y1": 199.79998779296875, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 187.91998291015625, + "x1": 540.0, + "y1": 199.79998779296875, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 174.96002197265625, + "x1": 413.6400146484375, + "y1": 187.20001220703125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 174.96002197265625, + "x1": 540.0, + "y1": 187.20001220703125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 162.0, + "x1": 413.6400146484375, + "y1": 174.239990234375, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 162.0, + "x1": 540.0, + "y1": 174.239990234375, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 149.4000244140625, + "x1": 413.6400146484375, + "y1": 161.280029296875, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 149.4000244140625, + "x1": 540.0, + "y1": 161.280029296875, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 136.44000244140625, + "x1": 413.6400146484375, + "y1": 148.67999267578125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 136.44000244140625, + "x1": 540.0, + "y1": 148.67999267578125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 123.47998046875, + "x1": 413.6400146484375, + "y1": 135.719970703125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 123.47998046875, + "x1": 540.0, + "y1": 135.719970703125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 110.8800048828125, + "x1": 413.6400146484375, + "y1": 122.760009765625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 110.8800048828125, + "x1": 540.0, + "y1": 122.760009765625, + "width": 125.6400146484375, + "height": 11.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 406, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 666.3599853515625, + "x1": 117.0, + "y1": 678.5999755859375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 666.3599853515625, + "x1": 152.27999877929688, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 666.3599853515625, + "x1": 187.1999969482422, + "y1": 678.5999755859375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 666.3599853515625, + "x1": 222.47999572753906, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 666.3599853515625, + "x1": 257.760009765625, + "y1": 678.5999755859375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 666.3599853515625, + "x1": 293.0400085449219, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 666.3599853515625, + "x1": 328.32000732421875, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 666.3599853515625, + "x1": 363.6000061035156, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 666.3599853515625, + "x1": 398.8800048828125, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 666.3599853515625, + "x1": 434.1600036621094, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 666.3599853515625, + "x1": 469.44000244140625, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 666.3599853515625, + "x1": 504.7200012207031, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 666.3599853515625, + "x1": 540.0, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 117.0, + "y1": 665.6400146484375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 653.4000244140625, + "x1": 152.27999877929688, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 653.4000244140625, + "x1": 187.1999969482422, + "y1": 665.6400146484375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 653.4000244140625, + "x1": 222.47999572753906, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 653.4000244140625, + "x1": 257.760009765625, + "y1": 665.6400146484375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 653.4000244140625, + "x1": 293.0400085449219, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 653.4000244140625, + "x1": 328.32000732421875, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 653.4000244140625, + "x1": 363.6000061035156, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 653.4000244140625, + "x1": 398.8800048828125, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 653.4000244140625, + "x1": 434.1600036621094, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 653.4000244140625, + "x1": 469.44000244140625, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 653.4000244140625, + "x1": 504.7200012207031, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 566.6400146484375, + "x1": 117.0, + "y1": 578.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 566.6400146484375, + "x1": 152.27999877929688, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 566.6400146484375, + "x1": 187.1999969482422, + "y1": 578.8800048828125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 566.6400146484375, + "x1": 222.47999572753906, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 566.6400146484375, + "x1": 257.760009765625, + "y1": 578.8800048828125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 566.6400146484375, + "x1": 293.0400085449219, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 566.6400146484375, + "x1": 328.32000732421875, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 566.6400146484375, + "x1": 363.6000061035156, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 566.6400146484375, + "x1": 398.8800048828125, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 566.6400146484375, + "x1": 434.1600036621094, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 566.6400146484375, + "x1": 469.44000244140625, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 566.6400146484375, + "x1": 504.7200012207031, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 566.6400146484375, + "x1": 540.0, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 553.6799926757812, + "x1": 117.0, + "y1": 565.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 553.6799926757812, + "x1": 152.27999877929688, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 553.6799926757812, + "x1": 187.1999969482422, + "y1": 565.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 553.6799926757812, + "x1": 222.47999572753906, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 553.6799926757812, + "x1": 257.760009765625, + "y1": 565.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 553.6799926757812, + "x1": 293.0400085449219, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 553.6799926757812, + "x1": 328.32000732421875, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 553.6799926757812, + "x1": 363.6000061035156, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 553.6799926757812, + "x1": 398.8800048828125, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 553.6799926757812, + "x1": 434.1600036621094, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 553.6799926757812, + "x1": 469.44000244140625, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 553.6799926757812, + "x1": 504.7200012207031, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 553.6799926757812, + "x1": 540.0, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 531.719970703125, + "x1": 327.9599914550781, + "y1": 543.5999755859375, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 518.760009765625, + "x1": 327.9599914550781, + "y1": 531.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 494.6400146484375, + "x1": 327.9599914550781, + "y1": 508.67999267578125, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 479.8800048828125, + "x1": 327.9599914550781, + "y1": 493.9200134277344, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 389.8800048828125, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 39.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 328.67999267578125, + "y0": 389.8800048828125, + "x1": 369.7200012207031, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 371.5199890136719, + "y0": 389.8800048828125, + "x1": 412.55999755859375, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 413.2799987792969, + "y0": 389.8800048828125, + "x1": 454.67999267578125, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 456.1199951171875, + "y0": 389.8800048828125, + "x1": 497.5199890136719, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 498.239990234375, + "y0": 389.8800048828125, + "x1": 540.0, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 12.959991455078125 + }, { + "x0": 288.3599853515625, + "y0": 369.3599853515625, + "x1": 327.9599914550781, + "y1": 389.1600036621094, + "width": 39.600006103515625, + "height": 19.800018310546875 + }, { + "x0": 328.67999267578125, + "y0": 369.3599853515625, + "x1": 369.7200012207031, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 371.5199890136719, + "y0": 369.3599853515625, + "x1": 412.55999755859375, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 413.2799987792969, + "y0": 369.3599853515625, + "x1": 454.67999267578125, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 456.1199951171875, + "y0": 369.3599853515625, + "x1": 497.5199890136719, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 498.239990234375, + "y0": 369.3599853515625, + "x1": 540.0, + "y1": 389.1600036621094, + "width": 41.760009765625, + "height": 19.800018310546875 + }, { + "x0": 288.3599853515625, + "y0": 240.1199951171875, + "x1": 413.6400146484375, + "y1": 252.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 240.1199951171875, + "x1": 540.0, + "y1": 252.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 227.15997314453125, + "x1": 413.6400146484375, + "y1": 239.4000244140625, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 227.15997314453125, + "x1": 540.0, + "y1": 239.4000244140625, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 214.55999755859375, + "x1": 413.6400146484375, + "y1": 226.44000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 214.55999755859375, + "x1": 540.0, + "y1": 226.44000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 201.5999755859375, + "x1": 413.6400146484375, + "y1": 213.84002685546875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 201.5999755859375, + "x1": 540.0, + "y1": 213.84002685546875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 188.6400146484375, + "x1": 413.6400146484375, + "y1": 200.8800048828125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 188.6400146484375, + "x1": 540.0, + "y1": 200.8800048828125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 176.03997802734375, + "x1": 413.6400146484375, + "y1": 187.91998291015625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 176.03997802734375, + "x1": 540.0, + "y1": 187.91998291015625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 163.08001708984375, + "x1": 413.6400146484375, + "y1": 175.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.08001708984375, + "x1": 540.0, + "y1": 175.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.1199951171875, + "x1": 413.6400146484375, + "y1": 162.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.1199951171875, + "x1": 540.0, + "y1": 162.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 137.52001953125, + "x1": 413.6400146484375, + "y1": 149.4000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 137.52001953125, + "x1": 540.0, + "y1": 149.4000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 120.5999755859375, + "x1": 540.0, + "y1": 136.79998779296875, + "width": 251.6400146484375, + "height": 16.20001220703125 + } + ] + }, { + "pageInfo": { + "number": 407, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 666.3599853515625, + "x1": 117.0, + "y1": 678.5999755859375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 666.3599853515625, + "x1": 152.27999877929688, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 666.3599853515625, + "x1": 187.1999969482422, + "y1": 678.5999755859375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 666.3599853515625, + "x1": 222.47999572753906, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 666.3599853515625, + "x1": 257.760009765625, + "y1": 678.5999755859375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 666.3599853515625, + "x1": 293.0400085449219, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 666.3599853515625, + "x1": 328.32000732421875, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 666.3599853515625, + "x1": 363.6000061035156, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 666.3599853515625, + "x1": 398.8800048828125, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 666.3599853515625, + "x1": 434.1600036621094, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 666.3599853515625, + "x1": 469.44000244140625, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 666.3599853515625, + "x1": 504.7200012207031, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 666.3599853515625, + "x1": 540.0, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 117.0, + "y1": 665.6400146484375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 653.4000244140625, + "x1": 152.27999877929688, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 653.4000244140625, + "x1": 187.1999969482422, + "y1": 665.6400146484375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 653.4000244140625, + "x1": 222.47999572753906, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 653.4000244140625, + "x1": 257.760009765625, + "y1": 665.6400146484375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 653.4000244140625, + "x1": 293.0400085449219, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 653.4000244140625, + "x1": 328.32000732421875, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 653.4000244140625, + "x1": 363.6000061035156, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 653.4000244140625, + "x1": 398.8800048828125, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 653.4000244140625, + "x1": 434.1600036621094, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 653.4000244140625, + "x1": 469.44000244140625, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 653.4000244140625, + "x1": 504.7200012207031, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 566.6400146484375, + "x1": 117.0, + "y1": 578.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 566.6400146484375, + "x1": 152.27999877929688, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 566.6400146484375, + "x1": 187.1999969482422, + "y1": 578.8800048828125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 566.6400146484375, + "x1": 222.47999572753906, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 566.6400146484375, + "x1": 257.760009765625, + "y1": 578.8800048828125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 566.6400146484375, + "x1": 293.0400085449219, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 566.6400146484375, + "x1": 328.32000732421875, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 566.6400146484375, + "x1": 363.6000061035156, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 566.6400146484375, + "x1": 398.8800048828125, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 566.6400146484375, + "x1": 434.1600036621094, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 566.6400146484375, + "x1": 469.44000244140625, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 566.6400146484375, + "x1": 504.7200012207031, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 566.6400146484375, + "x1": 540.0, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 553.6799926757812, + "x1": 117.0, + "y1": 565.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 553.6799926757812, + "x1": 152.27999877929688, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 553.6799926757812, + "x1": 187.1999969482422, + "y1": 565.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 553.6799926757812, + "x1": 222.47999572753906, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 553.6799926757812, + "x1": 257.760009765625, + "y1": 565.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 553.6799926757812, + "x1": 293.0400085449219, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 553.6799926757812, + "x1": 328.32000732421875, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 553.6799926757812, + "x1": 363.6000061035156, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 553.6799926757812, + "x1": 398.8800048828125, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 553.6799926757812, + "x1": 434.1600036621094, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 553.6799926757812, + "x1": 469.44000244140625, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 553.6799926757812, + "x1": 504.7200012207031, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 553.6799926757812, + "x1": 540.0, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 531.719970703125, + "x1": 327.9599914550781, + "y1": 543.5999755859375, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 518.760009765625, + "x1": 327.9599914550781, + "y1": 531.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 494.6400146484375, + "x1": 327.9599914550781, + "y1": 508.67999267578125, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 479.8800048828125, + "x1": 327.9599914550781, + "y1": 493.9200134277344, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 389.8800048828125, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 39.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 328.67999267578125, + "y0": 389.8800048828125, + "x1": 369.7200012207031, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 371.5199890136719, + "y0": 389.8800048828125, + "x1": 412.55999755859375, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 413.2799987792969, + "y0": 389.8800048828125, + "x1": 454.67999267578125, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 456.1199951171875, + "y0": 389.8800048828125, + "x1": 497.5199890136719, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 498.239990234375, + "y0": 389.8800048828125, + "x1": 540.0, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 12.959991455078125 + }, { + "x0": 288.3599853515625, + "y0": 369.3599853515625, + "x1": 327.9599914550781, + "y1": 389.1600036621094, + "width": 39.600006103515625, + "height": 19.800018310546875 + }, { + "x0": 328.67999267578125, + "y0": 369.3599853515625, + "x1": 369.7200012207031, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 371.5199890136719, + "y0": 369.3599853515625, + "x1": 412.55999755859375, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 413.2799987792969, + "y0": 369.3599853515625, + "x1": 454.67999267578125, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 456.1199951171875, + "y0": 369.3599853515625, + "x1": 497.5199890136719, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 498.239990234375, + "y0": 369.3599853515625, + "x1": 540.0, + "y1": 389.1600036621094, + "width": 41.760009765625, + "height": 19.800018310546875 + }, { + "x0": 288.3599853515625, + "y0": 240.1199951171875, + "x1": 413.6400146484375, + "y1": 252.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 240.1199951171875, + "x1": 540.0, + "y1": 252.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 227.15997314453125, + "x1": 413.6400146484375, + "y1": 239.4000244140625, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 227.15997314453125, + "x1": 540.0, + "y1": 239.4000244140625, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 214.55999755859375, + "x1": 413.6400146484375, + "y1": 226.44000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 214.55999755859375, + "x1": 540.0, + "y1": 226.44000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 201.5999755859375, + "x1": 413.6400146484375, + "y1": 213.84002685546875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 201.5999755859375, + "x1": 540.0, + "y1": 213.84002685546875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 188.6400146484375, + "x1": 413.6400146484375, + "y1": 200.8800048828125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 188.6400146484375, + "x1": 540.0, + "y1": 200.8800048828125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 176.03997802734375, + "x1": 413.6400146484375, + "y1": 187.91998291015625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 176.03997802734375, + "x1": 540.0, + "y1": 187.91998291015625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 163.08001708984375, + "x1": 413.6400146484375, + "y1": 175.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.08001708984375, + "x1": 540.0, + "y1": 175.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.1199951171875, + "x1": 413.6400146484375, + "y1": 162.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.1199951171875, + "x1": 540.0, + "y1": 162.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 137.52001953125, + "x1": 413.6400146484375, + "y1": 149.4000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 137.52001953125, + "x1": 540.0, + "y1": 149.4000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 120.5999755859375, + "x1": 540.0, + "y1": 136.79998779296875, + "width": 251.6400146484375, + "height": 16.20001220703125 + } + ] + }, { + "pageInfo": { + "number": 408, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 666.3599853515625, + "x1": 117.0, + "y1": 678.5999755859375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 666.3599853515625, + "x1": 152.27999877929688, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 666.3599853515625, + "x1": 187.1999969482422, + "y1": 678.5999755859375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 666.3599853515625, + "x1": 222.47999572753906, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 666.3599853515625, + "x1": 257.760009765625, + "y1": 678.5999755859375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 666.3599853515625, + "x1": 293.0400085449219, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 666.3599853515625, + "x1": 328.32000732421875, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 666.3599853515625, + "x1": 363.6000061035156, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 666.3599853515625, + "x1": 398.8800048828125, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 666.3599853515625, + "x1": 434.1600036621094, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 666.3599853515625, + "x1": 469.44000244140625, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 666.3599853515625, + "x1": 504.7200012207031, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 666.3599853515625, + "x1": 540.0, + "y1": 678.5999755859375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 653.4000244140625, + "x1": 117.0, + "y1": 665.6400146484375, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 653.4000244140625, + "x1": 152.27999877929688, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 653.4000244140625, + "x1": 187.1999969482422, + "y1": 665.6400146484375, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 653.4000244140625, + "x1": 222.47999572753906, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 653.4000244140625, + "x1": 257.760009765625, + "y1": 665.6400146484375, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 653.4000244140625, + "x1": 293.0400085449219, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 653.4000244140625, + "x1": 328.32000732421875, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 653.4000244140625, + "x1": 363.6000061035156, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 653.4000244140625, + "x1": 398.8800048828125, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 653.4000244140625, + "x1": 434.1600036621094, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 653.4000244140625, + "x1": 469.44000244140625, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 653.4000244140625, + "x1": 504.7200012207031, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 653.4000244140625, + "x1": 540.0, + "y1": 665.6400146484375, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 566.6400146484375, + "x1": 117.0, + "y1": 578.8800048828125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 566.6400146484375, + "x1": 152.27999877929688, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 566.6400146484375, + "x1": 187.1999969482422, + "y1": 578.8800048828125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 566.6400146484375, + "x1": 222.47999572753906, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 566.6400146484375, + "x1": 257.760009765625, + "y1": 578.8800048828125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 566.6400146484375, + "x1": 293.0400085449219, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 566.6400146484375, + "x1": 328.32000732421875, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 566.6400146484375, + "x1": 363.6000061035156, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 566.6400146484375, + "x1": 398.8800048828125, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 566.6400146484375, + "x1": 434.1600036621094, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 566.6400146484375, + "x1": 469.44000244140625, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 566.6400146484375, + "x1": 504.7200012207031, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 566.6400146484375, + "x1": 540.0, + "y1": 578.8800048828125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 553.6799926757812, + "x1": 117.0, + "y1": 565.9199829101562, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 553.6799926757812, + "x1": 152.27999877929688, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 553.6799926757812, + "x1": 187.1999969482422, + "y1": 565.9199829101562, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 553.6799926757812, + "x1": 222.47999572753906, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 553.6799926757812, + "x1": 257.760009765625, + "y1": 565.9199829101562, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 553.6799926757812, + "x1": 293.0400085449219, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 553.6799926757812, + "x1": 328.32000732421875, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 553.6799926757812, + "x1": 363.6000061035156, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 553.6799926757812, + "x1": 398.8800048828125, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 553.6799926757812, + "x1": 434.1600036621094, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 553.6799926757812, + "x1": 469.44000244140625, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 553.6799926757812, + "x1": 504.7200012207031, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 553.6799926757812, + "x1": 540.0, + "y1": 565.9199829101562, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 531.719970703125, + "x1": 327.9599914550781, + "y1": 543.5999755859375, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 518.760009765625, + "x1": 327.9599914550781, + "y1": 531.0, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 494.6400146484375, + "x1": 327.9599914550781, + "y1": 508.67999267578125, + "width": 39.600006103515625, + "height": 14.03997802734375 + }, { + "x0": 288.3599853515625, + "y0": 479.8800048828125, + "x1": 327.9599914550781, + "y1": 493.9200134277344, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 389.8800048828125, + "x1": 327.9599914550781, + "y1": 402.8399963378906, + "width": 39.600006103515625, + "height": 12.959991455078125 + }, { + "x0": 328.67999267578125, + "y0": 389.8800048828125, + "x1": 369.7200012207031, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 371.5199890136719, + "y0": 389.8800048828125, + "x1": 412.55999755859375, + "y1": 402.8399963378906, + "width": 41.040008544921875, + "height": 12.959991455078125 + }, { + "x0": 413.2799987792969, + "y0": 389.8800048828125, + "x1": 454.67999267578125, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 456.1199951171875, + "y0": 389.8800048828125, + "x1": 497.5199890136719, + "y1": 402.8399963378906, + "width": 41.399993896484375, + "height": 12.959991455078125 + }, { + "x0": 498.239990234375, + "y0": 389.8800048828125, + "x1": 540.0, + "y1": 402.8399963378906, + "width": 41.760009765625, + "height": 12.959991455078125 + }, { + "x0": 288.3599853515625, + "y0": 369.3599853515625, + "x1": 327.9599914550781, + "y1": 389.1600036621094, + "width": 39.600006103515625, + "height": 19.800018310546875 + }, { + "x0": 328.67999267578125, + "y0": 369.3599853515625, + "x1": 369.7200012207031, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 371.5199890136719, + "y0": 369.3599853515625, + "x1": 412.55999755859375, + "y1": 389.1600036621094, + "width": 41.040008544921875, + "height": 19.800018310546875 + }, { + "x0": 413.2799987792969, + "y0": 369.3599853515625, + "x1": 454.67999267578125, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 456.1199951171875, + "y0": 369.3599853515625, + "x1": 497.5199890136719, + "y1": 389.1600036621094, + "width": 41.399993896484375, + "height": 19.800018310546875 + }, { + "x0": 498.239990234375, + "y0": 369.3599853515625, + "x1": 540.0, + "y1": 389.1600036621094, + "width": 41.760009765625, + "height": 19.800018310546875 + }, { + "x0": 288.3599853515625, + "y0": 240.1199951171875, + "x1": 413.6400146484375, + "y1": 252.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 240.1199951171875, + "x1": 540.0, + "y1": 252.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 227.15997314453125, + "x1": 413.6400146484375, + "y1": 239.4000244140625, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 227.15997314453125, + "x1": 540.0, + "y1": 239.4000244140625, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 214.55999755859375, + "x1": 413.6400146484375, + "y1": 226.44000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 214.55999755859375, + "x1": 540.0, + "y1": 226.44000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 201.5999755859375, + "x1": 413.6400146484375, + "y1": 213.84002685546875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 201.5999755859375, + "x1": 540.0, + "y1": 213.84002685546875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 188.6400146484375, + "x1": 413.6400146484375, + "y1": 200.8800048828125, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 188.6400146484375, + "x1": 540.0, + "y1": 200.8800048828125, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 176.03997802734375, + "x1": 413.6400146484375, + "y1": 187.91998291015625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 176.03997802734375, + "x1": 540.0, + "y1": 187.91998291015625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 163.08001708984375, + "x1": 413.6400146484375, + "y1": 175.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 163.08001708984375, + "x1": 540.0, + "y1": 175.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 150.1199951171875, + "x1": 413.6400146484375, + "y1": 162.3599853515625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 150.1199951171875, + "x1": 540.0, + "y1": 162.3599853515625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 137.52001953125, + "x1": 413.6400146484375, + "y1": 149.4000244140625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 137.52001953125, + "x1": 540.0, + "y1": 149.4000244140625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 120.5999755859375, + "x1": 540.0, + "y1": 136.79998779296875, + "width": 251.6400146484375, + "height": 16.20001220703125 + } + ] + }, { + "pageInfo": { + "number": 409, + "rotation": 0, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 90.72000122070312, + "y0": 665.280029296875, + "x1": 117.0, + "y1": 677.52001953125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 665.280029296875, + "x1": 152.27999877929688, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 665.280029296875, + "x1": 187.1999969482422, + "y1": 677.52001953125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 665.280029296875, + "x1": 222.47999572753906, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 665.280029296875, + "x1": 257.760009765625, + "y1": 677.52001953125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 665.280029296875, + "x1": 293.0400085449219, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 665.280029296875, + "x1": 328.32000732421875, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 665.280029296875, + "x1": 363.6000061035156, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 665.280029296875, + "x1": 398.8800048828125, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 665.280029296875, + "x1": 434.1600036621094, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 665.280029296875, + "x1": 469.44000244140625, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 665.280029296875, + "x1": 504.7200012207031, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 665.280029296875, + "x1": 540.0, + "y1": 677.52001953125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 652.3200073242188, + "x1": 117.0, + "y1": 664.5599975585938, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 652.3200073242188, + "x1": 152.27999877929688, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 652.3200073242188, + "x1": 187.1999969482422, + "y1": 664.5599975585938, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 652.3200073242188, + "x1": 222.47999572753906, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 652.3200073242188, + "x1": 257.760009765625, + "y1": 664.5599975585938, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 652.3200073242188, + "x1": 293.0400085449219, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 652.3200073242188, + "x1": 328.32000732421875, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 652.3200073242188, + "x1": 363.6000061035156, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 652.3200073242188, + "x1": 398.8800048828125, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 652.3200073242188, + "x1": 434.1600036621094, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 652.3200073242188, + "x1": 469.44000244140625, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 652.3200073242188, + "x1": 504.7200012207031, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 652.3200073242188, + "x1": 540.0, + "y1": 664.5599975585938, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 565.5599975585938, + "x1": 117.0, + "y1": 577.7999877929688, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 565.5599975585938, + "x1": 152.27999877929688, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 565.5599975585938, + "x1": 187.1999969482422, + "y1": 577.7999877929688, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 565.5599975585938, + "x1": 222.47999572753906, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 565.5599975585938, + "x1": 257.760009765625, + "y1": 577.7999877929688, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 565.5599975585938, + "x1": 293.0400085449219, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 565.5599975585938, + "x1": 328.32000732421875, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 565.5599975585938, + "x1": 363.6000061035156, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 565.5599975585938, + "x1": 398.8800048828125, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 565.5599975585938, + "x1": 434.1600036621094, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 565.5599975585938, + "x1": 469.44000244140625, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 565.5599975585938, + "x1": 504.7200012207031, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 565.5599975585938, + "x1": 540.0, + "y1": 577.7999877929688, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 90.72000122070312, + "y0": 552.5999755859375, + "x1": 117.0, + "y1": 564.8399658203125, + "width": 26.279998779296875, + "height": 12.239990234375 + }, { + "x0": 117.72000122070312, + "y0": 552.5999755859375, + "x1": 152.27999877929688, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 153.0, + "y0": 552.5999755859375, + "x1": 187.1999969482422, + "y1": 564.8399658203125, + "width": 34.19999694824219, + "height": 12.239990234375 + }, { + "x0": 187.9199981689453, + "y0": 552.5999755859375, + "x1": 222.47999572753906, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 223.1999969482422, + "y0": 552.5999755859375, + "x1": 257.760009765625, + "y1": 564.8399658203125, + "width": 34.56001281738281, + "height": 12.239990234375 + }, { + "x0": 258.4800109863281, + "y0": 552.5999755859375, + "x1": 293.0400085449219, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 293.760009765625, + "y0": 552.5999755859375, + "x1": 328.32000732421875, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 329.0400085449219, + "y0": 552.5999755859375, + "x1": 363.6000061035156, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 364.32000732421875, + "y0": 552.5999755859375, + "x1": 398.8800048828125, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 399.6000061035156, + "y0": 552.5999755859375, + "x1": 434.1600036621094, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 434.8800048828125, + "y0": 552.5999755859375, + "x1": 469.44000244140625, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 470.1600036621094, + "y0": 552.5999755859375, + "x1": 504.7200012207031, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 505.44000244140625, + "y0": 552.5999755859375, + "x1": 540.0, + "y1": 564.8399658203125, + "width": 34.55999755859375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 530.280029296875, + "x1": 327.9599914550781, + "y1": 542.52001953125, + "width": 39.600006103515625, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 517.6799926757812, + "x1": 327.9599914550781, + "y1": 529.5599975585938, + "width": 39.600006103515625, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 493.55999755859375, + "x1": 327.9599914550781, + "y1": 507.6000061035156, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 478.79998779296875, + "x1": 327.9599914550781, + "y1": 492.8399963378906, + "width": 39.600006103515625, + "height": 14.040008544921875 + }, { + "x0": 288.3599853515625, + "y0": 388.79998779296875, + "x1": 327.9599914550781, + "y1": 401.760009765625, + "width": 39.600006103515625, + "height": 12.96002197265625 + }, { + "x0": 328.67999267578125, + "y0": 388.79998779296875, + "x1": 369.7200012207031, + "y1": 401.760009765625, + "width": 41.040008544921875, + "height": 12.96002197265625 + }, { + "x0": 371.5199890136719, + "y0": 388.79998779296875, + "x1": 412.55999755859375, + "y1": 401.760009765625, + "width": 41.040008544921875, + "height": 12.96002197265625 + }, { + "x0": 413.2799987792969, + "y0": 388.79998779296875, + "x1": 454.67999267578125, + "y1": 401.760009765625, + "width": 41.399993896484375, + "height": 12.96002197265625 + }, { + "x0": 456.1199951171875, + "y0": 388.79998779296875, + "x1": 497.5199890136719, + "y1": 401.760009765625, + "width": 41.399993896484375, + "height": 12.96002197265625 + }, { + "x0": 498.239990234375, + "y0": 388.79998779296875, + "x1": 540.0, + "y1": 401.760009765625, + "width": 41.760009765625, + "height": 12.96002197265625 + }, { + "x0": 288.3599853515625, + "y0": 368.2799987792969, + "x1": 327.9599914550781, + "y1": 388.0799865722656, + "width": 39.600006103515625, + "height": 19.79998779296875 + }, { + "x0": 328.67999267578125, + "y0": 368.2799987792969, + "x1": 369.7200012207031, + "y1": 388.0799865722656, + "width": 41.040008544921875, + "height": 19.79998779296875 + }, { + "x0": 371.5199890136719, + "y0": 368.2799987792969, + "x1": 412.55999755859375, + "y1": 388.0799865722656, + "width": 41.040008544921875, + "height": 19.79998779296875 + }, { + "x0": 413.2799987792969, + "y0": 368.2799987792969, + "x1": 454.67999267578125, + "y1": 388.0799865722656, + "width": 41.399993896484375, + "height": 19.79998779296875 + }, { + "x0": 456.1199951171875, + "y0": 368.2799987792969, + "x1": 497.5199890136719, + "y1": 388.0799865722656, + "width": 41.399993896484375, + "height": 19.79998779296875 + }, { + "x0": 498.239990234375, + "y0": 368.2799987792969, + "x1": 540.0, + "y1": 388.0799865722656, + "width": 41.760009765625, + "height": 19.79998779296875 + }, { + "x0": 288.3599853515625, + "y0": 239.03997802734375, + "x1": 413.6400146484375, + "y1": 251.280029296875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 239.03997802734375, + "x1": 540.0, + "y1": 251.280029296875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 226.08001708984375, + "x1": 413.6400146484375, + "y1": 238.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 226.08001708984375, + "x1": 540.0, + "y1": 238.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 213.47998046875, + "x1": 413.6400146484375, + "y1": 225.3599853515625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 213.47998046875, + "x1": 540.0, + "y1": 225.3599853515625, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 200.52001953125, + "x1": 413.6400146484375, + "y1": 212.760009765625, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 200.52001953125, + "x1": 540.0, + "y1": 212.760009765625, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 187.55999755859375, + "x1": 413.6400146484375, + "y1": 199.79998779296875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 187.55999755859375, + "x1": 540.0, + "y1": 199.79998779296875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 174.96002197265625, + "x1": 413.6400146484375, + "y1": 186.84002685546875, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 174.96002197265625, + "x1": 540.0, + "y1": 186.84002685546875, + "width": 125.6400146484375, + "height": 11.8800048828125 + }, { + "x0": 288.3599853515625, + "y0": 162.0, + "x1": 413.6400146484375, + "y1": 174.239990234375, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 162.0, + "x1": 540.0, + "y1": 174.239990234375, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 149.03997802734375, + "x1": 413.6400146484375, + "y1": 161.280029296875, + "width": 125.280029296875, + "height": 12.24005126953125 + }, { + "x0": 414.3599853515625, + "y0": 149.03997802734375, + "x1": 540.0, + "y1": 161.280029296875, + "width": 125.6400146484375, + "height": 12.24005126953125 + }, { + "x0": 288.3599853515625, + "y0": 136.08001708984375, + "x1": 413.6400146484375, + "y1": 148.32000732421875, + "width": 125.280029296875, + "height": 12.239990234375 + }, { + "x0": 414.3599853515625, + "y0": 136.08001708984375, + "x1": 540.0, + "y1": 148.32000732421875, + "width": 125.6400146484375, + "height": 12.239990234375 + }, { + "x0": 288.3599853515625, + "y0": 123.47998046875, + "x1": 413.6400146484375, + "y1": 135.3599853515625, + "width": 125.280029296875, + "height": 11.8800048828125 + }, { + "x0": 414.3599853515625, + "y0": 123.47998046875, + "x1": 540.0, + "y1": 135.3599853515625, + "width": 125.6400146484375, + "height": 11.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 411, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 416.5199890136719, + "y0": 372.96002197265625, + "x1": 728.280029296875, + "y1": 492.1199951171875, + "width": 311.7600402832031, + "height": 119.15997314453125 + }, { + "x0": 670.6799926757812, + "y0": 302.760009765625, + "x1": 728.280029296875, + "y1": 357.8399963378906, + "width": 57.60003662109375, + "height": 55.079986572265625 + }, { + "x0": 670.6799926757812, + "y0": 284.0400085449219, + "x1": 728.280029296875, + "y1": 302.0400085449219, + "width": 57.60003662109375, + "height": 18.0 + }, { + "x0": 670.6799926757812, + "y0": 136.44000244140625, + "x1": 728.280029296875, + "y1": 283.32000732421875, + "width": 57.60003662109375, + "height": 146.8800048828125 + }, { + "x0": 67.32000732421875, + "y0": 99.0, + "x1": 728.280029296875, + "y1": 135.719970703125, + "width": 660.9600219726562, + "height": 36.719970703125 + }, { + "x0": 648.0, + "y0": 302.760009765625, + "x1": 669.9600219726562, + "y1": 357.8399963378906, + "width": 21.96002197265625, + "height": 55.079986572265625 + }, { + "x0": 648.0, + "y0": 284.0400085449219, + "x1": 669.9600219726562, + "y1": 302.0400085449219, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 648.0, + "y0": 255.239990234375, + "x1": 669.9600219726562, + "y1": 273.5999755859375, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 236.52001953125, + "x1": 669.9600219726562, + "y1": 254.52001953125, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 648.0, + "y0": 217.44000244140625, + "x1": 669.9600219726562, + "y1": 235.79998779296875, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 183.9599609375, + "x1": 669.9600219726562, + "y1": 207.0, + "width": 21.96002197265625, + "height": 23.0400390625 + }, { + "x0": 648.0, + "y0": 156.239990234375, + "x1": 669.9600219726562, + "y1": 183.239990234375, + "width": 21.96002197265625, + "height": 27.0 + }, { + "x0": 648.0, + "y0": 136.44000244140625, + "x1": 669.9600219726562, + "y1": 155.52001953125, + "width": 21.96002197265625, + "height": 19.08001708984375 + }, { + "x0": 625.6799926757812, + "y0": 302.760009765625, + "x1": 647.280029296875, + "y1": 345.9599914550781, + "width": 21.60003662109375, + "height": 43.199981689453125 + }, { + "x0": 625.6799926757812, + "y0": 284.0400085449219, + "x1": 647.280029296875, + "y1": 302.0400085449219, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 625.6799926757812, + "y0": 255.239990234375, + "x1": 647.280029296875, + "y1": 273.5999755859375, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 236.52001953125, + "x1": 647.280029296875, + "y1": 254.52001953125, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 625.6799926757812, + "y0": 217.44000244140625, + "x1": 647.280029296875, + "y1": 235.79998779296875, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 183.9599609375, + "x1": 647.280029296875, + "y1": 207.0, + "width": 21.60003662109375, + "height": 23.0400390625 + }, { + "x0": 625.6799926757812, + "y0": 156.239990234375, + "x1": 647.280029296875, + "y1": 183.239990234375, + "width": 21.60003662109375, + "height": 27.0 + }, { + "x0": 625.6799926757812, + "y0": 136.44000244140625, + "x1": 647.280029296875, + "y1": 155.52001953125, + "width": 21.60003662109375, + "height": 19.08001708984375 + }, { + "x0": 603.0, + "y0": 302.760009765625, + "x1": 624.9600219726562, + "y1": 345.9599914550781, + "width": 21.96002197265625, + "height": 43.199981689453125 + }, { + "x0": 603.0, + "y0": 284.0400085449219, + "x1": 624.9600219726562, + "y1": 302.0400085449219, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 603.0, + "y0": 255.239990234375, + "x1": 624.9600219726562, + "y1": 273.5999755859375, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 236.52001953125, + "x1": 624.9600219726562, + "y1": 254.52001953125, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 603.0, + "y0": 217.44000244140625, + "x1": 624.9600219726562, + "y1": 235.79998779296875, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 183.9599609375, + "x1": 624.9600219726562, + "y1": 207.0, + "width": 21.96002197265625, + "height": 23.0400390625 + }, { + "x0": 603.0, + "y0": 156.239990234375, + "x1": 624.9600219726562, + "y1": 183.239990234375, + "width": 21.96002197265625, + "height": 27.0 + }, { + "x0": 603.0, + "y0": 136.44000244140625, + "x1": 624.9600219726562, + "y1": 155.52001953125, + "width": 21.96002197265625, + "height": 19.08001708984375 + }, { + "x0": 580.6799926757812, + "y0": 302.760009765625, + "x1": 602.280029296875, + "y1": 345.9599914550781, + "width": 21.60003662109375, + "height": 43.199981689453125 + }, { + "x0": 580.6799926757812, + "y0": 284.0400085449219, + "x1": 602.280029296875, + "y1": 302.0400085449219, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 580.6799926757812, + "y0": 255.239990234375, + "x1": 602.280029296875, + "y1": 273.5999755859375, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 236.52001953125, + "x1": 602.280029296875, + "y1": 254.52001953125, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 580.6799926757812, + "y0": 217.44000244140625, + "x1": 602.280029296875, + "y1": 235.79998779296875, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 183.9599609375, + "x1": 602.280029296875, + "y1": 207.0, + "width": 21.60003662109375, + "height": 23.0400390625 + }, { + "x0": 580.6799926757812, + "y0": 156.239990234375, + "x1": 602.280029296875, + "y1": 183.239990234375, + "width": 21.60003662109375, + "height": 27.0 + }, { + "x0": 580.6799926757812, + "y0": 136.44000244140625, + "x1": 602.280029296875, + "y1": 155.52001953125, + "width": 21.60003662109375, + "height": 19.08001708984375 + }, { + "x0": 558.0, + "y0": 302.760009765625, + "x1": 579.9600219726562, + "y1": 345.9599914550781, + "width": 21.96002197265625, + "height": 43.199981689453125 + }, { + "x0": 558.0, + "y0": 284.0400085449219, + "x1": 579.9600219726562, + "y1": 302.0400085449219, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 558.0, + "y0": 255.239990234375, + "x1": 579.9600219726562, + "y1": 273.5999755859375, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 236.52001953125, + "x1": 579.9600219726562, + "y1": 254.52001953125, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 558.0, + "y0": 217.44000244140625, + "x1": 579.9600219726562, + "y1": 235.79998779296875, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 183.9599609375, + "x1": 579.9600219726562, + "y1": 207.0, + "width": 21.96002197265625, + "height": 23.0400390625 + }, { + "x0": 558.0, + "y0": 156.239990234375, + "x1": 579.9600219726562, + "y1": 183.239990234375, + "width": 21.96002197265625, + "height": 27.0 + }, { + "x0": 558.0, + "y0": 136.44000244140625, + "x1": 579.9600219726562, + "y1": 155.52001953125, + "width": 21.96002197265625, + "height": 19.08001708984375 + }, { + "x0": 535.6799926757812, + "y0": 302.760009765625, + "x1": 557.280029296875, + "y1": 345.9599914550781, + "width": 21.60003662109375, + "height": 43.199981689453125 + }, { + "x0": 535.6799926757812, + "y0": 284.0400085449219, + "x1": 557.280029296875, + "y1": 302.0400085449219, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 535.6799926757812, + "y0": 255.239990234375, + "x1": 557.280029296875, + "y1": 273.5999755859375, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 236.52001953125, + "x1": 557.280029296875, + "y1": 254.52001953125, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 535.6799926757812, + "y0": 217.44000244140625, + "x1": 557.280029296875, + "y1": 235.79998779296875, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 183.9599609375, + "x1": 557.280029296875, + "y1": 207.0, + "width": 21.60003662109375, + "height": 23.0400390625 + }, { + "x0": 535.6799926757812, + "y0": 156.239990234375, + "x1": 557.280029296875, + "y1": 183.239990234375, + "width": 21.60003662109375, + "height": 27.0 + }, { + "x0": 535.6799926757812, + "y0": 136.44000244140625, + "x1": 557.280029296875, + "y1": 155.52001953125, + "width": 21.60003662109375, + "height": 19.08001708984375 + }, { + "x0": 508.32000732421875, + "y0": 302.760009765625, + "x1": 534.9599609375, + "y1": 345.9599914550781, + "width": 26.63995361328125, + "height": 43.199981689453125 + }, { + "x0": 508.32000732421875, + "y0": 284.0400085449219, + "x1": 534.9599609375, + "y1": 302.0400085449219, + "width": 26.63995361328125, + "height": 18.0 + }, { + "x0": 508.32000732421875, + "y0": 255.239990234375, + "x1": 534.9599609375, + "y1": 273.5999755859375, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 236.52001953125, + "x1": 534.9599609375, + "y1": 254.52001953125, + "width": 26.63995361328125, + "height": 18.0 + }, { + "x0": 508.32000732421875, + "y0": 217.44000244140625, + "x1": 534.9599609375, + "y1": 235.79998779296875, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 183.9599609375, + "x1": 534.9599609375, + "y1": 207.0, + "width": 26.63995361328125, + "height": 23.0400390625 + }, { + "x0": 508.32000732421875, + "y0": 156.239990234375, + "x1": 534.9599609375, + "y1": 183.239990234375, + "width": 26.63995361328125, + "height": 27.0 + }, { + "x0": 508.32000732421875, + "y0": 136.44000244140625, + "x1": 534.9599609375, + "y1": 155.52001953125, + "width": 26.63995361328125, + "height": 19.08001708984375 + }, { + "x0": 485.6400146484375, + "y0": 302.760009765625, + "x1": 507.6000061035156, + "y1": 345.9599914550781, + "width": 21.959991455078125, + "height": 43.199981689453125 + }, { + "x0": 485.6400146484375, + "y0": 284.0400085449219, + "x1": 507.6000061035156, + "y1": 302.0400085449219, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 485.6400146484375, + "y0": 255.239990234375, + "x1": 507.6000061035156, + "y1": 273.5999755859375, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 236.52001953125, + "x1": 507.6000061035156, + "y1": 254.52001953125, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 485.6400146484375, + "y0": 217.44000244140625, + "x1": 507.6000061035156, + "y1": 235.79998779296875, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 183.9599609375, + "x1": 507.6000061035156, + "y1": 207.0, + "width": 21.959991455078125, + "height": 23.0400390625 + }, { + "x0": 485.6400146484375, + "y0": 156.239990234375, + "x1": 507.6000061035156, + "y1": 183.239990234375, + "width": 21.959991455078125, + "height": 27.0 + }, { + "x0": 485.6400146484375, + "y0": 136.44000244140625, + "x1": 507.6000061035156, + "y1": 155.52001953125, + "width": 21.959991455078125, + "height": 19.08001708984375 + }, { + "x0": 452.8800048828125, + "y0": 302.760009765625, + "x1": 484.9200134277344, + "y1": 345.9599914550781, + "width": 32.040008544921875, + "height": 43.199981689453125 + }, { + "x0": 452.8800048828125, + "y0": 284.0400085449219, + "x1": 484.9200134277344, + "y1": 302.0400085449219, + "width": 32.040008544921875, + "height": 18.0 + }, { + "x0": 452.8800048828125, + "y0": 255.239990234375, + "x1": 484.9200134277344, + "y1": 273.5999755859375, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 236.52001953125, + "x1": 484.9200134277344, + "y1": 254.52001953125, + "width": 32.040008544921875, + "height": 18.0 + }, { + "x0": 452.8800048828125, + "y0": 217.44000244140625, + "x1": 484.9200134277344, + "y1": 235.79998779296875, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 183.9599609375, + "x1": 484.9200134277344, + "y1": 207.0, + "width": 32.040008544921875, + "height": 23.0400390625 + }, { + "x0": 452.8800048828125, + "y0": 156.239990234375, + "x1": 484.9200134277344, + "y1": 183.239990234375, + "width": 32.040008544921875, + "height": 27.0 + }, { + "x0": 452.8800048828125, + "y0": 136.44000244140625, + "x1": 484.9200134277344, + "y1": 155.52001953125, + "width": 32.040008544921875, + "height": 19.08001708984375 + }, { + "x0": 420.8399963378906, + "y0": 302.760009765625, + "x1": 452.1600036621094, + "y1": 357.8399963378906, + "width": 31.32000732421875, + "height": 55.079986572265625 + }, { + "x0": 420.8399963378906, + "y0": 284.0400085449219, + "x1": 452.1600036621094, + "y1": 302.0400085449219, + "width": 31.32000732421875, + "height": 18.0 + }, { + "x0": 420.8399963378906, + "y0": 255.239990234375, + "x1": 452.1600036621094, + "y1": 273.5999755859375, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 236.52001953125, + "x1": 452.1600036621094, + "y1": 254.52001953125, + "width": 31.32000732421875, + "height": 18.0 + }, { + "x0": 420.8399963378906, + "y0": 217.44000244140625, + "x1": 452.1600036621094, + "y1": 235.79998779296875, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 183.9599609375, + "x1": 452.1600036621094, + "y1": 207.0, + "width": 31.32000732421875, + "height": 23.0400390625 + }, { + "x0": 420.8399963378906, + "y0": 156.239990234375, + "x1": 452.1600036621094, + "y1": 183.239990234375, + "width": 31.32000732421875, + "height": 27.0 + }, { + "x0": 420.8399963378906, + "y0": 136.44000244140625, + "x1": 452.1600036621094, + "y1": 155.52001953125, + "width": 31.32000732421875, + "height": 19.08001708984375 + }, { + "x0": 382.67999267578125, + "y0": 302.760009765625, + "x1": 420.1199951171875, + "y1": 357.8399963378906, + "width": 37.44000244140625, + "height": 55.079986572265625 + }, { + "x0": 382.67999267578125, + "y0": 284.0400085449219, + "x1": 420.1199951171875, + "y1": 302.0400085449219, + "width": 37.44000244140625, + "height": 18.0 + }, { + "x0": 382.67999267578125, + "y0": 217.44000244140625, + "x1": 420.1199951171875, + "y1": 273.5999755859375, + "width": 37.44000244140625, + "height": 56.15997314453125 + }, { + "x0": 382.67999267578125, + "y0": 136.44000244140625, + "x1": 420.1199951171875, + "y1": 207.0, + "width": 37.44000244140625, + "height": 70.55999755859375 + }, { + "x0": 67.32000732421875, + "y0": 372.96002197265625, + "x1": 415.79998779296875, + "y1": 492.1199951171875, + "width": 348.47998046875, + "height": 119.15997314453125 + }, { + "x0": 346.67999267578125, + "y0": 302.760009765625, + "x1": 381.9599914550781, + "y1": 357.8399963378906, + "width": 35.279998779296875, + "height": 55.079986572265625 + }, { + "x0": 346.67999267578125, + "y0": 284.0400085449219, + "x1": 381.9599914550781, + "y1": 302.0400085449219, + "width": 35.279998779296875, + "height": 18.0 + }, { + "x0": 346.67999267578125, + "y0": 217.44000244140625, + "x1": 381.9599914550781, + "y1": 273.5999755859375, + "width": 35.279998779296875, + "height": 56.15997314453125 + }, { + "x0": 346.67999267578125, + "y0": 136.44000244140625, + "x1": 381.9599914550781, + "y1": 207.0, + "width": 35.279998779296875, + "height": 70.55999755859375 + }, { + "x0": 324.0, + "y0": 302.760009765625, + "x1": 345.9599914550781, + "y1": 357.8399963378906, + "width": 21.959991455078125, + "height": 55.079986572265625 + }, { + "x0": 324.0, + "y0": 284.0400085449219, + "x1": 345.9599914550781, + "y1": 302.0400085449219, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 324.0, + "y0": 217.44000244140625, + "x1": 345.9599914550781, + "y1": 273.5999755859375, + "width": 21.959991455078125, + "height": 56.15997314453125 + }, { + "x0": 324.0, + "y0": 136.44000244140625, + "x1": 345.9599914550781, + "y1": 207.0, + "width": 21.959991455078125, + "height": 70.55999755859375 + }, { + "x0": 256.67999267578125, + "y0": 302.760009765625, + "x1": 323.2799987792969, + "y1": 357.8399963378906, + "width": 66.60000610351562, + "height": 55.079986572265625 + }, { + "x0": 292.67999267578125, + "y0": 284.0400085449219, + "x1": 323.2799987792969, + "y1": 302.0400085449219, + "width": 30.600006103515625, + "height": 18.0 + }, { + "x0": 292.67999267578125, + "y0": 217.44000244140625, + "x1": 323.2799987792969, + "y1": 273.5999755859375, + "width": 30.600006103515625, + "height": 56.15997314453125 + }, { + "x0": 292.67999267578125, + "y0": 136.44000244140625, + "x1": 323.2799987792969, + "y1": 207.0, + "width": 30.600006103515625, + "height": 70.55999755859375 + }, { + "x0": 256.67999267578125, + "y0": 284.0400085449219, + "x1": 291.9599914550781, + "y1": 302.0400085449219, + "width": 35.279998779296875, + "height": 18.0 + }, { + "x0": 256.67999267578125, + "y0": 217.44000244140625, + "x1": 291.9599914550781, + "y1": 273.5999755859375, + "width": 35.279998779296875, + "height": 56.15997314453125 + }, { + "x0": 256.67999267578125, + "y0": 136.44000244140625, + "x1": 291.9599914550781, + "y1": 207.0, + "width": 35.279998779296875, + "height": 70.55999755859375 + }, { + "x0": 211.67999267578125, + "y0": 302.760009765625, + "x1": 255.96002197265625, + "y1": 357.8399963378906, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 211.67999267578125, + "y0": 284.0400085449219, + "x1": 255.96002197265625, + "y1": 302.0400085449219, + "width": 44.280029296875, + "height": 18.0 + }, { + "x0": 211.67999267578125, + "y0": 136.44000244140625, + "x1": 255.96002197265625, + "y1": 283.32000732421875, + "width": 44.280029296875, + "height": 146.8800048828125 + }, { + "x0": 157.67999267578125, + "y0": 302.760009765625, + "x1": 210.96002197265625, + "y1": 357.8399963378906, + "width": 53.280029296875, + "height": 55.079986572265625 + }, { + "x0": 157.67999267578125, + "y0": 284.0400085449219, + "x1": 210.96002197265625, + "y1": 302.0400085449219, + "width": 53.280029296875, + "height": 18.0 + }, { + "x0": 157.67999267578125, + "y0": 136.44000244140625, + "x1": 210.96002197265625, + "y1": 283.32000732421875, + "width": 53.280029296875, + "height": 146.8800048828125 + }, { + "x0": 112.67999267578125, + "y0": 302.760009765625, + "x1": 156.96002197265625, + "y1": 357.8399963378906, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 112.67999267578125, + "y0": 284.0400085449219, + "x1": 156.96002197265625, + "y1": 302.0400085449219, + "width": 44.280029296875, + "height": 18.0 + }, { + "x0": 112.67999267578125, + "y0": 136.44000244140625, + "x1": 156.96002197265625, + "y1": 283.32000732421875, + "width": 44.280029296875, + "height": 146.8800048828125 + }, { + "x0": 67.32000732421875, + "y0": 302.760009765625, + "x1": 111.96002197265625, + "y1": 357.8399963378906, + "width": 44.6400146484375, + "height": 55.079986572265625 + }, { + "x0": 67.32000732421875, + "y0": 284.0400085449219, + "x1": 111.96002197265625, + "y1": 302.0400085449219, + "width": 44.6400146484375, + "height": 18.0 + }, { + "x0": 67.32000732421875, + "y0": 136.44000244140625, + "x1": 111.96002197265625, + "y1": 283.32000732421875, + "width": 44.6400146484375, + "height": 146.8800048828125 + } + ] + }, { + "pageInfo": { + "number": 412, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 416.5199890136719, + "y0": 372.96002197265625, + "x1": 728.280029296875, + "y1": 492.1199951171875, + "width": 311.7600402832031, + "height": 119.15997314453125 + }, { + "x0": 670.6799926757812, + "y0": 297.7200012207031, + "x1": 728.280029296875, + "y1": 352.79998779296875, + "width": 57.60003662109375, + "height": 55.079986572265625 + }, { + "x0": 670.6799926757812, + "y0": 278.6400146484375, + "x1": 728.280029296875, + "y1": 297.0, + "width": 57.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 670.6799926757812, + "y0": 128.1600341796875, + "x1": 728.280029296875, + "y1": 277.9200439453125, + "width": 57.60003662109375, + "height": 149.760009765625 + }, { + "x0": 67.32000732421875, + "y0": 90.719970703125, + "x1": 728.280029296875, + "y1": 127.44000244140625, + "width": 660.9600219726562, + "height": 36.72003173828125 + }, { + "x0": 648.0, + "y0": 297.7200012207031, + "x1": 669.9600219726562, + "y1": 352.79998779296875, + "width": 21.96002197265625, + "height": 55.079986572265625 + }, { + "x0": 648.0, + "y0": 278.6400146484375, + "x1": 669.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 247.32000732421875, + "x1": 669.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 648.0, + "y0": 225.3599853515625, + "x1": 669.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 203.4000244140625, + "x1": 669.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 171.719970703125, + "x1": 669.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 149.760009765625, + "x1": 669.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 128.1600341796875, + "x1": 669.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 625.6799926757812, + "y0": 297.7200012207031, + "x1": 647.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 625.6799926757812, + "y0": 278.6400146484375, + "x1": 647.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 247.32000732421875, + "x1": 647.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 625.6799926757812, + "y0": 225.3599853515625, + "x1": 647.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 203.4000244140625, + "x1": 647.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 171.719970703125, + "x1": 647.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 149.760009765625, + "x1": 647.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 128.1600341796875, + "x1": 647.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 603.0, + "y0": 297.7200012207031, + "x1": 624.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 603.0, + "y0": 278.6400146484375, + "x1": 624.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 247.32000732421875, + "x1": 624.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 603.0, + "y0": 225.3599853515625, + "x1": 624.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 203.4000244140625, + "x1": 624.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 171.719970703125, + "x1": 624.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 149.760009765625, + "x1": 624.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 128.1600341796875, + "x1": 624.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 580.6799926757812, + "y0": 297.7200012207031, + "x1": 602.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 580.6799926757812, + "y0": 278.6400146484375, + "x1": 602.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 247.32000732421875, + "x1": 602.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 580.6799926757812, + "y0": 225.3599853515625, + "x1": 602.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 203.4000244140625, + "x1": 602.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 171.719970703125, + "x1": 602.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 149.760009765625, + "x1": 602.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 128.1600341796875, + "x1": 602.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 558.0, + "y0": 297.7200012207031, + "x1": 579.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 558.0, + "y0": 278.6400146484375, + "x1": 579.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 247.32000732421875, + "x1": 579.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 558.0, + "y0": 225.3599853515625, + "x1": 579.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 203.4000244140625, + "x1": 579.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 171.719970703125, + "x1": 579.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 149.760009765625, + "x1": 579.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 128.1600341796875, + "x1": 579.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 535.6799926757812, + "y0": 297.7200012207031, + "x1": 557.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 535.6799926757812, + "y0": 278.6400146484375, + "x1": 557.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 247.32000732421875, + "x1": 557.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 535.6799926757812, + "y0": 225.3599853515625, + "x1": 557.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 203.4000244140625, + "x1": 557.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 171.719970703125, + "x1": 557.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 149.760009765625, + "x1": 557.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 128.1600341796875, + "x1": 557.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 508.32000732421875, + "y0": 297.7200012207031, + "x1": 534.9599609375, + "y1": 340.55999755859375, + "width": 26.63995361328125, + "height": 42.839996337890625 + }, { + "x0": 508.32000732421875, + "y0": 278.6400146484375, + "x1": 534.9599609375, + "y1": 297.0, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 247.32000732421875, + "x1": 534.9599609375, + "y1": 268.20001220703125, + "width": 26.63995361328125, + "height": 20.8800048828125 + }, { + "x0": 508.32000732421875, + "y0": 225.3599853515625, + "x1": 534.9599609375, + "y1": 246.5999755859375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 203.4000244140625, + "x1": 534.9599609375, + "y1": 224.6400146484375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 171.719970703125, + "x1": 534.9599609375, + "y1": 192.9599609375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 149.760009765625, + "x1": 534.9599609375, + "y1": 171.0, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 128.1600341796875, + "x1": 534.9599609375, + "y1": 149.0400390625, + "width": 26.63995361328125, + "height": 20.8800048828125 + }, { + "x0": 485.6400146484375, + "y0": 297.7200012207031, + "x1": 507.6000061035156, + "y1": 340.55999755859375, + "width": 21.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 485.6400146484375, + "y0": 278.6400146484375, + "x1": 507.6000061035156, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 247.32000732421875, + "x1": 507.6000061035156, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 485.6400146484375, + "y0": 225.3599853515625, + "x1": 507.6000061035156, + "y1": 246.5999755859375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 203.4000244140625, + "x1": 507.6000061035156, + "y1": 224.6400146484375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 171.719970703125, + "x1": 507.6000061035156, + "y1": 192.9599609375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 149.760009765625, + "x1": 507.6000061035156, + "y1": 171.0, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 128.1600341796875, + "x1": 507.6000061035156, + "y1": 149.0400390625, + "width": 21.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 452.8800048828125, + "y0": 297.7200012207031, + "x1": 484.9200134277344, + "y1": 340.55999755859375, + "width": 32.040008544921875, + "height": 42.839996337890625 + }, { + "x0": 452.8800048828125, + "y0": 278.6400146484375, + "x1": 484.9200134277344, + "y1": 297.0, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 247.32000732421875, + "x1": 484.9200134277344, + "y1": 268.20001220703125, + "width": 32.040008544921875, + "height": 20.8800048828125 + }, { + "x0": 452.8800048828125, + "y0": 225.3599853515625, + "x1": 484.9200134277344, + "y1": 246.5999755859375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 203.4000244140625, + "x1": 484.9200134277344, + "y1": 224.6400146484375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 171.719970703125, + "x1": 484.9200134277344, + "y1": 192.9599609375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 149.760009765625, + "x1": 484.9200134277344, + "y1": 171.0, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 128.1600341796875, + "x1": 484.9200134277344, + "y1": 149.0400390625, + "width": 32.040008544921875, + "height": 20.8800048828125 + }, { + "x0": 420.8399963378906, + "y0": 297.7200012207031, + "x1": 452.1600036621094, + "y1": 352.79998779296875, + "width": 31.32000732421875, + "height": 55.079986572265625 + }, { + "x0": 420.8399963378906, + "y0": 278.6400146484375, + "x1": 452.1600036621094, + "y1": 297.0, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 247.32000732421875, + "x1": 452.1600036621094, + "y1": 268.20001220703125, + "width": 31.32000732421875, + "height": 20.8800048828125 + }, { + "x0": 420.8399963378906, + "y0": 225.3599853515625, + "x1": 452.1600036621094, + "y1": 246.5999755859375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 203.4000244140625, + "x1": 452.1600036621094, + "y1": 224.6400146484375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 171.719970703125, + "x1": 452.1600036621094, + "y1": 192.9599609375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 149.760009765625, + "x1": 452.1600036621094, + "y1": 171.0, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 128.1600341796875, + "x1": 452.1600036621094, + "y1": 149.0400390625, + "width": 31.32000732421875, + "height": 20.8800048828125 + }, { + "x0": 382.67999267578125, + "y0": 297.7200012207031, + "x1": 420.1199951171875, + "y1": 352.79998779296875, + "width": 37.44000244140625, + "height": 55.079986572265625 + }, { + "x0": 382.67999267578125, + "y0": 278.6400146484375, + "x1": 420.1199951171875, + "y1": 297.0, + "width": 37.44000244140625, + "height": 18.3599853515625 + }, { + "x0": 382.67999267578125, + "y0": 203.4000244140625, + "x1": 420.1199951171875, + "y1": 268.20001220703125, + "width": 37.44000244140625, + "height": 64.79998779296875 + }, { + "x0": 382.67999267578125, + "y0": 128.1600341796875, + "x1": 420.1199951171875, + "y1": 192.9599609375, + "width": 37.44000244140625, + "height": 64.7999267578125 + }, { + "x0": 67.32000732421875, + "y0": 372.96002197265625, + "x1": 415.79998779296875, + "y1": 492.1199951171875, + "width": 348.47998046875, + "height": 119.15997314453125 + }, { + "x0": 346.67999267578125, + "y0": 297.7200012207031, + "x1": 381.9599914550781, + "y1": 352.79998779296875, + "width": 35.279998779296875, + "height": 55.079986572265625 + }, { + "x0": 346.67999267578125, + "y0": 278.6400146484375, + "x1": 381.9599914550781, + "y1": 297.0, + "width": 35.279998779296875, + "height": 18.3599853515625 + }, { + "x0": 346.67999267578125, + "y0": 203.4000244140625, + "x1": 381.9599914550781, + "y1": 268.20001220703125, + "width": 35.279998779296875, + "height": 64.79998779296875 + }, { + "x0": 346.67999267578125, + "y0": 128.1600341796875, + "x1": 381.9599914550781, + "y1": 192.9599609375, + "width": 35.279998779296875, + "height": 64.7999267578125 + }, { + "x0": 324.0, + "y0": 297.7200012207031, + "x1": 345.9599914550781, + "y1": 352.79998779296875, + "width": 21.959991455078125, + "height": 55.079986572265625 + }, { + "x0": 324.0, + "y0": 278.6400146484375, + "x1": 345.9599914550781, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 324.0, + "y0": 203.4000244140625, + "x1": 345.9599914550781, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 64.79998779296875 + }, { + "x0": 324.0, + "y0": 128.1600341796875, + "x1": 345.9599914550781, + "y1": 192.9599609375, + "width": 21.959991455078125, + "height": 64.7999267578125 + }, { + "x0": 256.67999267578125, + "y0": 297.7200012207031, + "x1": 323.2799987792969, + "y1": 352.79998779296875, + "width": 66.60000610351562, + "height": 55.079986572265625 + }, { + "x0": 292.67999267578125, + "y0": 278.6400146484375, + "x1": 323.2799987792969, + "y1": 297.0, + "width": 30.600006103515625, + "height": 18.3599853515625 + }, { + "x0": 292.67999267578125, + "y0": 203.4000244140625, + "x1": 323.2799987792969, + "y1": 268.20001220703125, + "width": 30.600006103515625, + "height": 64.79998779296875 + }, { + "x0": 292.67999267578125, + "y0": 128.1600341796875, + "x1": 323.2799987792969, + "y1": 192.9599609375, + "width": 30.600006103515625, + "height": 64.7999267578125 + }, { + "x0": 256.67999267578125, + "y0": 278.6400146484375, + "x1": 291.9599914550781, + "y1": 297.0, + "width": 35.279998779296875, + "height": 18.3599853515625 + }, { + "x0": 256.67999267578125, + "y0": 203.4000244140625, + "x1": 291.9599914550781, + "y1": 268.20001220703125, + "width": 35.279998779296875, + "height": 64.79998779296875 + }, { + "x0": 256.67999267578125, + "y0": 128.1600341796875, + "x1": 291.9599914550781, + "y1": 192.9599609375, + "width": 35.279998779296875, + "height": 64.7999267578125 + }, { + "x0": 211.67999267578125, + "y0": 297.7200012207031, + "x1": 255.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 211.67999267578125, + "y0": 278.6400146484375, + "x1": 255.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 211.67999267578125, + "y0": 128.1600341796875, + "x1": 255.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 149.760009765625 + }, { + "x0": 157.67999267578125, + "y0": 297.7200012207031, + "x1": 210.96002197265625, + "y1": 352.79998779296875, + "width": 53.280029296875, + "height": 55.079986572265625 + }, { + "x0": 157.67999267578125, + "y0": 278.6400146484375, + "x1": 210.96002197265625, + "y1": 297.0, + "width": 53.280029296875, + "height": 18.3599853515625 + }, { + "x0": 157.67999267578125, + "y0": 128.1600341796875, + "x1": 210.96002197265625, + "y1": 277.9200439453125, + "width": 53.280029296875, + "height": 149.760009765625 + }, { + "x0": 112.67999267578125, + "y0": 297.7200012207031, + "x1": 156.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 112.67999267578125, + "y0": 278.6400146484375, + "x1": 156.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 112.67999267578125, + "y0": 128.1600341796875, + "x1": 156.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 149.760009765625 + }, { + "x0": 67.32000732421875, + "y0": 297.7200012207031, + "x1": 111.96002197265625, + "y1": 352.79998779296875, + "width": 44.6400146484375, + "height": 55.079986572265625 + }, { + "x0": 67.32000732421875, + "y0": 278.6400146484375, + "x1": 111.96002197265625, + "y1": 297.0, + "width": 44.6400146484375, + "height": 18.3599853515625 + }, { + "x0": 67.32000732421875, + "y0": 128.1600341796875, + "x1": 111.96002197265625, + "y1": 277.9200439453125, + "width": 44.6400146484375, + "height": 149.760009765625 + } + ] + }, { + "pageInfo": { + "number": 413, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 416.5199890136719, + "y0": 372.96002197265625, + "x1": 728.280029296875, + "y1": 492.1199951171875, + "width": 311.7600402832031, + "height": 119.15997314453125 + }, { + "x0": 670.6799926757812, + "y0": 297.7200012207031, + "x1": 728.280029296875, + "y1": 352.79998779296875, + "width": 57.60003662109375, + "height": 55.079986572265625 + }, { + "x0": 670.6799926757812, + "y0": 278.6400146484375, + "x1": 728.280029296875, + "y1": 297.0, + "width": 57.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 670.6799926757812, + "y0": 128.1600341796875, + "x1": 728.280029296875, + "y1": 277.9200439453125, + "width": 57.60003662109375, + "height": 149.760009765625 + }, { + "x0": 67.32000732421875, + "y0": 90.719970703125, + "x1": 728.280029296875, + "y1": 127.44000244140625, + "width": 660.9600219726562, + "height": 36.72003173828125 + }, { + "x0": 648.0, + "y0": 297.7200012207031, + "x1": 669.9600219726562, + "y1": 352.79998779296875, + "width": 21.96002197265625, + "height": 55.079986572265625 + }, { + "x0": 648.0, + "y0": 278.6400146484375, + "x1": 669.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 247.32000732421875, + "x1": 669.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 648.0, + "y0": 225.3599853515625, + "x1": 669.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 203.4000244140625, + "x1": 669.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 171.719970703125, + "x1": 669.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 149.760009765625, + "x1": 669.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 128.1600341796875, + "x1": 669.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 625.6799926757812, + "y0": 297.7200012207031, + "x1": 647.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 625.6799926757812, + "y0": 278.6400146484375, + "x1": 647.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 247.32000732421875, + "x1": 647.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 625.6799926757812, + "y0": 225.3599853515625, + "x1": 647.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 203.4000244140625, + "x1": 647.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 171.719970703125, + "x1": 647.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 149.760009765625, + "x1": 647.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 128.1600341796875, + "x1": 647.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 603.0, + "y0": 297.7200012207031, + "x1": 624.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 603.0, + "y0": 278.6400146484375, + "x1": 624.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 247.32000732421875, + "x1": 624.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 603.0, + "y0": 225.3599853515625, + "x1": 624.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 203.4000244140625, + "x1": 624.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 171.719970703125, + "x1": 624.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 149.760009765625, + "x1": 624.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 128.1600341796875, + "x1": 624.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 580.6799926757812, + "y0": 297.7200012207031, + "x1": 602.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 580.6799926757812, + "y0": 278.6400146484375, + "x1": 602.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 247.32000732421875, + "x1": 602.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 580.6799926757812, + "y0": 225.3599853515625, + "x1": 602.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 203.4000244140625, + "x1": 602.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 171.719970703125, + "x1": 602.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 149.760009765625, + "x1": 602.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 128.1600341796875, + "x1": 602.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 558.0, + "y0": 297.7200012207031, + "x1": 579.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 558.0, + "y0": 278.6400146484375, + "x1": 579.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 247.32000732421875, + "x1": 579.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 558.0, + "y0": 225.3599853515625, + "x1": 579.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 203.4000244140625, + "x1": 579.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 171.719970703125, + "x1": 579.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 149.760009765625, + "x1": 579.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 128.1600341796875, + "x1": 579.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 535.6799926757812, + "y0": 297.7200012207031, + "x1": 557.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 535.6799926757812, + "y0": 278.6400146484375, + "x1": 557.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 247.32000732421875, + "x1": 557.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 535.6799926757812, + "y0": 225.3599853515625, + "x1": 557.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 203.4000244140625, + "x1": 557.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 171.719970703125, + "x1": 557.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 149.760009765625, + "x1": 557.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 128.1600341796875, + "x1": 557.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 508.32000732421875, + "y0": 297.7200012207031, + "x1": 534.9599609375, + "y1": 340.55999755859375, + "width": 26.63995361328125, + "height": 42.839996337890625 + }, { + "x0": 508.32000732421875, + "y0": 278.6400146484375, + "x1": 534.9599609375, + "y1": 297.0, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 247.32000732421875, + "x1": 534.9599609375, + "y1": 268.20001220703125, + "width": 26.63995361328125, + "height": 20.8800048828125 + }, { + "x0": 508.32000732421875, + "y0": 225.3599853515625, + "x1": 534.9599609375, + "y1": 246.5999755859375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 203.4000244140625, + "x1": 534.9599609375, + "y1": 224.6400146484375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 171.719970703125, + "x1": 534.9599609375, + "y1": 192.9599609375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 149.760009765625, + "x1": 534.9599609375, + "y1": 171.0, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 128.1600341796875, + "x1": 534.9599609375, + "y1": 149.0400390625, + "width": 26.63995361328125, + "height": 20.8800048828125 + }, { + "x0": 485.6400146484375, + "y0": 297.7200012207031, + "x1": 507.6000061035156, + "y1": 340.55999755859375, + "width": 21.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 485.6400146484375, + "y0": 278.6400146484375, + "x1": 507.6000061035156, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 247.32000732421875, + "x1": 507.6000061035156, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 485.6400146484375, + "y0": 225.3599853515625, + "x1": 507.6000061035156, + "y1": 246.5999755859375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 203.4000244140625, + "x1": 507.6000061035156, + "y1": 224.6400146484375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 171.719970703125, + "x1": 507.6000061035156, + "y1": 192.9599609375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 149.760009765625, + "x1": 507.6000061035156, + "y1": 171.0, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 128.1600341796875, + "x1": 507.6000061035156, + "y1": 149.0400390625, + "width": 21.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 452.8800048828125, + "y0": 297.7200012207031, + "x1": 484.9200134277344, + "y1": 340.55999755859375, + "width": 32.040008544921875, + "height": 42.839996337890625 + }, { + "x0": 452.8800048828125, + "y0": 278.6400146484375, + "x1": 484.9200134277344, + "y1": 297.0, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 247.32000732421875, + "x1": 484.9200134277344, + "y1": 268.20001220703125, + "width": 32.040008544921875, + "height": 20.8800048828125 + }, { + "x0": 452.8800048828125, + "y0": 225.3599853515625, + "x1": 484.9200134277344, + "y1": 246.5999755859375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 203.4000244140625, + "x1": 484.9200134277344, + "y1": 224.6400146484375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 171.719970703125, + "x1": 484.9200134277344, + "y1": 192.9599609375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 149.760009765625, + "x1": 484.9200134277344, + "y1": 171.0, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 128.1600341796875, + "x1": 484.9200134277344, + "y1": 149.0400390625, + "width": 32.040008544921875, + "height": 20.8800048828125 + }, { + "x0": 420.8399963378906, + "y0": 297.7200012207031, + "x1": 452.1600036621094, + "y1": 352.79998779296875, + "width": 31.32000732421875, + "height": 55.079986572265625 + }, { + "x0": 420.8399963378906, + "y0": 278.6400146484375, + "x1": 452.1600036621094, + "y1": 297.0, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 247.32000732421875, + "x1": 452.1600036621094, + "y1": 268.20001220703125, + "width": 31.32000732421875, + "height": 20.8800048828125 + }, { + "x0": 420.8399963378906, + "y0": 225.3599853515625, + "x1": 452.1600036621094, + "y1": 246.5999755859375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 203.4000244140625, + "x1": 452.1600036621094, + "y1": 224.6400146484375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 171.719970703125, + "x1": 452.1600036621094, + "y1": 192.9599609375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 149.760009765625, + "x1": 452.1600036621094, + "y1": 171.0, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 128.1600341796875, + "x1": 452.1600036621094, + "y1": 149.0400390625, + "width": 31.32000732421875, + "height": 20.8800048828125 + }, { + "x0": 387.0, + "y0": 297.7200012207031, + "x1": 420.1199951171875, + "y1": 352.79998779296875, + "width": 33.1199951171875, + "height": 55.079986572265625 + }, { + "x0": 387.0, + "y0": 278.6400146484375, + "x1": 420.1199951171875, + "y1": 297.0, + "width": 33.1199951171875, + "height": 18.3599853515625 + }, { + "x0": 387.0, + "y0": 203.4000244140625, + "x1": 420.1199951171875, + "y1": 268.20001220703125, + "width": 33.1199951171875, + "height": 64.79998779296875 + }, { + "x0": 387.0, + "y0": 128.1600341796875, + "x1": 420.1199951171875, + "y1": 192.9599609375, + "width": 33.1199951171875, + "height": 64.7999267578125 + }, { + "x0": 67.32000732421875, + "y0": 372.96002197265625, + "x1": 415.79998779296875, + "y1": 492.1199951171875, + "width": 348.47998046875, + "height": 119.15997314453125 + }, { + "x0": 346.67999267578125, + "y0": 297.7200012207031, + "x1": 386.2799987792969, + "y1": 352.79998779296875, + "width": 39.600006103515625, + "height": 55.079986572265625 + }, { + "x0": 346.67999267578125, + "y0": 278.6400146484375, + "x1": 386.2799987792969, + "y1": 297.0, + "width": 39.600006103515625, + "height": 18.3599853515625 + }, { + "x0": 346.67999267578125, + "y0": 203.4000244140625, + "x1": 386.2799987792969, + "y1": 268.20001220703125, + "width": 39.600006103515625, + "height": 64.79998779296875 + }, { + "x0": 346.67999267578125, + "y0": 128.1600341796875, + "x1": 386.2799987792969, + "y1": 192.9599609375, + "width": 39.600006103515625, + "height": 64.7999267578125 + }, { + "x0": 324.0, + "y0": 297.7200012207031, + "x1": 345.9599914550781, + "y1": 352.79998779296875, + "width": 21.959991455078125, + "height": 55.079986572265625 + }, { + "x0": 324.0, + "y0": 278.6400146484375, + "x1": 345.9599914550781, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 324.0, + "y0": 203.4000244140625, + "x1": 345.9599914550781, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 64.79998779296875 + }, { + "x0": 324.0, + "y0": 128.1600341796875, + "x1": 345.9599914550781, + "y1": 192.9599609375, + "width": 21.959991455078125, + "height": 64.7999267578125 + }, { + "x0": 256.67999267578125, + "y0": 297.7200012207031, + "x1": 323.2799987792969, + "y1": 352.79998779296875, + "width": 66.60000610351562, + "height": 55.079986572265625 + }, { + "x0": 292.67999267578125, + "y0": 278.6400146484375, + "x1": 323.2799987792969, + "y1": 297.0, + "width": 30.600006103515625, + "height": 18.3599853515625 + }, { + "x0": 292.67999267578125, + "y0": 203.4000244140625, + "x1": 323.2799987792969, + "y1": 268.20001220703125, + "width": 30.600006103515625, + "height": 64.79998779296875 + }, { + "x0": 292.67999267578125, + "y0": 128.1600341796875, + "x1": 323.2799987792969, + "y1": 192.9599609375, + "width": 30.600006103515625, + "height": 64.7999267578125 + }, { + "x0": 256.67999267578125, + "y0": 278.6400146484375, + "x1": 291.9599914550781, + "y1": 297.0, + "width": 35.279998779296875, + "height": 18.3599853515625 + }, { + "x0": 256.67999267578125, + "y0": 203.4000244140625, + "x1": 291.9599914550781, + "y1": 268.20001220703125, + "width": 35.279998779296875, + "height": 64.79998779296875 + }, { + "x0": 256.67999267578125, + "y0": 128.1600341796875, + "x1": 291.9599914550781, + "y1": 192.9599609375, + "width": 35.279998779296875, + "height": 64.7999267578125 + }, { + "x0": 211.67999267578125, + "y0": 297.7200012207031, + "x1": 255.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 211.67999267578125, + "y0": 278.6400146484375, + "x1": 255.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 211.67999267578125, + "y0": 128.1600341796875, + "x1": 255.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 149.760009765625 + }, { + "x0": 157.67999267578125, + "y0": 297.7200012207031, + "x1": 210.96002197265625, + "y1": 352.79998779296875, + "width": 53.280029296875, + "height": 55.079986572265625 + }, { + "x0": 157.67999267578125, + "y0": 278.6400146484375, + "x1": 210.96002197265625, + "y1": 297.0, + "width": 53.280029296875, + "height": 18.3599853515625 + }, { + "x0": 157.67999267578125, + "y0": 128.1600341796875, + "x1": 210.96002197265625, + "y1": 277.9200439453125, + "width": 53.280029296875, + "height": 149.760009765625 + }, { + "x0": 112.67999267578125, + "y0": 297.7200012207031, + "x1": 156.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 112.67999267578125, + "y0": 278.6400146484375, + "x1": 156.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 112.67999267578125, + "y0": 128.1600341796875, + "x1": 156.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 149.760009765625 + }, { + "x0": 67.32000732421875, + "y0": 297.7200012207031, + "x1": 111.96002197265625, + "y1": 352.79998779296875, + "width": 44.6400146484375, + "height": 55.079986572265625 + }, { + "x0": 67.32000732421875, + "y0": 278.6400146484375, + "x1": 111.96002197265625, + "y1": 297.0, + "width": 44.6400146484375, + "height": 18.3599853515625 + }, { + "x0": 67.32000732421875, + "y0": 128.1600341796875, + "x1": 111.96002197265625, + "y1": 277.9200439453125, + "width": 44.6400146484375, + "height": 149.760009765625 + } + ] + }, { + "pageInfo": { + "number": 414, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 416.5199890136719, + "y0": 372.96002197265625, + "x1": 728.280029296875, + "y1": 492.1199951171875, + "width": 311.7600402832031, + "height": 119.15997314453125 + }, { + "x0": 670.6799926757812, + "y0": 297.7200012207031, + "x1": 728.280029296875, + "y1": 352.79998779296875, + "width": 57.60003662109375, + "height": 55.079986572265625 + }, { + "x0": 670.6799926757812, + "y0": 278.6400146484375, + "x1": 728.280029296875, + "y1": 297.0, + "width": 57.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 670.6799926757812, + "y0": 128.1600341796875, + "x1": 728.280029296875, + "y1": 277.9200439453125, + "width": 57.60003662109375, + "height": 149.760009765625 + }, { + "x0": 67.32000732421875, + "y0": 90.719970703125, + "x1": 728.280029296875, + "y1": 127.44000244140625, + "width": 660.9600219726562, + "height": 36.72003173828125 + }, { + "x0": 648.0, + "y0": 297.7200012207031, + "x1": 669.9600219726562, + "y1": 352.79998779296875, + "width": 21.96002197265625, + "height": 55.079986572265625 + }, { + "x0": 648.0, + "y0": 278.6400146484375, + "x1": 669.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 247.32000732421875, + "x1": 669.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 648.0, + "y0": 225.3599853515625, + "x1": 669.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 203.4000244140625, + "x1": 669.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 171.719970703125, + "x1": 669.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 149.760009765625, + "x1": 669.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 648.0, + "y0": 128.1600341796875, + "x1": 669.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 625.6799926757812, + "y0": 297.7200012207031, + "x1": 647.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 625.6799926757812, + "y0": 278.6400146484375, + "x1": 647.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 247.32000732421875, + "x1": 647.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 625.6799926757812, + "y0": 225.3599853515625, + "x1": 647.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 203.4000244140625, + "x1": 647.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 171.719970703125, + "x1": 647.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 149.760009765625, + "x1": 647.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 625.6799926757812, + "y0": 128.1600341796875, + "x1": 647.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 603.0, + "y0": 297.7200012207031, + "x1": 624.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 603.0, + "y0": 278.6400146484375, + "x1": 624.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 247.32000732421875, + "x1": 624.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 603.0, + "y0": 225.3599853515625, + "x1": 624.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 203.4000244140625, + "x1": 624.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 171.719970703125, + "x1": 624.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 149.760009765625, + "x1": 624.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 603.0, + "y0": 128.1600341796875, + "x1": 624.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 580.6799926757812, + "y0": 297.7200012207031, + "x1": 602.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 580.6799926757812, + "y0": 278.6400146484375, + "x1": 602.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 247.32000732421875, + "x1": 602.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 580.6799926757812, + "y0": 225.3599853515625, + "x1": 602.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 203.4000244140625, + "x1": 602.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 171.719970703125, + "x1": 602.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 149.760009765625, + "x1": 602.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 580.6799926757812, + "y0": 128.1600341796875, + "x1": 602.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 558.0, + "y0": 297.7200012207031, + "x1": 579.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 558.0, + "y0": 278.6400146484375, + "x1": 579.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 247.32000732421875, + "x1": 579.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 558.0, + "y0": 225.3599853515625, + "x1": 579.9600219726562, + "y1": 246.5999755859375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 203.4000244140625, + "x1": 579.9600219726562, + "y1": 224.6400146484375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 171.719970703125, + "x1": 579.9600219726562, + "y1": 192.9599609375, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 149.760009765625, + "x1": 579.9600219726562, + "y1": 171.0, + "width": 21.96002197265625, + "height": 21.239990234375 + }, { + "x0": 558.0, + "y0": 128.1600341796875, + "x1": 579.9600219726562, + "y1": 149.0400390625, + "width": 21.96002197265625, + "height": 20.8800048828125 + }, { + "x0": 535.6799926757812, + "y0": 297.7200012207031, + "x1": 557.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 535.6799926757812, + "y0": 278.6400146484375, + "x1": 557.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 247.32000732421875, + "x1": 557.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 535.6799926757812, + "y0": 225.3599853515625, + "x1": 557.280029296875, + "y1": 246.5999755859375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 203.4000244140625, + "x1": 557.280029296875, + "y1": 224.6400146484375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 171.719970703125, + "x1": 557.280029296875, + "y1": 192.9599609375, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 149.760009765625, + "x1": 557.280029296875, + "y1": 171.0, + "width": 21.60003662109375, + "height": 21.239990234375 + }, { + "x0": 535.6799926757812, + "y0": 128.1600341796875, + "x1": 557.280029296875, + "y1": 149.0400390625, + "width": 21.60003662109375, + "height": 20.8800048828125 + }, { + "x0": 508.32000732421875, + "y0": 297.7200012207031, + "x1": 534.9599609375, + "y1": 340.55999755859375, + "width": 26.63995361328125, + "height": 42.839996337890625 + }, { + "x0": 508.32000732421875, + "y0": 278.6400146484375, + "x1": 534.9599609375, + "y1": 297.0, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 247.32000732421875, + "x1": 534.9599609375, + "y1": 268.20001220703125, + "width": 26.63995361328125, + "height": 20.8800048828125 + }, { + "x0": 508.32000732421875, + "y0": 225.3599853515625, + "x1": 534.9599609375, + "y1": 246.5999755859375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 203.4000244140625, + "x1": 534.9599609375, + "y1": 224.6400146484375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 171.719970703125, + "x1": 534.9599609375, + "y1": 192.9599609375, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 149.760009765625, + "x1": 534.9599609375, + "y1": 171.0, + "width": 26.63995361328125, + "height": 21.239990234375 + }, { + "x0": 508.32000732421875, + "y0": 128.1600341796875, + "x1": 534.9599609375, + "y1": 149.0400390625, + "width": 26.63995361328125, + "height": 20.8800048828125 + }, { + "x0": 485.6400146484375, + "y0": 297.7200012207031, + "x1": 507.6000061035156, + "y1": 340.55999755859375, + "width": 21.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 485.6400146484375, + "y0": 278.6400146484375, + "x1": 507.6000061035156, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 247.32000732421875, + "x1": 507.6000061035156, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 485.6400146484375, + "y0": 225.3599853515625, + "x1": 507.6000061035156, + "y1": 246.5999755859375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 203.4000244140625, + "x1": 507.6000061035156, + "y1": 224.6400146484375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 171.719970703125, + "x1": 507.6000061035156, + "y1": 192.9599609375, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 149.760009765625, + "x1": 507.6000061035156, + "y1": 171.0, + "width": 21.959991455078125, + "height": 21.239990234375 + }, { + "x0": 485.6400146484375, + "y0": 128.1600341796875, + "x1": 507.6000061035156, + "y1": 149.0400390625, + "width": 21.959991455078125, + "height": 20.8800048828125 + }, { + "x0": 452.8800048828125, + "y0": 297.7200012207031, + "x1": 484.9200134277344, + "y1": 340.55999755859375, + "width": 32.040008544921875, + "height": 42.839996337890625 + }, { + "x0": 452.8800048828125, + "y0": 278.6400146484375, + "x1": 484.9200134277344, + "y1": 297.0, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 247.32000732421875, + "x1": 484.9200134277344, + "y1": 268.20001220703125, + "width": 32.040008544921875, + "height": 20.8800048828125 + }, { + "x0": 452.8800048828125, + "y0": 225.3599853515625, + "x1": 484.9200134277344, + "y1": 246.5999755859375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 203.4000244140625, + "x1": 484.9200134277344, + "y1": 224.6400146484375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 171.719970703125, + "x1": 484.9200134277344, + "y1": 192.9599609375, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 149.760009765625, + "x1": 484.9200134277344, + "y1": 171.0, + "width": 32.040008544921875, + "height": 21.239990234375 + }, { + "x0": 452.8800048828125, + "y0": 128.1600341796875, + "x1": 484.9200134277344, + "y1": 149.0400390625, + "width": 32.040008544921875, + "height": 20.8800048828125 + }, { + "x0": 420.8399963378906, + "y0": 297.7200012207031, + "x1": 452.1600036621094, + "y1": 352.79998779296875, + "width": 31.32000732421875, + "height": 55.079986572265625 + }, { + "x0": 420.8399963378906, + "y0": 278.6400146484375, + "x1": 452.1600036621094, + "y1": 297.0, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 247.32000732421875, + "x1": 452.1600036621094, + "y1": 268.20001220703125, + "width": 31.32000732421875, + "height": 20.8800048828125 + }, { + "x0": 420.8399963378906, + "y0": 225.3599853515625, + "x1": 452.1600036621094, + "y1": 246.5999755859375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 203.4000244140625, + "x1": 452.1600036621094, + "y1": 224.6400146484375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 171.719970703125, + "x1": 452.1600036621094, + "y1": 192.9599609375, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 149.760009765625, + "x1": 452.1600036621094, + "y1": 171.0, + "width": 31.32000732421875, + "height": 21.239990234375 + }, { + "x0": 420.8399963378906, + "y0": 128.1600341796875, + "x1": 452.1600036621094, + "y1": 149.0400390625, + "width": 31.32000732421875, + "height": 20.8800048828125 + }, { + "x0": 382.67999267578125, + "y0": 297.7200012207031, + "x1": 420.1199951171875, + "y1": 352.79998779296875, + "width": 37.44000244140625, + "height": 55.079986572265625 + }, { + "x0": 382.67999267578125, + "y0": 278.6400146484375, + "x1": 420.1199951171875, + "y1": 297.0, + "width": 37.44000244140625, + "height": 18.3599853515625 + }, { + "x0": 382.67999267578125, + "y0": 203.4000244140625, + "x1": 420.1199951171875, + "y1": 268.20001220703125, + "width": 37.44000244140625, + "height": 64.79998779296875 + }, { + "x0": 382.67999267578125, + "y0": 128.1600341796875, + "x1": 420.1199951171875, + "y1": 192.9599609375, + "width": 37.44000244140625, + "height": 64.7999267578125 + }, { + "x0": 67.32000732421875, + "y0": 372.96002197265625, + "x1": 415.79998779296875, + "y1": 492.1199951171875, + "width": 348.47998046875, + "height": 119.15997314453125 + }, { + "x0": 346.67999267578125, + "y0": 297.7200012207031, + "x1": 381.9599914550781, + "y1": 352.79998779296875, + "width": 35.279998779296875, + "height": 55.079986572265625 + }, { + "x0": 346.67999267578125, + "y0": 278.6400146484375, + "x1": 381.9599914550781, + "y1": 297.0, + "width": 35.279998779296875, + "height": 18.3599853515625 + }, { + "x0": 346.67999267578125, + "y0": 203.4000244140625, + "x1": 381.9599914550781, + "y1": 268.20001220703125, + "width": 35.279998779296875, + "height": 64.79998779296875 + }, { + "x0": 346.67999267578125, + "y0": 128.1600341796875, + "x1": 381.9599914550781, + "y1": 192.9599609375, + "width": 35.279998779296875, + "height": 64.7999267578125 + }, { + "x0": 324.0, + "y0": 297.7200012207031, + "x1": 345.9599914550781, + "y1": 352.79998779296875, + "width": 21.959991455078125, + "height": 55.079986572265625 + }, { + "x0": 324.0, + "y0": 278.6400146484375, + "x1": 345.9599914550781, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 324.0, + "y0": 203.4000244140625, + "x1": 345.9599914550781, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 64.79998779296875 + }, { + "x0": 324.0, + "y0": 128.1600341796875, + "x1": 345.9599914550781, + "y1": 192.9599609375, + "width": 21.959991455078125, + "height": 64.7999267578125 + }, { + "x0": 256.67999267578125, + "y0": 297.7200012207031, + "x1": 323.2799987792969, + "y1": 352.79998779296875, + "width": 66.60000610351562, + "height": 55.079986572265625 + }, { + "x0": 292.67999267578125, + "y0": 278.6400146484375, + "x1": 323.2799987792969, + "y1": 297.0, + "width": 30.600006103515625, + "height": 18.3599853515625 + }, { + "x0": 292.67999267578125, + "y0": 203.4000244140625, + "x1": 323.2799987792969, + "y1": 268.20001220703125, + "width": 30.600006103515625, + "height": 64.79998779296875 + }, { + "x0": 292.67999267578125, + "y0": 128.1600341796875, + "x1": 323.2799987792969, + "y1": 192.9599609375, + "width": 30.600006103515625, + "height": 64.7999267578125 + }, { + "x0": 256.67999267578125, + "y0": 278.6400146484375, + "x1": 291.9599914550781, + "y1": 297.0, + "width": 35.279998779296875, + "height": 18.3599853515625 + }, { + "x0": 256.67999267578125, + "y0": 203.4000244140625, + "x1": 291.9599914550781, + "y1": 268.20001220703125, + "width": 35.279998779296875, + "height": 64.79998779296875 + }, { + "x0": 256.67999267578125, + "y0": 128.1600341796875, + "x1": 291.9599914550781, + "y1": 192.9599609375, + "width": 35.279998779296875, + "height": 64.7999267578125 + }, { + "x0": 211.67999267578125, + "y0": 297.7200012207031, + "x1": 255.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 211.67999267578125, + "y0": 278.6400146484375, + "x1": 255.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 211.67999267578125, + "y0": 128.1600341796875, + "x1": 255.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 149.760009765625 + }, { + "x0": 157.67999267578125, + "y0": 297.7200012207031, + "x1": 210.96002197265625, + "y1": 352.79998779296875, + "width": 53.280029296875, + "height": 55.079986572265625 + }, { + "x0": 157.67999267578125, + "y0": 278.6400146484375, + "x1": 210.96002197265625, + "y1": 297.0, + "width": 53.280029296875, + "height": 18.3599853515625 + }, { + "x0": 157.67999267578125, + "y0": 128.1600341796875, + "x1": 210.96002197265625, + "y1": 277.9200439453125, + "width": 53.280029296875, + "height": 149.760009765625 + }, { + "x0": 112.67999267578125, + "y0": 297.7200012207031, + "x1": 156.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 112.67999267578125, + "y0": 278.6400146484375, + "x1": 156.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 112.67999267578125, + "y0": 128.1600341796875, + "x1": 156.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 149.760009765625 + }, { + "x0": 67.32000732421875, + "y0": 297.7200012207031, + "x1": 111.96002197265625, + "y1": 352.79998779296875, + "width": 44.6400146484375, + "height": 55.079986572265625 + }, { + "x0": 67.32000732421875, + "y0": 278.6400146484375, + "x1": 111.96002197265625, + "y1": 297.0, + "width": 44.6400146484375, + "height": 18.3599853515625 + }, { + "x0": 67.32000732421875, + "y0": 128.1600341796875, + "x1": 111.96002197265625, + "y1": 277.9200439453125, + "width": 44.6400146484375, + "height": 149.760009765625 + } + ] + }, { + "pageInfo": { + "number": 415, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 416.5199890136719, + "y0": 370.79998779296875, + "x1": 728.280029296875, + "y1": 492.1199951171875, + "width": 311.7600402832031, + "height": 121.32000732421875 + }, { + "x0": 670.6799926757812, + "y0": 295.55999755859375, + "x1": 728.280029296875, + "y1": 350.6400146484375, + "width": 57.60003662109375, + "height": 55.08001708984375 + }, { + "x0": 670.6799926757812, + "y0": 276.8399658203125, + "x1": 728.280029296875, + "y1": 294.8399963378906, + "width": 57.60003662109375, + "height": 18.000030517578125 + }, { + "x0": 670.6799926757812, + "y0": 128.8800048828125, + "x1": 728.280029296875, + "y1": 276.1199951171875, + "width": 57.60003662109375, + "height": 147.239990234375 + }, { + "x0": 67.32000732421875, + "y0": 91.79998779296875, + "x1": 728.280029296875, + "y1": 128.1600341796875, + "width": 660.9600219726562, + "height": 36.36004638671875 + }, { + "x0": 648.0, + "y0": 295.55999755859375, + "x1": 669.9600219726562, + "y1": 350.6400146484375, + "width": 21.96002197265625, + "height": 55.08001708984375 + }, { + "x0": 648.0, + "y0": 276.8399658203125, + "x1": 669.9600219726562, + "y1": 294.8399963378906, + "width": 21.96002197265625, + "height": 18.000030517578125 + }, { + "x0": 648.0, + "y0": 248.0400390625, + "x1": 669.9600219726562, + "y1": 266.4000244140625, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 229.32000732421875, + "x1": 669.9600219726562, + "y1": 247.32000732421875, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 648.0, + "y0": 210.239990234375, + "x1": 669.9600219726562, + "y1": 228.5999755859375, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 181.79998779296875, + "x1": 669.9600219726562, + "y1": 199.79998779296875, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 648.0, + "y0": 156.239990234375, + "x1": 669.9600219726562, + "y1": 181.0799560546875, + "width": 21.96002197265625, + "height": 24.8399658203125 + }, { + "x0": 648.0, + "y0": 128.8800048828125, + "x1": 669.9600219726562, + "y1": 155.52001953125, + "width": 21.96002197265625, + "height": 26.6400146484375 + }, { + "x0": 625.6799926757812, + "y0": 295.55999755859375, + "x1": 647.280029296875, + "y1": 338.3999938964844, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 625.6799926757812, + "y0": 276.8399658203125, + "x1": 647.280029296875, + "y1": 294.8399963378906, + "width": 21.60003662109375, + "height": 18.000030517578125 + }, { + "x0": 625.6799926757812, + "y0": 248.0400390625, + "x1": 647.280029296875, + "y1": 266.4000244140625, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 229.32000732421875, + "x1": 647.280029296875, + "y1": 247.32000732421875, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 625.6799926757812, + "y0": 210.239990234375, + "x1": 647.280029296875, + "y1": 228.5999755859375, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 181.79998779296875, + "x1": 647.280029296875, + "y1": 199.79998779296875, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 625.6799926757812, + "y0": 156.239990234375, + "x1": 647.280029296875, + "y1": 181.0799560546875, + "width": 21.60003662109375, + "height": 24.8399658203125 + }, { + "x0": 625.6799926757812, + "y0": 128.8800048828125, + "x1": 647.280029296875, + "y1": 155.52001953125, + "width": 21.60003662109375, + "height": 26.6400146484375 + }, { + "x0": 603.0, + "y0": 295.55999755859375, + "x1": 624.9600219726562, + "y1": 338.3999938964844, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 603.0, + "y0": 276.8399658203125, + "x1": 624.9600219726562, + "y1": 294.8399963378906, + "width": 21.96002197265625, + "height": 18.000030517578125 + }, { + "x0": 603.0, + "y0": 248.0400390625, + "x1": 624.9600219726562, + "y1": 266.4000244140625, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 229.32000732421875, + "x1": 624.9600219726562, + "y1": 247.32000732421875, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 603.0, + "y0": 210.239990234375, + "x1": 624.9600219726562, + "y1": 228.5999755859375, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 181.79998779296875, + "x1": 624.9600219726562, + "y1": 199.79998779296875, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 603.0, + "y0": 156.239990234375, + "x1": 624.9600219726562, + "y1": 181.0799560546875, + "width": 21.96002197265625, + "height": 24.8399658203125 + }, { + "x0": 603.0, + "y0": 128.8800048828125, + "x1": 624.9600219726562, + "y1": 155.52001953125, + "width": 21.96002197265625, + "height": 26.6400146484375 + }, { + "x0": 580.6799926757812, + "y0": 295.55999755859375, + "x1": 602.280029296875, + "y1": 338.3999938964844, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 580.6799926757812, + "y0": 276.8399658203125, + "x1": 602.280029296875, + "y1": 294.8399963378906, + "width": 21.60003662109375, + "height": 18.000030517578125 + }, { + "x0": 580.6799926757812, + "y0": 248.0400390625, + "x1": 602.280029296875, + "y1": 266.4000244140625, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 229.32000732421875, + "x1": 602.280029296875, + "y1": 247.32000732421875, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 580.6799926757812, + "y0": 210.239990234375, + "x1": 602.280029296875, + "y1": 228.5999755859375, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 181.79998779296875, + "x1": 602.280029296875, + "y1": 199.79998779296875, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 580.6799926757812, + "y0": 156.239990234375, + "x1": 602.280029296875, + "y1": 181.0799560546875, + "width": 21.60003662109375, + "height": 24.8399658203125 + }, { + "x0": 580.6799926757812, + "y0": 128.8800048828125, + "x1": 602.280029296875, + "y1": 155.52001953125, + "width": 21.60003662109375, + "height": 26.6400146484375 + }, { + "x0": 558.0, + "y0": 295.55999755859375, + "x1": 579.9600219726562, + "y1": 338.3999938964844, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 558.0, + "y0": 276.8399658203125, + "x1": 579.9600219726562, + "y1": 294.8399963378906, + "width": 21.96002197265625, + "height": 18.000030517578125 + }, { + "x0": 558.0, + "y0": 248.0400390625, + "x1": 579.9600219726562, + "y1": 266.4000244140625, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 229.32000732421875, + "x1": 579.9600219726562, + "y1": 247.32000732421875, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 558.0, + "y0": 210.239990234375, + "x1": 579.9600219726562, + "y1": 228.5999755859375, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 181.79998779296875, + "x1": 579.9600219726562, + "y1": 199.79998779296875, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 558.0, + "y0": 156.239990234375, + "x1": 579.9600219726562, + "y1": 181.0799560546875, + "width": 21.96002197265625, + "height": 24.8399658203125 + }, { + "x0": 558.0, + "y0": 128.8800048828125, + "x1": 579.9600219726562, + "y1": 155.52001953125, + "width": 21.96002197265625, + "height": 26.6400146484375 + }, { + "x0": 535.6799926757812, + "y0": 295.55999755859375, + "x1": 557.280029296875, + "y1": 338.3999938964844, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 535.6799926757812, + "y0": 276.8399658203125, + "x1": 557.280029296875, + "y1": 294.8399963378906, + "width": 21.60003662109375, + "height": 18.000030517578125 + }, { + "x0": 535.6799926757812, + "y0": 248.0400390625, + "x1": 557.280029296875, + "y1": 266.4000244140625, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 229.32000732421875, + "x1": 557.280029296875, + "y1": 247.32000732421875, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 535.6799926757812, + "y0": 210.239990234375, + "x1": 557.280029296875, + "y1": 228.5999755859375, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 181.79998779296875, + "x1": 557.280029296875, + "y1": 199.79998779296875, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 535.6799926757812, + "y0": 156.239990234375, + "x1": 557.280029296875, + "y1": 181.0799560546875, + "width": 21.60003662109375, + "height": 24.8399658203125 + }, { + "x0": 535.6799926757812, + "y0": 128.8800048828125, + "x1": 557.280029296875, + "y1": 155.52001953125, + "width": 21.60003662109375, + "height": 26.6400146484375 + }, { + "x0": 508.32000732421875, + "y0": 295.55999755859375, + "x1": 534.9599609375, + "y1": 338.3999938964844, + "width": 26.63995361328125, + "height": 42.839996337890625 + }, { + "x0": 508.32000732421875, + "y0": 276.8399658203125, + "x1": 534.9599609375, + "y1": 294.8399963378906, + "width": 26.63995361328125, + "height": 18.000030517578125 + }, { + "x0": 508.32000732421875, + "y0": 248.0400390625, + "x1": 534.9599609375, + "y1": 266.4000244140625, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 229.32000732421875, + "x1": 534.9599609375, + "y1": 247.32000732421875, + "width": 26.63995361328125, + "height": 18.0 + }, { + "x0": 508.32000732421875, + "y0": 210.239990234375, + "x1": 534.9599609375, + "y1": 228.5999755859375, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 181.79998779296875, + "x1": 534.9599609375, + "y1": 199.79998779296875, + "width": 26.63995361328125, + "height": 18.0 + }, { + "x0": 508.32000732421875, + "y0": 156.239990234375, + "x1": 534.9599609375, + "y1": 181.0799560546875, + "width": 26.63995361328125, + "height": 24.8399658203125 + }, { + "x0": 508.32000732421875, + "y0": 128.8800048828125, + "x1": 534.9599609375, + "y1": 155.52001953125, + "width": 26.63995361328125, + "height": 26.6400146484375 + }, { + "x0": 485.6400146484375, + "y0": 295.55999755859375, + "x1": 507.6000061035156, + "y1": 338.3999938964844, + "width": 21.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 485.6400146484375, + "y0": 276.8399658203125, + "x1": 507.6000061035156, + "y1": 294.8399963378906, + "width": 21.959991455078125, + "height": 18.000030517578125 + }, { + "x0": 485.6400146484375, + "y0": 248.0400390625, + "x1": 507.6000061035156, + "y1": 266.4000244140625, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 229.32000732421875, + "x1": 507.6000061035156, + "y1": 247.32000732421875, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 485.6400146484375, + "y0": 210.239990234375, + "x1": 507.6000061035156, + "y1": 228.5999755859375, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 181.79998779296875, + "x1": 507.6000061035156, + "y1": 199.79998779296875, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 485.6400146484375, + "y0": 156.239990234375, + "x1": 507.6000061035156, + "y1": 181.0799560546875, + "width": 21.959991455078125, + "height": 24.8399658203125 + }, { + "x0": 485.6400146484375, + "y0": 128.8800048828125, + "x1": 507.6000061035156, + "y1": 155.52001953125, + "width": 21.959991455078125, + "height": 26.6400146484375 + }, { + "x0": 452.8800048828125, + "y0": 295.55999755859375, + "x1": 484.9200134277344, + "y1": 338.3999938964844, + "width": 32.040008544921875, + "height": 42.839996337890625 + }, { + "x0": 452.8800048828125, + "y0": 276.8399658203125, + "x1": 484.9200134277344, + "y1": 294.8399963378906, + "width": 32.040008544921875, + "height": 18.000030517578125 + }, { + "x0": 452.8800048828125, + "y0": 248.0400390625, + "x1": 484.9200134277344, + "y1": 266.4000244140625, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 229.32000732421875, + "x1": 484.9200134277344, + "y1": 247.32000732421875, + "width": 32.040008544921875, + "height": 18.0 + }, { + "x0": 452.8800048828125, + "y0": 210.239990234375, + "x1": 484.9200134277344, + "y1": 228.5999755859375, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 181.79998779296875, + "x1": 484.9200134277344, + "y1": 199.79998779296875, + "width": 32.040008544921875, + "height": 18.0 + }, { + "x0": 452.8800048828125, + "y0": 156.239990234375, + "x1": 484.9200134277344, + "y1": 181.0799560546875, + "width": 32.040008544921875, + "height": 24.8399658203125 + }, { + "x0": 452.8800048828125, + "y0": 128.8800048828125, + "x1": 484.9200134277344, + "y1": 155.52001953125, + "width": 32.040008544921875, + "height": 26.6400146484375 + }, { + "x0": 420.8399963378906, + "y0": 295.55999755859375, + "x1": 452.1600036621094, + "y1": 350.6400146484375, + "width": 31.32000732421875, + "height": 55.08001708984375 + }, { + "x0": 420.8399963378906, + "y0": 276.8399658203125, + "x1": 452.1600036621094, + "y1": 294.8399963378906, + "width": 31.32000732421875, + "height": 18.000030517578125 + }, { + "x0": 420.8399963378906, + "y0": 248.0400390625, + "x1": 452.1600036621094, + "y1": 266.4000244140625, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 229.32000732421875, + "x1": 452.1600036621094, + "y1": 247.32000732421875, + "width": 31.32000732421875, + "height": 18.0 + }, { + "x0": 420.8399963378906, + "y0": 210.239990234375, + "x1": 452.1600036621094, + "y1": 228.5999755859375, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 181.79998779296875, + "x1": 452.1600036621094, + "y1": 199.79998779296875, + "width": 31.32000732421875, + "height": 18.0 + }, { + "x0": 420.8399963378906, + "y0": 156.239990234375, + "x1": 452.1600036621094, + "y1": 181.0799560546875, + "width": 31.32000732421875, + "height": 24.8399658203125 + }, { + "x0": 420.8399963378906, + "y0": 128.8800048828125, + "x1": 452.1600036621094, + "y1": 155.52001953125, + "width": 31.32000732421875, + "height": 26.6400146484375 + }, { + "x0": 387.0, + "y0": 295.55999755859375, + "x1": 420.1199951171875, + "y1": 350.6400146484375, + "width": 33.1199951171875, + "height": 55.08001708984375 + }, { + "x0": 387.0, + "y0": 276.8399658203125, + "x1": 420.1199951171875, + "y1": 294.8399963378906, + "width": 33.1199951171875, + "height": 18.000030517578125 + }, { + "x0": 387.0, + "y0": 210.239990234375, + "x1": 420.1199951171875, + "y1": 266.4000244140625, + "width": 33.1199951171875, + "height": 56.1600341796875 + }, { + "x0": 387.0, + "y0": 128.8800048828125, + "x1": 420.1199951171875, + "y1": 199.79998779296875, + "width": 33.1199951171875, + "height": 70.91998291015625 + }, { + "x0": 67.32000732421875, + "y0": 370.79998779296875, + "x1": 415.79998779296875, + "y1": 492.1199951171875, + "width": 348.47998046875, + "height": 121.32000732421875 + }, { + "x0": 346.67999267578125, + "y0": 295.55999755859375, + "x1": 386.2799987792969, + "y1": 350.6400146484375, + "width": 39.600006103515625, + "height": 55.08001708984375 + }, { + "x0": 346.67999267578125, + "y0": 276.8399658203125, + "x1": 386.2799987792969, + "y1": 294.8399963378906, + "width": 39.600006103515625, + "height": 18.000030517578125 + }, { + "x0": 346.67999267578125, + "y0": 210.239990234375, + "x1": 386.2799987792969, + "y1": 266.4000244140625, + "width": 39.600006103515625, + "height": 56.1600341796875 + }, { + "x0": 346.67999267578125, + "y0": 128.8800048828125, + "x1": 386.2799987792969, + "y1": 199.79998779296875, + "width": 39.600006103515625, + "height": 70.91998291015625 + }, { + "x0": 324.0, + "y0": 295.55999755859375, + "x1": 345.9599914550781, + "y1": 350.6400146484375, + "width": 21.959991455078125, + "height": 55.08001708984375 + }, { + "x0": 324.0, + "y0": 276.8399658203125, + "x1": 345.9599914550781, + "y1": 294.8399963378906, + "width": 21.959991455078125, + "height": 18.000030517578125 + }, { + "x0": 324.0, + "y0": 210.239990234375, + "x1": 345.9599914550781, + "y1": 266.4000244140625, + "width": 21.959991455078125, + "height": 56.1600341796875 + }, { + "x0": 324.0, + "y0": 128.8800048828125, + "x1": 345.9599914550781, + "y1": 199.79998779296875, + "width": 21.959991455078125, + "height": 70.91998291015625 + }, { + "x0": 256.67999267578125, + "y0": 295.55999755859375, + "x1": 323.2799987792969, + "y1": 350.6400146484375, + "width": 66.60000610351562, + "height": 55.08001708984375 + }, { + "x0": 292.67999267578125, + "y0": 276.8399658203125, + "x1": 323.2799987792969, + "y1": 294.8399963378906, + "width": 30.600006103515625, + "height": 18.000030517578125 + }, { + "x0": 292.67999267578125, + "y0": 210.239990234375, + "x1": 323.2799987792969, + "y1": 266.4000244140625, + "width": 30.600006103515625, + "height": 56.1600341796875 + }, { + "x0": 292.67999267578125, + "y0": 128.8800048828125, + "x1": 323.2799987792969, + "y1": 199.79998779296875, + "width": 30.600006103515625, + "height": 70.91998291015625 + }, { + "x0": 256.67999267578125, + "y0": 276.8399658203125, + "x1": 291.9599914550781, + "y1": 294.8399963378906, + "width": 35.279998779296875, + "height": 18.000030517578125 + }, { + "x0": 256.67999267578125, + "y0": 210.239990234375, + "x1": 291.9599914550781, + "y1": 266.4000244140625, + "width": 35.279998779296875, + "height": 56.1600341796875 + }, { + "x0": 256.67999267578125, + "y0": 128.8800048828125, + "x1": 291.9599914550781, + "y1": 199.79998779296875, + "width": 35.279998779296875, + "height": 70.91998291015625 + }, { + "x0": 211.67999267578125, + "y0": 295.55999755859375, + "x1": 255.96002197265625, + "y1": 350.6400146484375, + "width": 44.280029296875, + "height": 55.08001708984375 + }, { + "x0": 211.67999267578125, + "y0": 276.8399658203125, + "x1": 255.96002197265625, + "y1": 294.8399963378906, + "width": 44.280029296875, + "height": 18.000030517578125 + }, { + "x0": 211.67999267578125, + "y0": 128.8800048828125, + "x1": 255.96002197265625, + "y1": 276.1199951171875, + "width": 44.280029296875, + "height": 147.239990234375 + }, { + "x0": 157.67999267578125, + "y0": 295.55999755859375, + "x1": 210.96002197265625, + "y1": 350.6400146484375, + "width": 53.280029296875, + "height": 55.08001708984375 + }, { + "x0": 157.67999267578125, + "y0": 276.8399658203125, + "x1": 210.96002197265625, + "y1": 294.8399963378906, + "width": 53.280029296875, + "height": 18.000030517578125 + }, { + "x0": 157.67999267578125, + "y0": 128.8800048828125, + "x1": 210.96002197265625, + "y1": 276.1199951171875, + "width": 53.280029296875, + "height": 147.239990234375 + }, { + "x0": 112.67999267578125, + "y0": 295.55999755859375, + "x1": 156.96002197265625, + "y1": 350.6400146484375, + "width": 44.280029296875, + "height": 55.08001708984375 + }, { + "x0": 112.67999267578125, + "y0": 276.8399658203125, + "x1": 156.96002197265625, + "y1": 294.8399963378906, + "width": 44.280029296875, + "height": 18.000030517578125 + }, { + "x0": 112.67999267578125, + "y0": 128.8800048828125, + "x1": 156.96002197265625, + "y1": 276.1199951171875, + "width": 44.280029296875, + "height": 147.239990234375 + }, { + "x0": 67.32000732421875, + "y0": 295.55999755859375, + "x1": 111.96002197265625, + "y1": 350.6400146484375, + "width": 44.6400146484375, + "height": 55.08001708984375 + }, { + "x0": 67.32000732421875, + "y0": 276.8399658203125, + "x1": 111.96002197265625, + "y1": 294.8399963378906, + "width": 44.6400146484375, + "height": 18.000030517578125 + }, { + "x0": 67.32000732421875, + "y0": 128.8800048828125, + "x1": 111.96002197265625, + "y1": 276.1199951171875, + "width": 44.6400146484375, + "height": 147.239990234375 + } + ] + }, { + "pageInfo": { + "number": 416, + "rotation": 270, + "width": 612.0, + "height": 792.0 + }, + "tableCells": [{ + "x0": 416.5199890136719, + "y0": 372.96002197265625, + "x1": 728.280029296875, + "y1": 492.1199951171875, + "width": 311.7600402832031, + "height": 119.15997314453125 + }, { + "x0": 670.6799926757812, + "y0": 297.7200012207031, + "x1": 728.280029296875, + "y1": 352.79998779296875, + "width": 57.60003662109375, + "height": 55.079986572265625 + }, { + "x0": 670.6799926757812, + "y0": 278.6400146484375, + "x1": 728.280029296875, + "y1": 297.0, + "width": 57.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 670.6799926757812, + "y0": 131.0400390625, + "x1": 728.280029296875, + "y1": 277.9200439453125, + "width": 57.60003662109375, + "height": 146.8800048828125 + }, { + "x0": 67.32000732421875, + "y0": 93.5999755859375, + "x1": 728.280029296875, + "y1": 130.32000732421875, + "width": 660.9600219726562, + "height": 36.72003173828125 + }, { + "x0": 648.0, + "y0": 297.7200012207031, + "x1": 669.9600219726562, + "y1": 352.79998779296875, + "width": 21.96002197265625, + "height": 55.079986572265625 + }, { + "x0": 648.0, + "y0": 278.6400146484375, + "x1": 669.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 250.20001220703125, + "x1": 669.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 648.0, + "y0": 231.1199951171875, + "x1": 669.9600219726562, + "y1": 249.47998046875, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 648.0, + "y0": 212.4000244140625, + "x1": 669.9600219726562, + "y1": 230.4000244140625, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 648.0, + "y0": 178.9200439453125, + "x1": 669.9600219726562, + "y1": 201.9599609375, + "width": 21.96002197265625, + "height": 23.0399169921875 + }, { + "x0": 648.0, + "y0": 155.52001953125, + "x1": 669.9600219726562, + "y1": 178.20001220703125, + "width": 21.96002197265625, + "height": 22.67999267578125 + }, { + "x0": 648.0, + "y0": 131.0400390625, + "x1": 669.9600219726562, + "y1": 154.79998779296875, + "width": 21.96002197265625, + "height": 23.75994873046875 + }, { + "x0": 625.6799926757812, + "y0": 297.7200012207031, + "x1": 647.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 625.6799926757812, + "y0": 278.6400146484375, + "x1": 647.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 250.20001220703125, + "x1": 647.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 625.6799926757812, + "y0": 231.1199951171875, + "x1": 647.280029296875, + "y1": 249.47998046875, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 625.6799926757812, + "y0": 212.4000244140625, + "x1": 647.280029296875, + "y1": 230.4000244140625, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 625.6799926757812, + "y0": 178.9200439453125, + "x1": 647.280029296875, + "y1": 201.9599609375, + "width": 21.60003662109375, + "height": 23.0399169921875 + }, { + "x0": 625.6799926757812, + "y0": 155.52001953125, + "x1": 647.280029296875, + "y1": 178.20001220703125, + "width": 21.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 625.6799926757812, + "y0": 131.0400390625, + "x1": 647.280029296875, + "y1": 154.79998779296875, + "width": 21.60003662109375, + "height": 23.75994873046875 + }, { + "x0": 603.0, + "y0": 297.7200012207031, + "x1": 624.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 603.0, + "y0": 278.6400146484375, + "x1": 624.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 250.20001220703125, + "x1": 624.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 603.0, + "y0": 231.1199951171875, + "x1": 624.9600219726562, + "y1": 249.47998046875, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 603.0, + "y0": 212.4000244140625, + "x1": 624.9600219726562, + "y1": 230.4000244140625, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 603.0, + "y0": 178.9200439453125, + "x1": 624.9600219726562, + "y1": 201.9599609375, + "width": 21.96002197265625, + "height": 23.0399169921875 + }, { + "x0": 603.0, + "y0": 155.52001953125, + "x1": 624.9600219726562, + "y1": 178.20001220703125, + "width": 21.96002197265625, + "height": 22.67999267578125 + }, { + "x0": 603.0, + "y0": 131.0400390625, + "x1": 624.9600219726562, + "y1": 154.79998779296875, + "width": 21.96002197265625, + "height": 23.75994873046875 + }, { + "x0": 580.6799926757812, + "y0": 297.7200012207031, + "x1": 602.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 580.6799926757812, + "y0": 278.6400146484375, + "x1": 602.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 250.20001220703125, + "x1": 602.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 580.6799926757812, + "y0": 231.1199951171875, + "x1": 602.280029296875, + "y1": 249.47998046875, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 580.6799926757812, + "y0": 212.4000244140625, + "x1": 602.280029296875, + "y1": 230.4000244140625, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 580.6799926757812, + "y0": 178.9200439453125, + "x1": 602.280029296875, + "y1": 201.9599609375, + "width": 21.60003662109375, + "height": 23.0399169921875 + }, { + "x0": 580.6799926757812, + "y0": 155.52001953125, + "x1": 602.280029296875, + "y1": 178.20001220703125, + "width": 21.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 580.6799926757812, + "y0": 131.0400390625, + "x1": 602.280029296875, + "y1": 154.79998779296875, + "width": 21.60003662109375, + "height": 23.75994873046875 + }, { + "x0": 558.0, + "y0": 297.7200012207031, + "x1": 579.9600219726562, + "y1": 340.55999755859375, + "width": 21.96002197265625, + "height": 42.839996337890625 + }, { + "x0": 558.0, + "y0": 278.6400146484375, + "x1": 579.9600219726562, + "y1": 297.0, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 250.20001220703125, + "x1": 579.9600219726562, + "y1": 268.20001220703125, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 558.0, + "y0": 231.1199951171875, + "x1": 579.9600219726562, + "y1": 249.47998046875, + "width": 21.96002197265625, + "height": 18.3599853515625 + }, { + "x0": 558.0, + "y0": 212.4000244140625, + "x1": 579.9600219726562, + "y1": 230.4000244140625, + "width": 21.96002197265625, + "height": 18.0 + }, { + "x0": 558.0, + "y0": 178.9200439453125, + "x1": 579.9600219726562, + "y1": 201.9599609375, + "width": 21.96002197265625, + "height": 23.0399169921875 + }, { + "x0": 558.0, + "y0": 155.52001953125, + "x1": 579.9600219726562, + "y1": 178.20001220703125, + "width": 21.96002197265625, + "height": 22.67999267578125 + }, { + "x0": 558.0, + "y0": 131.0400390625, + "x1": 579.9600219726562, + "y1": 154.79998779296875, + "width": 21.96002197265625, + "height": 23.75994873046875 + }, { + "x0": 535.6799926757812, + "y0": 297.7200012207031, + "x1": 557.280029296875, + "y1": 340.55999755859375, + "width": 21.60003662109375, + "height": 42.839996337890625 + }, { + "x0": 535.6799926757812, + "y0": 278.6400146484375, + "x1": 557.280029296875, + "y1": 297.0, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 250.20001220703125, + "x1": 557.280029296875, + "y1": 268.20001220703125, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 535.6799926757812, + "y0": 231.1199951171875, + "x1": 557.280029296875, + "y1": 249.47998046875, + "width": 21.60003662109375, + "height": 18.3599853515625 + }, { + "x0": 535.6799926757812, + "y0": 212.4000244140625, + "x1": 557.280029296875, + "y1": 230.4000244140625, + "width": 21.60003662109375, + "height": 18.0 + }, { + "x0": 535.6799926757812, + "y0": 178.9200439453125, + "x1": 557.280029296875, + "y1": 201.9599609375, + "width": 21.60003662109375, + "height": 23.0399169921875 + }, { + "x0": 535.6799926757812, + "y0": 155.52001953125, + "x1": 557.280029296875, + "y1": 178.20001220703125, + "width": 21.60003662109375, + "height": 22.67999267578125 + }, { + "x0": 535.6799926757812, + "y0": 131.0400390625, + "x1": 557.280029296875, + "y1": 154.79998779296875, + "width": 21.60003662109375, + "height": 23.75994873046875 + }, { + "x0": 508.32000732421875, + "y0": 297.7200012207031, + "x1": 534.9599609375, + "y1": 340.55999755859375, + "width": 26.63995361328125, + "height": 42.839996337890625 + }, { + "x0": 508.32000732421875, + "y0": 278.6400146484375, + "x1": 534.9599609375, + "y1": 297.0, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 250.20001220703125, + "x1": 534.9599609375, + "y1": 268.20001220703125, + "width": 26.63995361328125, + "height": 18.0 + }, { + "x0": 508.32000732421875, + "y0": 231.1199951171875, + "x1": 534.9599609375, + "y1": 249.47998046875, + "width": 26.63995361328125, + "height": 18.3599853515625 + }, { + "x0": 508.32000732421875, + "y0": 212.4000244140625, + "x1": 534.9599609375, + "y1": 230.4000244140625, + "width": 26.63995361328125, + "height": 18.0 + }, { + "x0": 508.32000732421875, + "y0": 178.9200439453125, + "x1": 534.9599609375, + "y1": 201.9599609375, + "width": 26.63995361328125, + "height": 23.0399169921875 + }, { + "x0": 508.32000732421875, + "y0": 155.52001953125, + "x1": 534.9599609375, + "y1": 178.20001220703125, + "width": 26.63995361328125, + "height": 22.67999267578125 + }, { + "x0": 508.32000732421875, + "y0": 131.0400390625, + "x1": 534.9599609375, + "y1": 154.79998779296875, + "width": 26.63995361328125, + "height": 23.75994873046875 + }, { + "x0": 485.6400146484375, + "y0": 297.7200012207031, + "x1": 507.6000061035156, + "y1": 340.55999755859375, + "width": 21.959991455078125, + "height": 42.839996337890625 + }, { + "x0": 485.6400146484375, + "y0": 278.6400146484375, + "x1": 507.6000061035156, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 250.20001220703125, + "x1": 507.6000061035156, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 485.6400146484375, + "y0": 231.1199951171875, + "x1": 507.6000061035156, + "y1": 249.47998046875, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 485.6400146484375, + "y0": 212.4000244140625, + "x1": 507.6000061035156, + "y1": 230.4000244140625, + "width": 21.959991455078125, + "height": 18.0 + }, { + "x0": 485.6400146484375, + "y0": 178.9200439453125, + "x1": 507.6000061035156, + "y1": 201.9599609375, + "width": 21.959991455078125, + "height": 23.0399169921875 + }, { + "x0": 485.6400146484375, + "y0": 155.52001953125, + "x1": 507.6000061035156, + "y1": 178.20001220703125, + "width": 21.959991455078125, + "height": 22.67999267578125 + }, { + "x0": 485.6400146484375, + "y0": 131.0400390625, + "x1": 507.6000061035156, + "y1": 154.79998779296875, + "width": 21.959991455078125, + "height": 23.75994873046875 + }, { + "x0": 452.8800048828125, + "y0": 297.7200012207031, + "x1": 484.9200134277344, + "y1": 340.55999755859375, + "width": 32.040008544921875, + "height": 42.839996337890625 + }, { + "x0": 452.8800048828125, + "y0": 278.6400146484375, + "x1": 484.9200134277344, + "y1": 297.0, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 250.20001220703125, + "x1": 484.9200134277344, + "y1": 268.20001220703125, + "width": 32.040008544921875, + "height": 18.0 + }, { + "x0": 452.8800048828125, + "y0": 231.1199951171875, + "x1": 484.9200134277344, + "y1": 249.47998046875, + "width": 32.040008544921875, + "height": 18.3599853515625 + }, { + "x0": 452.8800048828125, + "y0": 212.4000244140625, + "x1": 484.9200134277344, + "y1": 230.4000244140625, + "width": 32.040008544921875, + "height": 18.0 + }, { + "x0": 452.8800048828125, + "y0": 178.9200439453125, + "x1": 484.9200134277344, + "y1": 201.9599609375, + "width": 32.040008544921875, + "height": 23.0399169921875 + }, { + "x0": 452.8800048828125, + "y0": 155.52001953125, + "x1": 484.9200134277344, + "y1": 178.20001220703125, + "width": 32.040008544921875, + "height": 22.67999267578125 + }, { + "x0": 452.8800048828125, + "y0": 131.0400390625, + "x1": 484.9200134277344, + "y1": 154.79998779296875, + "width": 32.040008544921875, + "height": 23.75994873046875 + }, { + "x0": 420.8399963378906, + "y0": 297.7200012207031, + "x1": 452.1600036621094, + "y1": 352.79998779296875, + "width": 31.32000732421875, + "height": 55.079986572265625 + }, { + "x0": 420.8399963378906, + "y0": 278.6400146484375, + "x1": 452.1600036621094, + "y1": 297.0, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 250.20001220703125, + "x1": 452.1600036621094, + "y1": 268.20001220703125, + "width": 31.32000732421875, + "height": 18.0 + }, { + "x0": 420.8399963378906, + "y0": 231.1199951171875, + "x1": 452.1600036621094, + "y1": 249.47998046875, + "width": 31.32000732421875, + "height": 18.3599853515625 + }, { + "x0": 420.8399963378906, + "y0": 212.4000244140625, + "x1": 452.1600036621094, + "y1": 230.4000244140625, + "width": 31.32000732421875, + "height": 18.0 + }, { + "x0": 420.8399963378906, + "y0": 178.9200439453125, + "x1": 452.1600036621094, + "y1": 201.9599609375, + "width": 31.32000732421875, + "height": 23.0399169921875 + }, { + "x0": 420.8399963378906, + "y0": 155.52001953125, + "x1": 452.1600036621094, + "y1": 178.20001220703125, + "width": 31.32000732421875, + "height": 22.67999267578125 + }, { + "x0": 420.8399963378906, + "y0": 131.0400390625, + "x1": 452.1600036621094, + "y1": 154.79998779296875, + "width": 31.32000732421875, + "height": 23.75994873046875 + }, { + "x0": 387.0, + "y0": 297.7200012207031, + "x1": 420.1199951171875, + "y1": 352.79998779296875, + "width": 33.1199951171875, + "height": 55.079986572265625 + }, { + "x0": 387.0, + "y0": 278.6400146484375, + "x1": 420.1199951171875, + "y1": 297.0, + "width": 33.1199951171875, + "height": 18.3599853515625 + }, { + "x0": 387.0, + "y0": 212.4000244140625, + "x1": 420.1199951171875, + "y1": 268.20001220703125, + "width": 33.1199951171875, + "height": 55.79998779296875 + }, { + "x0": 387.0, + "y0": 131.0400390625, + "x1": 420.1199951171875, + "y1": 201.9599609375, + "width": 33.1199951171875, + "height": 70.919921875 + }, { + "x0": 67.32000732421875, + "y0": 372.96002197265625, + "x1": 415.79998779296875, + "y1": 492.1199951171875, + "width": 348.47998046875, + "height": 119.15997314453125 + }, { + "x0": 346.67999267578125, + "y0": 297.7200012207031, + "x1": 386.2799987792969, + "y1": 352.79998779296875, + "width": 39.600006103515625, + "height": 55.079986572265625 + }, { + "x0": 346.67999267578125, + "y0": 278.6400146484375, + "x1": 386.2799987792969, + "y1": 297.0, + "width": 39.600006103515625, + "height": 18.3599853515625 + }, { + "x0": 346.67999267578125, + "y0": 212.4000244140625, + "x1": 386.2799987792969, + "y1": 268.20001220703125, + "width": 39.600006103515625, + "height": 55.79998779296875 + }, { + "x0": 346.67999267578125, + "y0": 131.0400390625, + "x1": 386.2799987792969, + "y1": 201.9599609375, + "width": 39.600006103515625, + "height": 70.919921875 + }, { + "x0": 324.0, + "y0": 297.7200012207031, + "x1": 345.9599914550781, + "y1": 352.79998779296875, + "width": 21.959991455078125, + "height": 55.079986572265625 + }, { + "x0": 324.0, + "y0": 278.6400146484375, + "x1": 345.9599914550781, + "y1": 297.0, + "width": 21.959991455078125, + "height": 18.3599853515625 + }, { + "x0": 324.0, + "y0": 212.4000244140625, + "x1": 345.9599914550781, + "y1": 268.20001220703125, + "width": 21.959991455078125, + "height": 55.79998779296875 + }, { + "x0": 324.0, + "y0": 131.0400390625, + "x1": 345.9599914550781, + "y1": 201.9599609375, + "width": 21.959991455078125, + "height": 70.919921875 + }, { + "x0": 256.67999267578125, + "y0": 297.7200012207031, + "x1": 323.2799987792969, + "y1": 352.79998779296875, + "width": 66.60000610351562, + "height": 55.079986572265625 + }, { + "x0": 292.67999267578125, + "y0": 278.6400146484375, + "x1": 323.2799987792969, + "y1": 297.0, + "width": 30.600006103515625, + "height": 18.3599853515625 + }, { + "x0": 292.67999267578125, + "y0": 212.4000244140625, + "x1": 323.2799987792969, + "y1": 268.20001220703125, + "width": 30.600006103515625, + "height": 55.79998779296875 + }, { + "x0": 292.67999267578125, + "y0": 131.0400390625, + "x1": 323.2799987792969, + "y1": 201.9599609375, + "width": 30.600006103515625, + "height": 70.919921875 + }, { + "x0": 256.67999267578125, + "y0": 278.6400146484375, + "x1": 291.9599914550781, + "y1": 297.0, + "width": 35.279998779296875, + "height": 18.3599853515625 + }, { + "x0": 256.67999267578125, + "y0": 212.4000244140625, + "x1": 291.9599914550781, + "y1": 268.20001220703125, + "width": 35.279998779296875, + "height": 55.79998779296875 + }, { + "x0": 256.67999267578125, + "y0": 131.0400390625, + "x1": 291.9599914550781, + "y1": 201.9599609375, + "width": 35.279998779296875, + "height": 70.919921875 + }, { + "x0": 211.67999267578125, + "y0": 297.7200012207031, + "x1": 255.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 211.67999267578125, + "y0": 278.6400146484375, + "x1": 255.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 211.67999267578125, + "y0": 131.0400390625, + "x1": 255.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 146.8800048828125 + }, { + "x0": 157.67999267578125, + "y0": 297.7200012207031, + "x1": 210.96002197265625, + "y1": 352.79998779296875, + "width": 53.280029296875, + "height": 55.079986572265625 + }, { + "x0": 157.67999267578125, + "y0": 278.6400146484375, + "x1": 210.96002197265625, + "y1": 297.0, + "width": 53.280029296875, + "height": 18.3599853515625 + }, { + "x0": 157.67999267578125, + "y0": 131.0400390625, + "x1": 210.96002197265625, + "y1": 277.9200439453125, + "width": 53.280029296875, + "height": 146.8800048828125 + }, { + "x0": 112.67999267578125, + "y0": 297.7200012207031, + "x1": 156.96002197265625, + "y1": 352.79998779296875, + "width": 44.280029296875, + "height": 55.079986572265625 + }, { + "x0": 112.67999267578125, + "y0": 278.6400146484375, + "x1": 156.96002197265625, + "y1": 297.0, + "width": 44.280029296875, + "height": 18.3599853515625 + }, { + "x0": 112.67999267578125, + "y0": 131.0400390625, + "x1": 156.96002197265625, + "y1": 277.9200439453125, + "width": 44.280029296875, + "height": 146.8800048828125 + }, { + "x0": 67.32000732421875, + "y0": 297.7200012207031, + "x1": 111.96002197265625, + "y1": 352.79998779296875, + "width": 44.6400146484375, + "height": 55.079986572265625 + }, { + "x0": 67.32000732421875, + "y0": 278.6400146484375, + "x1": 111.96002197265625, + "y1": 297.0, + "width": 44.6400146484375, + "height": 18.3599853515625 + }, { + "x0": 67.32000732421875, + "y0": 131.0400390625, + "x1": 111.96002197265625, + "y1": 277.9200439453125, + "width": 44.6400146484375, + "height": 146.8800048828125 + } + ] + } + ] +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/new/VV-511309_OCR.pdf b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/new/VV-511309_OCR.pdf new file mode 100644 index 00000000..74cc1deb Binary files /dev/null and b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/new/VV-511309_OCR.pdf differ