From d7942454093f231f19dcfba971b807e961a10d94 Mon Sep 17 00:00:00 2001 From: Maverick Studer Date: Mon, 7 Oct 2024 13:31:15 +0200 Subject: [PATCH] RED-9123: Improve performance of re-analysis (Spike) --- .../internal/AdminInterfaceController.java | 18 +- .../build.gradle.kts | 9 +- .../processor/entity/dossier/FileEntity.java | 3 + .../jobs/CreateJobsConfiguration.java | 27 + .../migrations/QueueRenameMigration23.java | 107 - .../migrations/QueueRenameMigration27.java | 107 + .../migrations/RuleFileUpdateMigration26.java | 70 + .../v1/processor/model/PyInfraRequest.java | 5 + .../service/FileManagementStorageService.java | 53 + .../v1/processor/service/FileService.java | 2 + .../processor/service/FileStatusService.java | 61 +- .../service/ImageSimilarityService.java | 19 +- .../job/DocumentDataFilesConversionJob.java | 283 + .../layoutparsing/ChunkingRequestFactory.java | 19 +- .../FileStatusPersistenceService.java | 7 + .../repository/FileRepository.java | 11 + .../LayoutParsingFinishedMessageReceiver.java | 2 +- .../v1/processor/utils/StorageIdUtils.java | 5 + .../db/changelog/db.changelog-tenant.yaml | 4 +- ...4-add-protobuf-migration-done-to-file.yaml | 12 + .../build.gradle.kts | 3 +- .../peristence/v1/server/Application.java | 1 - .../v1/server/integration/tests/FileTest.java | 223 +- ...EFSA sanitisation GFL v1_file-exchange.zip | Bin 774605 -> 763454 bytes .../oldDocumentData/old.DOCUMENT_PAGES.json | 56 + .../old.DOCUMENT_POSITION.json | 59458 ++++++++++++++++ .../old.DOCUMENT_STRUCTURE.json | 2946 + .../oldDocumentData/old.DOCUMENT_TEXT.json | 1225 + .../dossier/file/FileType.java | 12 +- .../build.gradle.kts | 4 +- .../EntityLogDocumentUpdateService.java | 43 +- .../mongo/service/EntityLogMongoService.java | 57 +- 32 files changed, 64643 insertions(+), 209 deletions(-) delete mode 100644 persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration23.java create mode 100644 persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration27.java create mode 100644 persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/RuleFileUpdateMigration26.java create mode 100644 persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/job/DocumentDataFilesConversionJob.java create mode 100644 persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/tenant/144-add-protobuf-migration-done-to-file.yaml create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_PAGES.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_POSITION.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_STRUCTURE.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_TEXT.json diff --git a/persistence-service-v1/persistence-service-internal-api-impl-v1/src/main/java/com/iqser/red/service/persistence/v1/internal/api/controller/internal/AdminInterfaceController.java b/persistence-service-v1/persistence-service-internal-api-impl-v1/src/main/java/com/iqser/red/service/persistence/v1/internal/api/controller/internal/AdminInterfaceController.java index 56972fec9..8e6b10b12 100644 --- a/persistence-service-v1/persistence-service-internal-api-impl-v1/src/main/java/com/iqser/red/service/persistence/v1/internal/api/controller/internal/AdminInterfaceController.java +++ b/persistence-service-v1/persistence-service-internal-api-impl-v1/src/main/java/com/iqser/red/service/persistence/v1/internal/api/controller/internal/AdminInterfaceController.java @@ -35,16 +35,7 @@ public class AdminInterfaceController { @PostMapping("/reset-file") public void resetFile(@RequestParam("dossierId") String dossierId, @RequestParam("fileId") String fileId) { - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.REDACTION_LOG); - fileManagementStorageService.deleteEntityLog(dossierId, fileId); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_PAGES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_TEXT); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_POSITION); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.AZURE_NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.FIGURE); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.TABLES); + fileManagementStorageService.deleteAllObjects(dossierId, fileId); fileStatusService.setStatusFullReprocess(dossierId, fileId, true, true); @@ -143,12 +134,7 @@ public class AdminInterfaceController { fileManagementStorageService.deleteObject(dossierId, fileId, FileType.REDACTION_LOG); fileManagementStorageService.deleteEntityLog(dossierId, fileId); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_TEXT); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_PAGES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_POSITION); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.AZURE_NER_ENTITIES); + fileManagementStorageService.deleteDocumentAndNerObjects(dossierId, fileId); fileStatusService.setStatusFullReprocess(dossierId, fileId, true, true); } diff --git a/persistence-service-v1/persistence-service-processor-v1/build.gradle.kts b/persistence-service-v1/persistence-service-processor-v1/build.gradle.kts index be723feaa..d4f54213c 100644 --- a/persistence-service-v1/persistence-service-processor-v1/build.gradle.kts +++ b/persistence-service-v1/persistence-service-processor-v1/build.gradle.kts @@ -30,7 +30,7 @@ dependencies { exclude(group = "com.iqser.red.service", module = "persistence-service-internal-api-v1") exclude(group = "com.iqser.red.service", module = "persistence-service-shared-api-v1") } - api("com.knecon.fforesight:layoutparser-service-internal-api:0.163.0") { + api("com.knecon.fforesight:layoutparser-service-internal-api:0.181.0") { exclude(group = "com.iqser.red.service", module = "persistence-service-internal-api-v1") exclude(group = "com.iqser.red.service", module = "persistence-service-shared-api-v1") } @@ -44,7 +44,10 @@ dependencies { } implementation("com.knecon.fforesight:llm-service-api:1.17.0") api("com.knecon.fforesight:jobs-commons:0.10.0") - api("com.knecon.fforesight:tenant-commons:0.30.0") + api("com.iqser.red.commons:storage-commons:2.50.0") + api("com.knecon.fforesight:tenant-commons:0.30.0") { + exclude(group = "com.iqser.red.commons", module = "storage-commons") + } api("com.knecon.fforesight:database-tenant-commons:0.24.0") { exclude(group = "com.knecon.fforesight", module = "tenant-commons") } @@ -64,7 +67,6 @@ dependencies { api("org.springframework.security:spring-security-messaging:6.1.3") api("com.iqser.red.commons:spring-commons:2.1.0") api("com.iqser.red.commons:jackson-commons:2.3.0") - api("com.iqser.red.commons:storage-commons:2.49.0") api("com.iqser.red.commons:spring-boot-starter-web-custom-commons:2.1.0") api("com.iqser.red.commons:metric-commons:2.3.0") api("org.apache.commons:commons-compress:1.21") @@ -75,6 +77,7 @@ dependencies { api("commons-validator:commons-validator:1.7") api("com.opencsv:opencsv:5.9") + implementation("com.google.protobuf:protobuf-java:4.27.1") implementation("org.mapstruct:mapstruct:1.5.5.Final") annotationProcessor("org.mapstruct:mapstruct-processor:1.5.5.Final") diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/dossier/FileEntity.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/dossier/FileEntity.java index 49883c011..f3813c32d 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/dossier/FileEntity.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/dossier/FileEntity.java @@ -207,6 +207,9 @@ public class FileEntity { @Column private Integer overwriteFileCounter; + @Column + private boolean protobufMigrationDone; + public OffsetDateTime getLastOCRTime() { return this.ocrStartTime; diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/jobs/CreateJobsConfiguration.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/jobs/CreateJobsConfiguration.java index 75cf2fcd9..2e35cd335 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/jobs/CreateJobsConfiguration.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/jobs/CreateJobsConfiguration.java @@ -75,6 +75,7 @@ public class CreateJobsConfiguration { .build(); } + @Bean public Trigger deletedFilesCleanupJobTrigger() throws ParseException { @@ -86,6 +87,19 @@ public class CreateJobsConfiguration { .build(); } + + @Bean + public Trigger documentDataFilesConversionJobTrigger() throws ParseException { + + return TriggerBuilder.newTrigger() + .forJob(documentDataFilesConversionJobDetail()) + .withIdentity("DocumentDataFilesConversionJobTrigger") + .withDescription("Triggers DocumentDataFilesConversionJob nightly at 2 AM and runs for 2 hours") + .withSchedule(CronScheduleBuilder.cronSchedule(new CronExpression("0 0 2 * * ?"))) + .build(); + } + + @Bean public JobDetail softDeletedFilesCleanupJobDetail() { @@ -97,6 +111,7 @@ public class CreateJobsConfiguration { .build(); } + @Bean public JobDetail deletedFilesCleanupJobDetail() { @@ -109,6 +124,18 @@ public class CreateJobsConfiguration { } + @Bean + public JobDetail documentDataFilesConversionJobDetail() { + + return JobBuilder.newJob() + .ofType(DocumentDataFilesConversionJob.class) + .storeDurably() + .withIdentity("DocumentDataFilesConversionJob") + .withDescription("Convert document data files from json to protobuf format") + .build(); + } + + @Bean public Trigger keyCloakUserSyncJobTrigger() throws ParseException { diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration23.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration23.java deleted file mode 100644 index 154a1641d..000000000 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration23.java +++ /dev/null @@ -1,107 +0,0 @@ -package com.iqser.red.service.persistence.management.v1.processor.migration.migrations; - -//import java.util.List; -// -//import org.springframework.amqp.core.AmqpAdmin; -//import org.springframework.stereotype.Service; -// -//import com.iqser.red.service.persistence.management.v1.processor.migration.Migration; -// -//import lombok.Setter; -//import lombok.extern.slf4j.Slf4j; -// -// -//@Slf4j -//@Setter -//@Service -//public class QueueRenameMigration23 extends Migration { -// -// private final AmqpAdmin amqpAdmin; -// -// private static final String NAME = "Migration for renaming of most queues"; -// private static final long VERSION = 23; -// private static final List queueNames = List.of("analysis_flag_calculation_queue", -// "cv_analysis_dead_letter_queue", -// "cv_analysis_request_queue", -// "cv_analysis_response_queue", -// "deleteFromIndexDLQ", -// "deleteFromIndexQueue", -// "downloadDLQ", -// "downloadQueue", -// "download_compression_dlq", -// "download_compression_queue", -// "entity_dead_letter_queue", -// "entity_request_queue", -// "entity_response_queue", -// "exportDownloadDLQ", -// "exportDownloadQueue", -// "image_dead_letter_queue", -// "image_request_queue", -// "image_response_queue", -// "indexingDQL", -// "indexingQueue", -// "layout_parsing_dead_letter_queue", -// "layout_parsing_request_queue", -// "layout_parsing_response_queue", -// "migrationDLQ", -// "migrationQueue", -// "migrationResponseQueue", -// "mongo-tenant-created", -// "mongo-tenant-created-dlq", -// "ocr_dead_letter_queue", -// "ocr_request_queue", -// "ocr_response_queue", -// "ocr_status_update_dead_letter_queue", -// "ocr_status_update_response_queue", -// "pdftron_dlq", -// "pdftron_queue", -// "pdftron_result_queue", -// "persistence-service-user-created-queue", -// "persistence-service-user-deleted-queue", -// "persistence-service-user-events-dql", -// "persistence-service-user-own-profile-updated-queue", -// "persistence-service-user-roles-updated-queue", -// "persistence-service-user-status-changed-queue", -// "persistence-service-user-updated-queue", -// "preprocessingDLQ", -// "preprocessingQueue", -// "redactionAnalysisResponseQueue", -// "redactionDQL", -// "redactionPriorityQueue", -// "redactionQueue", -// "reportDLQ", -// "reportQueue", -// "reportResultDLQ", -// "reportResultQueue", -// "tenant-created", -// "tenant-created-dlq", -// "tenant-delete-dlq", -// "tenant-delete-queue", -// "tenant-updated-queue", -// "tenant-updated-dlq", -// "tenant-sync", -// "tenant-sync-dlq", -// "visual_layout_parsing_service_dead_letter_queue", -// "visual_layout_parsing_service_queue", -// "visual_layout_parsing_service_response_queue"); -// -// -// public QueueRenameMigration23(AmqpAdmin amqpAdmin) { -// -// super(NAME, VERSION); -// this.amqpAdmin = amqpAdmin; -// } -// -// -// @Override -// protected void migrate() { -// -// log.info("Migration: Deleting queues..."); -// for (String queueName : queueNames) { -// log.info("Migration: Deleting queue {}", queueName); -// amqpAdmin.deleteQueue(queueName); -// } -// -// } -// -//} diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration27.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration27.java new file mode 100644 index 000000000..3595981fa --- /dev/null +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/QueueRenameMigration27.java @@ -0,0 +1,107 @@ +package com.iqser.red.service.persistence.management.v1.processor.migration.migrations; + +import java.util.List; + +import org.springframework.amqp.core.AmqpAdmin; +import org.springframework.stereotype.Service; + +import com.iqser.red.service.persistence.management.v1.processor.migration.Migration; + +import lombok.Setter; +import lombok.extern.slf4j.Slf4j; + + +@Slf4j +@Setter +@Service +public class QueueRenameMigration27 extends Migration { + + private final AmqpAdmin amqpAdmin; + + private static final String NAME = "Migration for renaming of most queues"; + private static final long VERSION = 27; + private static final List queueNames = List.of("analysis_flag_calculation_queue", + "cv_analysis_dead_letter_queue", + "cv_analysis_request_queue", + "cv_analysis_response_queue", + "deleteFromIndexDLQ", + "deleteFromIndexQueue", + "downloadDLQ", + "downloadQueue", + "download_compression_dlq", + "download_compression_queue", + "entity_dead_letter_queue", + "entity_request_queue", + "entity_response_queue", + "exportDownloadDLQ", + "exportDownloadQueue", + "image_dead_letter_queue", + "image_request_queue", + "image_response_queue", + "indexingDQL", + "indexingQueue", + "layout_parsing_dead_letter_queue", + "layout_parsing_request_queue", + "layout_parsing_response_queue", + "migrationDLQ", + "migrationQueue", + "migrationResponseQueue", + "mongo-tenant-created", + "mongo-tenant-created-dlq", + "ocr_dead_letter_queue", + "ocr_request_queue", + "ocr_response_queue", + "ocr_status_update_dead_letter_queue", + "ocr_status_update_response_queue", + "pdftron_dlq", + "pdftron_queue", + "pdftron_result_queue", + "persistence-service-user-created-queue", + "persistence-service-user-deleted-queue", + "persistence-service-user-events-dql", + "persistence-service-user-own-profile-updated-queue", + "persistence-service-user-roles-updated-queue", + "persistence-service-user-status-changed-queue", + "persistence-service-user-updated-queue", + "preprocessingDLQ", + "preprocessingQueue", + "redactionAnalysisResponseQueue", + "redactionDQL", + "redactionPriorityQueue", + "redactionQueue", + "reportDLQ", + "reportQueue", + "reportResultDLQ", + "reportResultQueue", + "tenant-created", + "tenant-created-dlq", + "tenant-delete-dlq", + "tenant-delete-queue", + "tenant-updated-queue", + "tenant-updated-dlq", + "tenant-sync", + "tenant-sync-dlq", + "visual_layout_parsing_service_dead_letter_queue", + "visual_layout_parsing_service_queue", + "visual_layout_parsing_service_response_queue"); + + + public QueueRenameMigration27(AmqpAdmin amqpAdmin) { + + super(NAME, VERSION); + this.amqpAdmin = amqpAdmin; + } + + + @Override + protected void migrate() { + + log.info("Migration: Deleting queues..."); + for (String queueName : queueNames) { + log.info("Migration: Deleting queue {}", queueName); + amqpAdmin.deleteQueue(queueName); + } + + } + +} diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/RuleFileUpdateMigration26.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/RuleFileUpdateMigration26.java new file mode 100644 index 000000000..b73e4e4b0 --- /dev/null +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/migration/migrations/RuleFileUpdateMigration26.java @@ -0,0 +1,70 @@ +package com.iqser.red.service.persistence.management.v1.processor.migration.migrations; + +import java.util.List; +import java.util.Optional; + +import org.springframework.stereotype.Service; + +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.RuleSetEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.DossierTemplateEntity; +import com.iqser.red.service.persistence.management.v1.processor.migration.Migration; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.RulesPersistenceService; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.DossierTemplateRepository; +import com.iqser.red.service.persistence.service.v1.api.shared.model.RuleFileType; +import com.knecon.fforesight.tenantcommons.TenantContext; + +import lombok.Setter; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Setter +@Service +public class RuleFileUpdateMigration26 extends Migration { + + private final DossierTemplateRepository dossierTemplateRepository; + private final RulesPersistenceService rulesPersistenceService; + + private static final String NAME = "Migration for rule files, updating imports after package change"; + private static final long VERSION = 26; + + + public RuleFileUpdateMigration26(DossierTemplateRepository dossierTemplateRepository, RulesPersistenceService rulesPersistenceService) { + + super(NAME, VERSION); + this.dossierTemplateRepository = dossierTemplateRepository; + this.rulesPersistenceService = rulesPersistenceService; + } + + + @Override + protected void migrate() { + + log.info("Migration: Updating all rule files in all dossier templates"); + updateAllRuleFiles(); + + } + + + @SneakyThrows + private void updateAllRuleFiles() { + + List dossierTemplates = dossierTemplateRepository.findAll(); + List ruleSets = dossierTemplates.stream() + .map(dt -> rulesPersistenceService.getRules(dt.getId(), RuleFileType.ENTITY)) + .filter(Optional::isPresent) + .map(Optional::get) + .toList(); + + String tenantId = TenantContext.getTenantId(); + ruleSets.parallelStream() + .forEach(ruleSet -> { + TenantContext.setTenantId(tenantId); + String updatedRules = ruleSet.getValue() + .replaceAll("import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.LayoutEngine;", + "import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.LayoutEngineProto.LayoutEngine;"); + rulesPersistenceService.setRules(updatedRules, ruleSet.getDossierTemplateId(), RuleFileType.ENTITY); + }); + } + +} diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/model/PyInfraRequest.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/model/PyInfraRequest.java index 40d328727..d063afe89 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/model/PyInfraRequest.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/model/PyInfraRequest.java @@ -39,6 +39,11 @@ public class PyInfraRequest { targetFilePath.put(key, StorageIdUtils.getStorageId(dossierUuid, fileUuid, fileType) + ".gz"); } + public void addTargetFilePath(String key, String fileName, String fileExtension) { + + targetFilePath.put(key, StorageIdUtils.getStorageId(dossierUuid, fileUuid, fileName, fileExtension) + ".gz"); + } + public void setResponseFilePath(FileType fileType) { diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileManagementStorageService.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileManagementStorageService.java index 35e0a26f6..6056e2515 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileManagementStorageService.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileManagementStorageService.java @@ -1,5 +1,7 @@ package com.iqser.red.service.persistence.management.v1.processor.service; +import static com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructureProto.DocumentStructure; + import java.io.BufferedInputStream; import java.io.File; import java.io.InputStream; @@ -24,6 +26,7 @@ import com.iqser.red.service.persistence.service.v1.api.shared.mongo.service.Ent import com.iqser.red.storage.commons.exception.StorageException; import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; import com.iqser.red.storage.commons.service.StorageService; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructureWrapper; import com.knecon.fforesight.tenantcommons.TenantContext; import lombok.RequiredArgsConstructor; @@ -194,6 +197,10 @@ public class FileManagementStorageService { } } + public boolean objectExists(String dossierId, String fileId, String fileName, String fileExtension) { + + return storageService.objectExists(TenantContext.getTenantId(), StorageIdUtils.getStorageId(dossierId, fileId, fileName, fileExtension)); + } public boolean objectExists(String dossierId, String fileId, FileType origin) { @@ -212,6 +219,44 @@ public class FileManagementStorageService { storageService.deleteObject(TenantContext.getTenantId(), StorageIdUtils.getStorageId(dossierId, fileId, fileType)); } + public void deleteObject(String dossierId, String fileId, String fileName, String fileExtension) { + + storageService.deleteObject(TenantContext.getTenantId(), StorageIdUtils.getStorageId(dossierId, fileId, fileName, fileExtension)); + } + + public void deleteDocumentAndNerObjects(String dossierId, String fileId) { + + deleteObject(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); + deleteObject(dossierId, fileId, FileType.DOCUMENT_TEXT); + deleteObject(dossierId, fileId, FileType.DOCUMENT_PAGES); + deleteObject(dossierId, fileId, FileType.DOCUMENT_POSITION); + + deleteObject(dossierId, fileId, FileType.DOCUMENT_STRUCTURE.name(), FileType.DOCUMENT_STRUCTURE_OLD.getExtension()); + deleteObject(dossierId, fileId, FileType.DOCUMENT_TEXT.name(), FileType.DOCUMENT_TEXT_OLD.getExtension()); + deleteObject(dossierId, fileId, FileType.DOCUMENT_PAGES.name(), FileType.DOCUMENT_PAGES_OLD.getExtension()); + deleteObject(dossierId, fileId, FileType.DOCUMENT_POSITION.name(), FileType.DOCUMENT_POSITION_OLD.getExtension()); + + deleteObject(dossierId, fileId, FileType.DOCUMENT_CHUNKS); + + deleteObject(dossierId, fileId, FileType.NER_ENTITIES); + deleteObject(dossierId, fileId, FileType.LLM_NER_ENTITIES); + deleteObject(dossierId, fileId, FileType.AZURE_NER_ENTITIES); + + } + + public void deleteAllObjects(String dossierId, String fileId) { + + deleteObject(dossierId, fileId, FileType.REDACTION_LOG); + deleteEntityLog(dossierId, fileId); + + deleteDocumentAndNerObjects(dossierId, fileId); + + deleteObject(dossierId, fileId, FileType.IMAGE_INFO); + deleteObject(dossierId, fileId, FileType.FIGURE); + deleteObject(dossierId, fileId, FileType.TABLES); + + } + public void deleteEntityLog(String dossierId, String fileId) { @@ -229,4 +274,12 @@ public class FileManagementStorageService { storageService.deleteObject(TenantContext.getTenantId(), storageId); } + + public DocumentStructureWrapper getDocumentStructure(String dossierId, String fileId) { + + return new DocumentStructureWrapper(storageService.readProtoObject(TenantContext.getTenantId(), + StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE), + DocumentStructure.parser())); + } + } diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileService.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileService.java index 913a067c0..d9b487051 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileService.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileService.java @@ -9,9 +9,11 @@ import java.time.temporal.ChronoUnit; import java.util.List; import java.util.Set; +import org.springframework.data.domain.PageRequest; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.FileEntity; import com.iqser.red.service.persistence.management.v1.processor.exception.ConflictException; import com.iqser.red.service.persistence.management.v1.processor.exception.DossierNotFoundException; import com.iqser.red.service.persistence.management.v1.processor.exception.NotFoundException; diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileStatusService.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileStatusService.java index 40b92e306..dd1cff8bc 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileStatusService.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/FileStatusService.java @@ -7,6 +7,8 @@ import java.util.ArrayList; import java.util.Comparator; import java.util.List; import java.util.Set; +import java.util.function.BiFunction; +import java.util.function.Function; import java.util.stream.Collectors; import org.apache.commons.lang3.StringUtils; @@ -311,7 +313,11 @@ public class FileStatusService { return; } - if (!fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_TEXT)) { + if (!fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_TEXT) && !fileManagementStorageService.objectExists(dossierId, + fileId, + FileType.DOCUMENT_TEXT.name(), + FileType.DOCUMENT_TEXT_OLD.getExtension())) { + var layoutParsingRequest = layoutParsingRequestFactory.build(dossierId, fileId, priority); setStatusFullProcessing(fileId); log.info("Add file: {} from dossier {} to layout parsing request queue", fileId, dossierId); @@ -328,7 +334,9 @@ public class FileStatusService { } if (settings.isLlmNerServiceEnabled() && !fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_CHUNKS)) { - var chunkingRequest = ChunkingRequestFactory.createChunkingRequest(dossierId, fileId); + var chunkingRequest = ChunkingRequestFactory.createChunkingRequest(dossierId, + fileId, + fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_STRUCTURE)); setStatusFullProcessing(fileId); log.info("Sending request to {} for {}/{}", CHUNKING_REQUEST_EXCHANGE, dossierId, fileId); rabbitTemplate.convertAndSend(CHUNKING_REQUEST_EXCHANGE, TenantContext.getTenantId(), chunkingRequest); @@ -566,21 +574,36 @@ public class FileStatusService { protected void addToLLMNerQueue(String dossierId, String fileId) { setStatusNerAnalyzing(fileId); + boolean protoFilesExist = fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); + + BiFunction getStorageId = (newFileType, oldFileType) -> protoFilesExist ? // + StorageIdUtils.getStorageId(dossierId, fileId, newFileType) : StorageIdUtils.getStorageId(dossierId, fileId, newFileType.name(), oldFileType.getExtension()); + + String chunksStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_CHUNKS); + + String documentPagesStorageId = getStorageId.apply(FileType.DOCUMENT_PAGES, FileType.DOCUMENT_PAGES_OLD); + String documentStructureStorageId = getStorageId.apply(FileType.DOCUMENT_STRUCTURE, FileType.DOCUMENT_STRUCTURE_OLD); + String documentTextStorageId = getStorageId.apply(FileType.DOCUMENT_TEXT, FileType.DOCUMENT_TEXT_OLD); + String documentPositionStorageId = getStorageId.apply(FileType.DOCUMENT_POSITION, FileType.DOCUMENT_POSITION_OLD); + + String resultStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.LLM_NER_ENTITIES); + rabbitTemplate.convertAndSend(MessagingConfiguration.LLM_NER_REQUEST_EXCHANGE, TenantContext.getTenantId(), LlmNerMessage.builder() .identifier(QueueMessageIdentifierService.buildIdentifier(dossierId, fileId, false)) - .chunksStorageId(StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_CHUNKS)) - .documentPagesStorageId(StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_PAGES)) - .documentStructureStorageId(StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE)) - .documentTextStorageId(StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_TEXT)) - .documentPositionStorageId(StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_POSITION)) - .resultStorageId(StorageIdUtils.getStorageId(dossierId, fileId, FileType.LLM_NER_ENTITIES)) + .chunksStorageId(chunksStorageId) + .documentPagesStorageId(documentPagesStorageId) + .documentStructureStorageId(documentStructureStorageId) + .documentTextStorageId(documentTextStorageId) + .documentPositionStorageId(documentPositionStorageId) + .resultStorageId(resultStorageId) .build(), message -> { message.getMessageProperties().setPriority(1); return message; }); + } @@ -880,14 +903,7 @@ public class FileStatusService { if (requiresStructureAnalysis) { log.info("Delete text and NER entities from file {} in dossier {}", fileId, dossierId); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_POSITION); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_PAGES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_TEXT); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_CHUNKS); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.LLM_NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.AZURE_NER_ENTITIES); + fileManagementStorageService.deleteDocumentAndNerObjects(dossierId, fileId); } addToAnalysisQueue(dossierId, fileId, priority, Sets.newHashSet(), AnalysisType.DEFAULT); @@ -923,17 +939,8 @@ public class FileStatusService { public void overwriteFile(String dossierId, String fileId, String uploader, String filename, boolean keepManualRedactions, boolean disableAutomaticAnalysis) { fileManagementStorageService.deleteObject(dossierId, fileId, FileType.ORIGIN); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.REDACTION_LOG); - fileManagementStorageService.deleteEntityLog(dossierId, fileId); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.IMAGE_INFO); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_PAGES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_POSITION); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.DOCUMENT_TEXT); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.AZURE_NER_ENTITIES); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.FIGURE); - fileManagementStorageService.deleteObject(dossierId, fileId, FileType.TABLES); + + fileManagementStorageService.deleteAllObjects(dossierId, fileId); if (keepManualRedactions) { fileStatusPersistenceService.overwriteFile(fileId, uploader, filename, true, disableAutomaticAnalysis); diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/ImageSimilarityService.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/ImageSimilarityService.java index 147581e01..cc2b6ca33 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/ImageSimilarityService.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/ImageSimilarityService.java @@ -1,7 +1,5 @@ package com.iqser.red.service.persistence.management.v1.processor.service; -import java.io.IOException; -import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.Map; @@ -14,9 +12,8 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.iqser.red.service.persistence.service.v1.api.shared.model.utils.Scope; import com.iqser.red.service.persistence.service.v1.api.shared.mongo.document.ImageDocument; import com.iqser.red.service.persistence.service.v1.api.shared.mongo.service.ImageMongoService; -import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructure; -import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.NodeType; -import com.knecon.fforesight.tenantcommons.TenantContext; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructureWrapper; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.NodeTypeProto.NodeType; import lombok.Getter; import lombok.extern.slf4j.Slf4j; @@ -33,15 +30,14 @@ public class ImageSimilarityService { ObjectMapper objectMapper; - public void saveImages(String templateId, String dossierId, String fileId, String storageId) throws IOException { + public void saveImages(String templateId, String dossierId, String fileId) { + DocumentStructureWrapper documentStructure = fileManagementStorageService.getDocumentStructure(dossierId, fileId); List imageDocuments = new ArrayList<>(); - try (InputStream inputStream = fileManagementStorageService.getObject(TenantContext.getTenantId(), storageId)) { - DocumentStructure documentStructure = objectMapper.readValue(inputStream, DocumentStructure.class); documentStructure.streamAllEntries() .filter(entry -> entry.getType().equals(NodeType.IMAGE)) .forEach(i -> { - Map properties = i.getProperties(); + Map properties = i.getPropertiesMap(); ImageDocument imageDocument = new ImageDocument(); imageDocument.setImageId(properties.get("id")); imageDocument.setFeatureVector(parseRepresentationVector(properties.get("representationHash"))); @@ -51,7 +47,7 @@ public class ImageSimilarityService { imageDocuments.add(imageDocument); }); - } + if (imageDocuments.isEmpty()) { return; } @@ -64,8 +60,7 @@ public class ImageSimilarityService { ImageDocument centralImage = this.imageMongoService.findById(annotationId); List similarImages = this.findSimilarImages(centralImage, distance, scope); log.info("received similar images: {}", similarImages); - return similarImages.stream() - .collect(Collectors.toList()); + return new ArrayList<>(similarImages); } diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/job/DocumentDataFilesConversionJob.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/job/DocumentDataFilesConversionJob.java new file mode 100644 index 000000000..c0723cac9 --- /dev/null +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/job/DocumentDataFilesConversionJob.java @@ -0,0 +1,283 @@ +package com.iqser.red.service.persistence.management.v1.processor.service.job; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +import org.quartz.DisallowConcurrentExecution; +import org.quartz.Job; +import org.quartz.JobExecutionContext; +import org.springframework.data.domain.PageRequest; +import org.springframework.stereotype.Service; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.google.common.primitives.Floats; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.FileEntity; +import com.iqser.red.service.persistence.management.v1.processor.service.FileManagementStorageService; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.FileStatusPersistenceService; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.FileRepository; +import com.iqser.red.service.persistence.management.v1.processor.utils.StorageIdUtils; +import com.iqser.red.service.persistence.management.v1.processor.utils.TenantUtils; +import com.iqser.red.service.persistence.service.v1.api.shared.model.dossiertemplate.dossier.file.FileType; +import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; +import com.iqser.red.storage.commons.service.StorageService; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentPage; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentPageProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentPositionData; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentPositionDataProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructure; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructureProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentTextData; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentTextDataProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.EntryDataProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.LayoutEngine; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.LayoutEngineProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.NodeTypeProto; +import com.knecon.fforesight.tenantcommons.TenantContext; +import com.knecon.fforesight.tenantcommons.TenantProvider; + +import jakarta.transaction.Transactional; +import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@RequiredArgsConstructor +@Service +@DisallowConcurrentExecution +public class DocumentDataFilesConversionJob implements Job { + + private final FileRepository fileRepository; + private final FileStatusPersistenceService fileStatusPersistenceService; + private final TenantProvider tenantProvider; + private final FileManagementStorageService fileManagementStorageService; + private final StorageService storageService; + private final ObjectMapper objectMapper; + + private static final long MAX_JOB_DURATION = 2 * 60 * 60 * 1000L; + private static final int FILE_BATCH_SIZE = 32; + + + @Override + public void execute(JobExecutionContext jobExecutionContext) { + + long startTime = System.currentTimeMillis(); + + tenantProvider.getTenants() + .forEach(tenant -> { + + if (!TenantUtils.isTenantReadyForPersistence(tenant)) { + return; + } + + TenantContext.setTenantId(tenant.getTenantId()); + convertAllDocumentDataFiles(startTime); + + }); + } + + + @SneakyThrows + private void convertAllDocumentDataFiles(long startTime) { + + while (System.currentTimeMillis() - startTime < MAX_JOB_DURATION) { + + List files = fileRepository.findByProtobufMigrationDoneFalse(PageRequest.of(0, FILE_BATCH_SIZE)); + if (files.isEmpty()) { + break; + } + + String tenantId = TenantContext.getTenantId(); + files.parallelStream() + .forEach(file -> { + TenantContext.setTenantId(tenantId); + log.info("Reading dossier {} file {} from storage", file.getDossierId(), file.getId()); + + String oldDocumentStructureStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_STRUCTURE.name(), ".json"); + String newDocumentStructureStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_STRUCTURE); + + try (InputStream inputStream = fileManagementStorageService.getObject(TenantContext.getTenantId(), oldDocumentStructureStorageId)) { + DocumentStructure oldDocumentStructure = objectMapper.readValue(inputStream, DocumentStructure.class); + DocumentStructureProto.DocumentStructure newDocumentStructure = convertDocumentStructure(oldDocumentStructure); + storageService.storeProtoObject(TenantContext.getTenantId(), newDocumentStructureStorageId, newDocumentStructure); + //storageService.deleteObject(TenantContext.getTenantId(), oldDocumentStructureStorageId); + } catch (StorageObjectDoesNotExist e) { + log.info("No document structure found for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } catch (IOException e) { + log.error("Document structure could not be mapped for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } + + String oldDocumentPagesStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_PAGES.name(), ".json"); + String newDocumentPagesStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_PAGES); + try (InputStream inputStream = fileManagementStorageService.getObject(TenantContext.getTenantId(), oldDocumentPagesStorageId)) { + DocumentPage[] oldDocumentPages = objectMapper.readValue(inputStream, DocumentPage[].class); + DocumentPageProto.AllDocumentPages newDocumentPages = convertAllDocumentPages(oldDocumentPages); + storageService.storeProtoObject(TenantContext.getTenantId(), newDocumentPagesStorageId, newDocumentPages); + //storageService.deleteObject(TenantContext.getTenantId(), oldDocumentPagesStorageId); + } catch (StorageObjectDoesNotExist e) { + log.info("No document pages found for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } catch (IOException e) { + log.error("Document pages could not be mapped for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } + + String oldDocumentPositionDataStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_POSITION.name(), ".json"); + String newDocumentPositionDataStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_POSITION); + try (InputStream inputStream = fileManagementStorageService.getObject(TenantContext.getTenantId(), oldDocumentPositionDataStorageId)) { + DocumentPositionData[] oldDocumentPositionData = objectMapper.readValue(inputStream, DocumentPositionData[].class); + DocumentPositionDataProto.AllDocumentPositionData newDocumentPositionData = convertAllDocumentPositionData(oldDocumentPositionData); + storageService.storeProtoObject(TenantContext.getTenantId(), newDocumentPositionDataStorageId, newDocumentPositionData); + //storageService.deleteObject(TenantContext.getTenantId(), oldDocumentPositionDataStorageId); + } catch (StorageObjectDoesNotExist e) { + log.info("No document position data found for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } catch (IOException e) { + log.error("Document position data could not be mapped for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } + + String oldDocumentTextDataStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_TEXT.name(), ".json"); + String newDocumentTextDataStorageId = StorageIdUtils.getStorageId(file.getDossierId(), file.getId(), FileType.DOCUMENT_TEXT); + try (InputStream inputStream = fileManagementStorageService.getObject(TenantContext.getTenantId(), oldDocumentTextDataStorageId)) { + DocumentTextData[] oldDocumentTextData = objectMapper.readValue(inputStream, DocumentTextData[].class); + DocumentTextDataProto.AllDocumentTextData newDocumentTextData = convertAllDocumentTextData(oldDocumentTextData); + storageService.storeProtoObject(TenantContext.getTenantId(), newDocumentTextDataStorageId, newDocumentTextData); + //storageService.deleteObject(TenantContext.getTenantId(), oldDocumentTextDataStorageId); + } catch (StorageObjectDoesNotExist e) { + log.info("No document text data found for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } catch (IOException e) { + log.error("Document text data could not be mapped for {}, {}, ignoring....", file.getDossierId(), file.getId()); + } + }); + fileStatusPersistenceService.setProtobufMigrationDoneForFiles(files.stream() + .map(FileEntity::getId) + .toList()); + } + } + + + private static EntryDataProto.EntryData convertEntryData(DocumentStructure.EntryData oldEntryData) { + + EntryDataProto.EntryData.Builder builder = EntryDataProto.EntryData.newBuilder(); + + builder.setType(NodeTypeProto.NodeType.valueOf(oldEntryData.getType().name())); + builder.addAllTreeId(Arrays.stream(oldEntryData.getTreeId()).boxed() + .collect(Collectors.toList())); + builder.addAllAtomicBlockIds(Arrays.asList(oldEntryData.getAtomicBlockIds())); + builder.addAllPageNumbers(Arrays.asList(oldEntryData.getPageNumbers())); + + builder.putAllProperties(oldEntryData.getProperties()); + + if (oldEntryData.getChildren() != null) { + oldEntryData.getChildren() + .forEach(child -> builder.addChildren(convertEntryData(child))); + } + + builder.addAllEngines(oldEntryData.getEngines() + .stream() + .map(DocumentDataFilesConversionJob::convertLayoutEngine) + .toList()); + + return builder.build(); + } + + + private static LayoutEngineProto.LayoutEngine convertLayoutEngine(LayoutEngine oldLayoutEngine) { + + return LayoutEngineProto.LayoutEngine.valueOf(oldLayoutEngine.name()); + } + + + private static DocumentStructureProto.DocumentStructure convertDocumentStructure(DocumentStructure oldStructure) { + + DocumentStructureProto.DocumentStructure.Builder newBuilder = DocumentStructureProto.DocumentStructure.newBuilder(); + + if (oldStructure.getRoot() != null) { + newBuilder.setRoot(convertEntryData(oldStructure.getRoot())); + } + + return newBuilder.build(); + } + + + private static DocumentPageProto.DocumentPage convertDocumentPage(DocumentPage oldPage) { + + return DocumentPageProto.DocumentPage.newBuilder() + .setNumber(oldPage.getNumber()) + .setHeight(oldPage.getHeight()) + .setWidth(oldPage.getWidth()) + .setRotation(oldPage.getRotation()) + .build(); + } + + + private static DocumentPageProto.AllDocumentPages convertAllDocumentPages(DocumentPage[] oldPages) { + + DocumentPageProto.AllDocumentPages.Builder allPagesBuilder = DocumentPageProto.AllDocumentPages.newBuilder(); + + for (DocumentPage oldPage : oldPages) { + DocumentPageProto.DocumentPage newPage = convertDocumentPage(oldPage); + allPagesBuilder.addDocumentPages(newPage); + } + + return allPagesBuilder.build(); + } + + + private static DocumentPositionDataProto.DocumentPositionData convertDocumentPositionData(DocumentPositionData oldData) { + + DocumentPositionDataProto.DocumentPositionData.Builder builder = DocumentPositionDataProto.DocumentPositionData.newBuilder() + .setId(oldData.getId()) + .addAllStringIdxToPositionIdx(Arrays.stream(oldData.getStringIdxToPositionIdx()).boxed() + .collect(Collectors.toList())); + + for (float[] pos : oldData.getPositions()) { + DocumentPositionDataProto.DocumentPositionData.Position position = DocumentPositionDataProto.DocumentPositionData.Position.newBuilder() + .addAllValue(Floats.asList(pos)) + .build(); + builder.addPositions(position); + } + + return builder.build(); + } + + + private static DocumentPositionDataProto.AllDocumentPositionData convertAllDocumentPositionData(DocumentPositionData[] oldDataList) { + + DocumentPositionDataProto.AllDocumentPositionData.Builder allDataBuilder = DocumentPositionDataProto.AllDocumentPositionData.newBuilder(); + + for (DocumentPositionData oldData : oldDataList) { + allDataBuilder.addDocumentPositionData(convertDocumentPositionData(oldData)); + } + + return allDataBuilder.build(); + } + + + private static DocumentTextDataProto.DocumentTextData convertDocumentTextData(DocumentTextData oldData) { + + DocumentTextDataProto.DocumentTextData.Builder builder = DocumentTextDataProto.DocumentTextData.newBuilder() + .setId(oldData.getId()) + .setPage(oldData.getPage()) + .setSearchText(oldData.getSearchText()) + .setNumberOnPage(oldData.getNumberOnPage()) + .setStart(oldData.getStart()) + .setEnd(oldData.getEnd()) + .addAllLineBreaks(Arrays.stream(oldData.getLineBreaks()).boxed() + .collect(Collectors.toList())); + + return builder.build(); + } + + + private static DocumentTextDataProto.AllDocumentTextData convertAllDocumentTextData(DocumentTextData[] oldDataList) { + + DocumentTextDataProto.AllDocumentTextData.Builder allDataBuilder = DocumentTextDataProto.AllDocumentTextData.newBuilder(); + + for (DocumentTextData oldData : oldDataList) { + allDataBuilder.addDocumentTextData(convertDocumentTextData(oldData)); + } + + return allDataBuilder.build(); + } + +} diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/layoutparsing/ChunkingRequestFactory.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/layoutparsing/ChunkingRequestFactory.java index bfcc11f53..51543ada0 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/layoutparsing/ChunkingRequestFactory.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/layoutparsing/ChunkingRequestFactory.java @@ -14,13 +14,22 @@ public class ChunkingRequestFactory { private static final String STRUCTURE = "structure"; - public PyInfraRequest createChunkingRequest(String dossierId, String fileId) { + public PyInfraRequest createChunkingRequest(String dossierId, String fileId, boolean protoFileExists) { PyInfraRequest pyInfraRequest = new PyInfraRequest(dossierId, fileId); - pyInfraRequest.addTargetFilePath(PAGES, FileType.DOCUMENT_PAGES); - pyInfraRequest.addTargetFilePath(TEXT_BLOCKS, FileType.DOCUMENT_TEXT); - pyInfraRequest.addTargetFilePath(TEXT_POSITIONS, FileType.DOCUMENT_POSITION); - pyInfraRequest.addTargetFilePath(STRUCTURE, FileType.DOCUMENT_STRUCTURE); + + if (protoFileExists) { + pyInfraRequest.addTargetFilePath(PAGES, FileType.DOCUMENT_PAGES); + pyInfraRequest.addTargetFilePath(TEXT_BLOCKS, FileType.DOCUMENT_TEXT); + pyInfraRequest.addTargetFilePath(TEXT_POSITIONS, FileType.DOCUMENT_POSITION); + pyInfraRequest.addTargetFilePath(STRUCTURE, FileType.DOCUMENT_STRUCTURE); + } else { + pyInfraRequest.addTargetFilePath(PAGES, FileType.DOCUMENT_PAGES.name(), FileType.DOCUMENT_PAGES_OLD.getExtension()); + pyInfraRequest.addTargetFilePath(TEXT_BLOCKS, FileType.DOCUMENT_TEXT.name(), FileType.DOCUMENT_TEXT_OLD.getExtension()); + pyInfraRequest.addTargetFilePath(TEXT_POSITIONS, FileType.DOCUMENT_POSITION.name(), FileType.DOCUMENT_POSITION_OLD.getExtension()); + pyInfraRequest.addTargetFilePath(STRUCTURE, FileType.DOCUMENT_STRUCTURE.name(), FileType.DOCUMENT_STRUCTURE_OLD.getExtension()); + } + pyInfraRequest.setResponseFilePath(FileType.DOCUMENT_CHUNKS); return pyInfraRequest; } diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/FileStatusPersistenceService.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/FileStatusPersistenceService.java index c912beb14..599fad8fe 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/FileStatusPersistenceService.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/FileStatusPersistenceService.java @@ -690,5 +690,12 @@ public class FileStatusPersistenceService { } + @Transactional + public void setProtobufMigrationDoneForFiles(List fileIds) { + + fileRepository.setProtobufMigrationDone(fileIds); + } + + } diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/repository/FileRepository.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/repository/FileRepository.java index c5fb6f0e1..8b49d8cc3 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/repository/FileRepository.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/repository/FileRepository.java @@ -4,6 +4,7 @@ import java.time.OffsetDateTime; import java.util.List; import java.util.Optional; +import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Query; @@ -421,6 +422,16 @@ public interface FileRepository extends JpaRepository { @Query("SELECT f FROM FileEntity f WHERE f.hardDeletedTime IS NULL AND f.deleted IS NOT NULL AND f.deleted < :deletionThreshold") List findFilesSoftDeletedBefore(@Param("deletionThreshold") OffsetDateTime deletionThreshold); + + @Query("SELECT f FROM FileEntity f WHERE f.protobufMigrationDone = false") + List findByProtobufMigrationDoneFalse(Pageable pageable); + + @Modifying + @Query("update FileEntity f set f.protobufMigrationDone = true " + + "where f.id in (:fileIds)") + void setProtobufMigrationDone(@Param("fileIds") List fileIds); + + } diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/queue/LayoutParsingFinishedMessageReceiver.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/queue/LayoutParsingFinishedMessageReceiver.java index d6bf709d7..c10a40bf7 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/queue/LayoutParsingFinishedMessageReceiver.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/queue/LayoutParsingFinishedMessageReceiver.java @@ -70,7 +70,7 @@ public class LayoutParsingFinishedMessageReceiver { websocketService.sendAnalysisEvent(dossierId, fileId, AnalyseStatus.LAYOUT_UPDATE, fileStatusService.getStatus(fileId).getNumberOfAnalyses() + 1); try { - imageSimilarityService.saveImages(templateId, dossierId, fileId, storageId); + imageSimilarityService.saveImages(templateId, dossierId, fileId); } catch (Exception e) { log.error("Error occured during save images: {} ", e.getMessage(), e); throw e; diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/utils/StorageIdUtils.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/utils/StorageIdUtils.java index 01a053bb0..a876973a9 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/utils/StorageIdUtils.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/utils/StorageIdUtils.java @@ -12,6 +12,11 @@ public final class StorageIdUtils { return dossierId + "/" + fileId + "." + fileType.name() + fileType.getExtension(); } + public static String getStorageId(String dossierId, String fileId, String fileName, String fileExtension) { + + return dossierId + "/" + fileId + "." + fileName + fileExtension; + } + public static String getStorageId(String userId, String dossierId, String filename) { diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/db.changelog-tenant.yaml b/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/db.changelog-tenant.yaml index 03fdb812a..308035b3e 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/db.changelog-tenant.yaml +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/db.changelog-tenant.yaml @@ -228,4 +228,6 @@ databaseChangeLog: - include: file: db/changelog/tenant/142-add-date-formats-table.yaml - include: - file: db/changelog/tenant/143-modify-download-redaction-file-status-details.yaml \ No newline at end of file + file: db/changelog/tenant/143-modify-download-redaction-file-status-details.yaml + - include: + file: db/changelog/tenant/144-add-protobuf-migration-done-to-file.yaml \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/tenant/144-add-protobuf-migration-done-to-file.yaml b/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/tenant/144-add-protobuf-migration-done-to-file.yaml new file mode 100644 index 000000000..b2b148d15 --- /dev/null +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/resources/db/changelog/tenant/144-add-protobuf-migration-done-to-file.yaml @@ -0,0 +1,12 @@ +databaseChangeLog: + - changeSet: + id: add-protobuf-migration-done-to-file + author: maverick + changes: + - addColumn: + columns: + - column: + name: protobuf_migration_done + type: BOOLEAN + defaultValueBoolean: false + tableName: file diff --git a/persistence-service-v1/persistence-service-server-v1/build.gradle.kts b/persistence-service-v1/persistence-service-server-v1/build.gradle.kts index 333d4a311..3a667d791 100644 --- a/persistence-service-v1/persistence-service-server-v1/build.gradle.kts +++ b/persistence-service-v1/persistence-service-server-v1/build.gradle.kts @@ -23,7 +23,7 @@ dependencies { api(project(":persistence-service-external-api-impl-v2")) api(project(":persistence-service-internal-api-impl-v1")) api(project(":persistence-service-shared-mongo-v1")) - api("com.iqser.red.commons:storage-commons:2.49.0") + api("com.iqser.red.commons:storage-commons:2.50.0") api("junit:junit:4.13.2") api("org.apache.logging.log4j:log4j-slf4j-impl:2.20.0") api("net.logstash.logback:logstash-logback-encoder:7.4") @@ -34,6 +34,7 @@ dependencies { testImplementation("org.testcontainers:postgresql:1.17.1") testImplementation("org.springframework.boot:spring-boot-starter-test:3.0.4") testImplementation("com.yannbriancon:spring-hibernate-query-utils:2.0.0") + testImplementation("com.google.protobuf:protobuf-java:4.27.1") } description = "persistence-service-server-v1" diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/Application.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/Application.java index eb861dfe6..179595ccc 100644 --- a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/Application.java +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/Application.java @@ -72,7 +72,6 @@ import lombok.extern.slf4j.Slf4j; @ImportAutoConfiguration({StorageAutoConfiguration.class, JobsAutoConfiguration.class, DatabaseTenantCommonsAutoConfiguration.class, MultiTenancyAutoConfiguration.class, SpringDocAutoConfiguration.class, DefaultKeyCloakCommonsAutoConfiguration.class, MongoDatabaseCommonsAutoConfiguration.class}) @SpringBootApplication(exclude = {SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class, CassandraAutoConfiguration.class, DataSourceAutoConfiguration.class, LiquibaseAutoConfiguration.class, MongoAutoConfiguration.class, MongoDataAutoConfiguration.class}) @Import({PersistenceServiceExternalApiConfigurationV2.class, PersistenceServiceExternalApiConfiguration.class, PersistenceServiceInternalApiConfiguration.class, PersistenceServiceExternalApiCacheConfiguration.class, MultiTenancyWebConfiguration.class, PersistenceServiceProcessorConfiguration.class, MessagingConfiguration.class, MultiTenancyMessagingConfiguration.class}) -@EnableAspectJAutoProxy public class Application implements ApplicationContextAware { /** diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/FileTest.java b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/FileTest.java index 27cb1fc14..3c89bbb6b 100644 --- a/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/FileTest.java +++ b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/FileTest.java @@ -1,6 +1,7 @@ package com.iqser.red.service.peristence.v1.server.integration.tests; import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; @@ -11,6 +12,8 @@ import static org.mockito.Mockito.when; import java.io.ByteArrayInputStream; import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Collections; @@ -24,6 +27,8 @@ import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.io.ClassPathResource; +import org.springframework.core.io.InputStreamResource; import org.springframework.mock.web.MockMultipartFile; import com.github.dockerjava.zerodep.shaded.org.apache.commons.codec.binary.Base64; @@ -51,8 +56,10 @@ import com.iqser.red.service.persistence.management.v1.processor.service.FileDel import com.iqser.red.service.persistence.management.v1.processor.service.FileManagementStorageService; import com.iqser.red.service.persistence.management.v1.processor.service.FileStatusService; import com.iqser.red.service.persistence.management.v1.processor.service.job.DeletedFilesCleanupJob; +import com.iqser.red.service.persistence.management.v1.processor.service.job.DocumentDataFilesConversionJob; import com.iqser.red.service.persistence.management.v1.processor.service.job.SoftDeletedFilesCleanupJob; import com.iqser.red.service.persistence.management.v1.processor.service.persistence.FileAttributeConfigPersistenceService; +import com.iqser.red.service.persistence.management.v1.processor.utils.StorageIdUtils; import com.iqser.red.service.persistence.service.v1.api.shared.model.DossierTemplateModel; import com.iqser.red.service.persistence.service.v1.api.shared.model.FileAttributes; import com.iqser.red.service.persistence.service.v1.api.shared.model.FileAttributesConfig; @@ -80,6 +87,11 @@ import com.iqser.red.service.persistence.service.v1.api.shared.model.manual.Forc import com.iqser.red.service.persistence.service.v1.api.shared.model.manual.LegalBasisChangeRequestModel; import com.iqser.red.service.persistence.service.v1.api.shared.model.manual.RecategorizationRequestModel; import com.iqser.red.service.persistence.service.v1.api.shared.model.manual.RemoveRedactionRequestModel; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentPageProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentPositionDataProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentStructureProto; +import com.knecon.fforesight.service.layoutparser.internal.api.data.redaction.DocumentTextDataProto; +import com.knecon.fforesight.tenantcommons.TenantContext; import com.knecon.fforesight.tenantcommons.model.TenantResponse; import feign.FeignException; @@ -147,6 +159,9 @@ public class FileTest extends AbstractPersistenceServerServiceTest { @Autowired private SoftDeletedFilesCleanupJob softDeletedFilesCleanupJob; + @Autowired + private DocumentDataFilesConversionJob documentDataFilesConversionJob; + @Test public void testFileSoftDeleteReupload() { @@ -894,7 +909,7 @@ public class FileTest extends AbstractPersistenceServerServiceTest { assertNotNull(fileStatusService.getDossierStatus(dossierId) .get(0).getDeleted()); assertNotNull(fileStatusService.getDossierStatus(dossierId) - .get(1).getHardDeletedTime()); + .get(1).getHardDeletedTime()); assertNotNull(fileStatusService.getDossierStatus(dossierId) .get(1).getDeleted()); @@ -909,7 +924,6 @@ public class FileTest extends AbstractPersistenceServerServiceTest { assertNotNull(otherFileModel.get().getHardDeletedTime()); assertNotNull(otherFileModel.get().getDeleted()); - Optional fileModel = fileStatusService.getDossierStatus(dossierId) .stream() .filter(fm -> fm.getId().equals(fileId)) @@ -977,4 +991,209 @@ public class FileTest extends AbstractPersistenceServerServiceTest { deletedFilesCleanupJob.execute(null); } + + @Test + @SneakyThrows + public void testDocumentDataFilesConversionJobSuccessful() { + + var dossierTemplate = dossierTemplateTesterAndProvider.provideTestTemplate(); + + var dossier = dossierTesterAndProvider.provideTestDossier(dossierTemplate); + String dossierId = dossier.getId(); + + var file = fileTesterAndProvider.testAndProvideFile(dossier); + String fileId = file.getId(); + + String oldDocumentStructureStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE.name(), ".json"); + String newDocumentStructureStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); + String oldDocumentPagesStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_PAGES.name(), ".json"); + String newDocumentPagesStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_PAGES); + String oldDocumentPositionDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_POSITION.name(), ".json"); + String newDocumentPositionDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_POSITION); + String oldDocumentTextDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_TEXT.name(), ".json"); + String newDocumentTextDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_TEXT); + + ClassPathResource oldDocumentStructureClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_STRUCTURE.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentStructureStorageId, oldDocumentStructureClassPath.getInputStream()); + ClassPathResource oldDocumentPagesClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_PAGES.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentPagesStorageId, oldDocumentPagesClassPath.getInputStream()); + ClassPathResource oldDocumentPositionDataClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_POSITION.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentPositionDataStorageId, oldDocumentPositionDataClassPath.getInputStream()); + ClassPathResource oldDocumentTextDataClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_TEXT.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentTextDataStorageId, oldDocumentTextDataClassPath.getInputStream()); + + when(this.tenantsClient.getTenants()).thenReturn(List.of(TenantResponse.builder().tenantId("redaction").details(Map.of("persistence-service-ready", true)).build())); + documentDataFilesConversionJob.execute(null); + + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_STRUCTURE)); + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_TEXT)); + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_PAGES)); + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_POSITION)); + + DocumentStructureProto.DocumentStructure documentStructure = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentStructureStorageId, + DocumentStructureProto.DocumentStructure.parser()); + assertEquals(documentStructure.getRoot().getPageNumbersList().size(), 9); + + DocumentPageProto.AllDocumentPages allDocumentPages = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentPagesStorageId, + DocumentPageProto.AllDocumentPages.parser()); + assertEquals(allDocumentPages.getDocumentPagesList().size(), 9); + + DocumentTextDataProto.AllDocumentTextData allDocumentTextData = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentTextDataStorageId, + DocumentTextDataProto.AllDocumentTextData.parser()); + assertEquals(allDocumentTextData.getDocumentTextDataCount(), 114); + + DocumentPositionDataProto.AllDocumentPositionData allDocumentPositionData = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentPositionDataStorageId, + DocumentPositionDataProto.AllDocumentPositionData.parser()); + assertEquals(allDocumentPositionData.getDocumentPositionDataList().size(), 114); + + } + + + @Test + @SneakyThrows + @Disabled + public void serializeDocumentDataFiles() { + + var dossierTemplate = dossierTemplateTesterAndProvider.provideTestTemplate(); + + var dossier = dossierTesterAndProvider.provideTestDossier(dossierTemplate); + String dossierId = dossier.getId(); + + var file = fileTesterAndProvider.testAndProvideFile(dossier); + String fileId = file.getId(); + + String newDocumentStructureStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); + String newDocumentPagesStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_PAGES); + String newDocumentPositionDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_POSITION); + String newDocumentTextDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_TEXT); + + ClassPathResource newDocumentStructureClassPath = new ClassPathResource("files/newDocumentData/new.DOCUMENT_STRUCTURE.proto"); + storageService.storeObject(TenantContext.getTenantId(), newDocumentStructureStorageId, newDocumentStructureClassPath.getInputStream()); + ClassPathResource newDocumentPagesClassPath = new ClassPathResource("files/newDocumentData/new.DOCUMENT_PAGES.proto"); + storageService.storeObject(TenantContext.getTenantId(), newDocumentPagesStorageId, newDocumentPagesClassPath.getInputStream()); + ClassPathResource newDocumentPositionDataClassPath = new ClassPathResource("files/newDocumentData/new.DOCUMENT_POSITION.proto"); + storageService.storeObject(TenantContext.getTenantId(), newDocumentPositionDataStorageId, newDocumentPositionDataClassPath.getInputStream()); + ClassPathResource newDocumentTextDataClassPath = new ClassPathResource("files/newDocumentData/new.DOCUMENT_TEXT.proto"); + storageService.storeObject(TenantContext.getTenantId(), newDocumentTextDataStorageId, newDocumentTextDataClassPath.getInputStream()); + + + + DocumentStructureProto.DocumentStructure documentStructure = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentStructureStorageId, + DocumentStructureProto.DocumentStructure.parser()); + + DocumentPageProto.AllDocumentPages allDocumentPages = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentPagesStorageId, + DocumentPageProto.AllDocumentPages.parser()); + + DocumentTextDataProto.AllDocumentTextData allDocumentTextData = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentTextDataStorageId, + DocumentTextDataProto.AllDocumentTextData.parser()); + + DocumentPositionDataProto.AllDocumentPositionData allDocumentPositionData = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentPositionDataStorageId, + DocumentPositionDataProto.AllDocumentPositionData.parser()); + + + } + + @Test + @SneakyThrows + @Disabled + public void testDocumentDataFilesConversionAndSaveToTempDir() { + + var dossierTemplate = dossierTemplateTesterAndProvider.provideTestTemplate(); + var dossier = dossierTesterAndProvider.provideTestDossier(dossierTemplate); + String dossierId = dossier.getId(); + var file = fileTesterAndProvider.testAndProvideFile(dossier); + String fileId = file.getId(); + + String oldDocumentStructureStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE.name(), ".json"); + String oldDocumentPagesStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_PAGES.name(), ".json"); + String oldDocumentPositionDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_POSITION.name(), ".json"); + String oldDocumentTextDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_TEXT.name(), ".json"); + + String newDocumentStructureStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_STRUCTURE); + String newDocumentPagesStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_PAGES); + String newDocumentPositionDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_POSITION); + String newDocumentTextDataStorageId = StorageIdUtils.getStorageId(dossierId, fileId, FileType.DOCUMENT_TEXT); + + ClassPathResource oldDocumentStructureClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_STRUCTURE.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentStructureStorageId, oldDocumentStructureClassPath.getInputStream()); + ClassPathResource oldDocumentPagesClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_PAGES.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentPagesStorageId, oldDocumentPagesClassPath.getInputStream()); + ClassPathResource oldDocumentPositionDataClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_POSITION.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentPositionDataStorageId, oldDocumentPositionDataClassPath.getInputStream()); + ClassPathResource oldDocumentTextDataClassPath = new ClassPathResource("files/oldDocumentData/old.DOCUMENT_TEXT.json"); + storageService.storeObject(TenantContext.getTenantId(), oldDocumentTextDataStorageId, oldDocumentTextDataClassPath.getInputStream()); + + when(this.tenantsClient.getTenants()).thenReturn(List.of(TenantResponse.builder().tenantId("redaction").details(Map.of("persistence-service-ready", true)).build())); + + documentDataFilesConversionJob.execute(null); + + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_STRUCTURE)); + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_TEXT)); + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_PAGES)); + Assertions.assertTrue(fileManagementStorageService.objectExists(dossierId, fileId, FileType.DOCUMENT_POSITION)); + + DocumentStructureProto.DocumentStructure documentStructure = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentStructureStorageId, + DocumentStructureProto.DocumentStructure.parser()); + DocumentPageProto.AllDocumentPages allDocumentPages = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentPagesStorageId, + DocumentPageProto.AllDocumentPages.parser()); + DocumentTextDataProto.AllDocumentTextData allDocumentTextData = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentTextDataStorageId, + DocumentTextDataProto.AllDocumentTextData.parser()); + DocumentPositionDataProto.AllDocumentPositionData allDocumentPositionData = storageService.readProtoObject(TenantContext.getTenantId(), + newDocumentPositionDataStorageId, + DocumentPositionDataProto.AllDocumentPositionData.parser()); + + String tempDir = "/tmp"; + + Path documentStructurePath = Path.of(tempDir, "new.DOCUMENT_STRUCTURE.proto"); + Files.write(documentStructurePath, documentStructure.toByteArray()); + Path documentPagesPath = Path.of(tempDir, "new.DOCUMENT_PAGES.proto"); + Files.write(documentPagesPath, allDocumentPages.toByteArray()); + Path documentTextPath = Path.of(tempDir, "new.DOCUMENT_TEXT.proto"); + Files.write(documentTextPath, allDocumentTextData.toByteArray()); + Path documentPositionPath = Path.of(tempDir, "new.DOCUMENT_POSITION.proto"); + Files.write(documentPositionPath, allDocumentPositionData.toByteArray()); + + Assertions.assertTrue(Files.exists(documentStructurePath)); + Assertions.assertTrue(Files.exists(documentPagesPath)); + Assertions.assertTrue(Files.exists(documentTextPath)); + Assertions.assertTrue(Files.exists(documentPositionPath)); + } + + + @Test + @Disabled + public void testParseProtoFiles() throws Exception { + String tempDir = "/tmp"; + + Path documentStructurePath = Path.of(tempDir, "new.DOCUMENT_STRUCTURE.proto"); + Path documentPagesPath = Path.of(tempDir, "new.DOCUMENT_PAGES.proto"); + Path documentTextPath = Path.of(tempDir, "new.DOCUMENT_TEXT.proto"); + Path documentPositionPath = Path.of(tempDir, "new.DOCUMENT_POSITION.proto"); + + byte[] documentStructureBytes = Files.readAllBytes(documentStructurePath); + byte[] documentPagesBytes = Files.readAllBytes(documentPagesPath); + byte[] documentTextBytes = Files.readAllBytes(documentTextPath); + byte[] documentPositionBytes = Files.readAllBytes(documentPositionPath); + + DocumentStructureProto.DocumentStructure documentStructure = + DocumentStructureProto.DocumentStructure.parseFrom(documentStructureBytes); + DocumentPageProto.AllDocumentPages allDocumentPages = + DocumentPageProto.AllDocumentPages.parseFrom(documentPagesBytes); + DocumentTextDataProto.AllDocumentTextData allDocumentTextData = + DocumentTextDataProto.AllDocumentTextData.parseFrom(documentTextBytes); + DocumentPositionDataProto.AllDocumentPositionData allDocumentPositionData = + DocumentPositionDataProto.AllDocumentPositionData.parseFrom(documentPositionBytes); + } + } diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/fileexchange/EFSA sanitisation GFL v1_file-exchange.zip b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/fileexchange/EFSA sanitisation GFL v1_file-exchange.zip index 4d78d48d19e61ebf63be80d06b1eb8b750f94fc8..96770cec58da4303ef9dcbb6024fbebfe90ccb13 100644 GIT binary patch delta 55168 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 Nux7DFQ{WF|{R=L7h0y>2 delta 66280 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 G+W!I!*z5BE diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_PAGES.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_PAGES.json new file mode 100644 index 000000000..4d7ef9a50 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_PAGES.json @@ -0,0 +1,56 @@ +[ + { + "number": 1, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 2, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 3, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 4, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 5, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 6, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 7, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 8, + "height": 792, + "width": 612, + "rotation": 0 + }, + { + "number": 9, + "height": 792, + "width": 612, + "rotation": 0 + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_POSITION.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_POSITION.json new file mode 100644 index 000000000..569dee96b --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_POSITION.json @@ -0,0 +1,59458 @@ +[ + { + "id": 0, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 12, + 13, + 14, + 15, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ], + "positions": [ + [ + 56.8, + 436.7, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 436.7, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 436.7, + 4.6952972, + 13.867801 + ], + [ + 107.672806, + 436.7, + 9.390602, + 13.867801 + ], + [ + 117.06341, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 124.86071, + 436.7, + 8.601006, + 13.867801 + ], + [ + 133.54631, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 141.34361, + 436.7, + 8.600998, + 13.867801 + ], + [ + 149.94461, + 436.7, + 8.600998, + 13.867801 + ], + [ + 162.5359, + 436.7, + 10.180206, + 13.867801 + ], + [ + 172.63152, + 436.7, + 10.180206, + 13.867801 + ], + [ + 182.81172, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 190.11552, + 436.7, + 10.180206, + 13.867801 + ], + [ + 200.29573, + 436.7, + 8.600998, + 13.867801 + ], + [ + 208.89673, + 436.7, + 4.6952972, + 13.867801 + ], + [ + 213.59203, + 436.7, + 8.600998, + 13.867801 + ], + [ + 222.19302, + 436.7, + 8.600998, + 13.867801 + ], + [ + 230.79402, + 436.7, + 5.484894, + 13.867801 + ], + [ + 236.27892, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 248.06651, + 436.7, + 10.955704, + 13.867801 + ], + [ + 259.0504, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 262.95612, + 436.7, + 4.6953125, + 13.867801 + ], + [ + 267.65143, + 436.7, + 8.601013, + 13.867801 + ], + [ + 280.15814, + 436.7, + 4.6953125, + 13.867801 + ], + [ + 284.85345, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 288.75916, + 436.7, + 5.484894, + 13.867801 + ], + [ + 294.24405, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 302.04135, + 436.7, + 4.6953125, + 13.867801 + ], + [ + 306.73666, + 436.7, + 8.601013, + 13.867801 + ], + [ + 315.33768, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 323.21957, + 436.7, + 12.534912, + 13.867801 + ], + [ + 335.7263, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 347.5139, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 351.4196, + 436.7, + 8.601013, + 13.867801 + ], + [ + 360.0206, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 363.9263, + 436.7, + 4.6953125, + 13.867801 + ], + [ + 368.6216, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 372.5273, + 436.7, + 7.8395996, + 13.867801 + ], + [ + 380.4092, + 436.7, + 3.9057007, + 13.867801 + ], + [ + 384.3149, + 436.7, + 7.8395996, + 13.867801 + ] + ] + }, + { + "id": 1, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57 + ], + "positions": [ + [ + 56.8, + 416.5, + 6.672001, + 12.642 + ], + [ + 62.5, + 416.5, + 3.0, + 12.642 + ], + [ + 68.5, + 416.5, + 7.3199997, + 12.642 + ], + [ + 75.796, + 416.5, + 5.316002, + 12.642 + ], + [ + 81.1, + 416.5, + 4.6679993, + 12.642 + ], + [ + 85.792, + 416.5, + 3.3239975, + 12.642 + ], + [ + 89.091995, + 416.5, + 6.0, + 12.642 + ], + [ + 95.091995, + 416.5, + 5.316002, + 12.642 + ], + [ + 100.479996, + 416.5, + 9.3239975, + 12.642 + ], + [ + 109.77999, + 416.5, + 5.316002, + 12.642 + ], + [ + 115.08399, + 416.5, + 3.0, + 12.642 + ], + [ + 121.08399, + 416.5, + 4.6679993, + 12.642 + ], + [ + 125.77599, + 416.5, + 3.0000076, + 12.642 + ], + [ + 131.776, + 416.5, + 8.664001, + 12.642 + ], + [ + 140.464, + 416.5, + 6.0, + 12.642 + ], + [ + 146.464, + 416.5, + 5.3159943, + 12.642 + ], + [ + 151.768, + 416.5, + 3.0, + 12.642 + ], + [ + 157.768, + 416.5, + 10.667999, + 12.642 + ], + [ + 168.46, + 416.5, + 3.0, + 12.642 + ], + [ + 174.46, + 416.5, + 10.667999, + 12.642 + ], + [ + 185.056, + 416.5, + 6.0, + 12.642 + ], + [ + 191.056, + 416.5, + 4.6679993, + 12.642 + ], + [ + 195.748, + 416.5, + 3.3240051, + 12.642 + ], + [ + 199.048, + 416.5, + 5.3159943, + 12.642 + ], + [ + 204.352, + 416.5, + 3.9960022, + 12.642 + ], + [ + 208.348, + 416.5, + 9.324005, + 12.642 + ], + [ + 217.73201, + 416.5, + 5.3159943, + 12.642 + ], + [ + 223.03601, + 416.5, + 6.0, + 12.642 + ], + [ + 229.03601, + 416.5, + 6.0, + 12.642 + ], + [ + 56.8, + 402.7, + 7.3200035, + 12.642 + ], + [ + 64.096, + 402.7, + 5.316002, + 12.642 + ], + [ + 69.4, + 402.7, + 4.6679993, + 12.642 + ], + [ + 74.092, + 402.7, + 3.3239975, + 12.642 + ], + [ + 77.392, + 402.7, + 6.0, + 12.642 + ], + [ + 83.392, + 402.7, + 5.316002, + 12.642 + ], + [ + 88.696, + 402.7, + 9.3239975, + 12.642 + ], + [ + 98.079994, + 402.7, + 5.316002, + 12.642 + ], + [ + 106.383995, + 402.7, + 10.667999, + 12.642 + ], + [ + 117.076, + 402.7, + 3.0, + 12.642 + ], + [ + 120.076, + 402.7, + 3.0, + 12.642 + ], + [ + 126.076, + 402.7, + 8.663994, + 12.642 + ], + [ + 134.76399, + 402.7, + 6.0, + 12.642 + ], + [ + 140.76399, + 402.7, + 5.3159943, + 12.642 + ], + [ + 149.068, + 402.7, + 4.6679993, + 12.642 + ], + [ + 153.66399, + 402.7, + 3.0, + 12.642 + ], + [ + 159.66399, + 402.7, + 10.667999, + 12.642 + ], + [ + 170.35599, + 402.7, + 6.0, + 12.642 + ], + [ + 176.35599, + 402.7, + 4.6679993, + 12.642 + ], + [ + 181.04799, + 402.7, + 3.3240051, + 12.642 + ], + [ + 184.34799, + 402.7, + 5.3159943, + 12.642 + ], + [ + 189.652, + 402.7, + 3.9960022, + 12.642 + ], + [ + 193.648, + 402.7, + 9.324005, + 12.642 + ], + [ + 202.948, + 402.7, + 5.3159943, + 12.642 + ], + [ + 208.252, + 402.7, + 6.0, + 12.642 + ], + [ + 214.252, + 402.7, + 6.0, + 12.642 + ], + [ + 223.336, + 402.7, + 10.667999, + 12.642 + ], + [ + 234.028, + 402.7, + 3.0, + 12.642 + ] + ] + }, + { + "id": 2, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35 + ], + "positions": [ + [ + 56.8, + 352.3, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 352.3, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 352.3, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 352.3, + 3.9057007, + 13.867801 + ], + [ + 102.97751, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 110.77481, + 352.3, + 4.6952972, + 13.867801 + ], + [ + 119.46041, + 352.3, + 10.180199, + 13.867801 + ], + [ + 129.64061, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 137.43791, + 352.3, + 8.600998, + 13.867801 + ], + [ + 146.03891, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 153.83621, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 161.63351, + 352.3, + 4.6952972, + 13.867801 + ], + [ + 170.3191, + 352.3, + 10.180206, + 13.867801 + ], + [ + 180.49931, + 352.3, + 10.180206, + 13.867801 + ], + [ + 190.67952, + 352.3, + 3.9057007, + 13.867801 + ], + [ + 197.98332, + 352.3, + 10.180206, + 13.867801 + ], + [ + 208.16353, + 352.3, + 8.600998, + 13.867801 + ], + [ + 216.76453, + 352.3, + 4.6952972, + 13.867801 + ], + [ + 221.45982, + 352.3, + 8.600998, + 13.867801 + ], + [ + 230.06082, + 352.3, + 8.600998, + 13.867801 + ], + [ + 238.66182, + 352.3, + 5.484894, + 13.867801 + ], + [ + 244.14671, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 255.84972, + 352.3, + 8.600998, + 13.867801 + ], + [ + 264.4507, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 272.3326, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 280.1299, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 287.92722, + 352.3, + 8.601013, + 13.867801 + ], + [ + 300.51852, + 352.3, + 8.601013, + 13.867801 + ], + [ + 309.11954, + 352.3, + 8.601013, + 13.867801 + ], + [ + 321.71085, + 352.3, + 10.180206, + 13.867801 + ], + [ + 331.89105, + 352.3, + 3.9057007, + 13.867801 + ], + [ + 335.79675, + 352.3, + 7.8395996, + 13.867801 + ], + [ + 343.59406, + 352.3, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 3, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 334.0, + 6.1000023, + 11.535 + ], + [ + 62.9, + 334.0, + 4.4300003, + 11.535 + ], + [ + 67.3, + 334.0, + 5.0, + 11.535 + ], + [ + 72.3, + 334.0, + 5.0, + 11.535 + ], + [ + 77.3, + 334.0, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 334.0, + 2.7699966, + 11.535 + ], + [ + 86.99, + 334.0, + 6.659996, + 11.535 + ], + [ + 93.67999, + 334.0, + 5.0, + 11.535 + ], + [ + 98.67999, + 334.0, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 334.0, + 5.0, + 11.535 + ], + [ + 110.66999, + 334.0, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 334.0, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 334.0, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 334.0, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 334.0, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 334.0, + 5.0, + 11.535 + ], + [ + 136.14998, + 334.0, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 334.0, + 5.0, + 11.535 + ], + [ + 145.03998, + 334.0, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 334.0, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 334.0, + 5.0, + 11.535 + ], + [ + 159.72998, + 334.0, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 334.0, + 5.0, + 11.535 + ], + [ + 167.51999, + 334.0, + 5.0, + 11.535 + ], + [ + 172.51999, + 334.0, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 334.0, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 334.0, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 334.0, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 334.0, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 334.0, + 3.8899994, + 11.535 + ], + [ + 56.8, + 322.4, + 6.1000023, + 11.535 + ], + [ + 62.9, + 322.4, + 4.4300003, + 11.535 + ], + [ + 67.3, + 322.4, + 5.0, + 11.535 + ], + [ + 72.3, + 322.4, + 5.0, + 11.535 + ], + [ + 77.3, + 322.4, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 322.4, + 2.7699966, + 11.535 + ], + [ + 86.99, + 322.4, + 6.659996, + 11.535 + ], + [ + 93.67999, + 322.4, + 5.0, + 11.535 + ], + [ + 98.67999, + 322.4, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 322.4, + 5.0, + 11.535 + ], + [ + 110.66999, + 322.4, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 322.4, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 322.4, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 322.4, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 322.4, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 322.4, + 5.0, + 11.535 + ], + [ + 136.14998, + 322.4, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 322.4, + 5.0, + 11.535 + ], + [ + 145.03998, + 322.4, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 322.4, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 322.4, + 5.0, + 11.535 + ], + [ + 159.72998, + 322.4, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 322.4, + 5.0, + 11.535 + ], + [ + 167.51999, + 322.4, + 5.0, + 11.535 + ], + [ + 172.51999, + 322.4, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 322.4, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 322.4, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 322.4, + 6.6600037, + 11.535 + ], + [ + 195.29, + 322.4, + 5.0, + 11.535 + ] + ] + }, + { + "id": 4, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 89, + 90, + 91, + 92, + 92, + 93, + 94, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104 + ], + "positions": [ + [ + 56.8, + 295.2, + 8.663998, + 12.642 + ], + [ + 65.488, + 295.2, + 5.316002, + 12.642 + ], + [ + 70.792, + 295.2, + 6.0, + 12.642 + ], + [ + 76.792, + 295.2, + 3.3239975, + 12.642 + ], + [ + 80.091995, + 295.2, + 6.0, + 12.642 + ], + [ + 89.091995, + 295.2, + 8.664001, + 12.642 + ], + [ + 97.78, + 295.2, + 4.6679993, + 12.642 + ], + [ + 102.472, + 295.2, + 5.316002, + 12.642 + ], + [ + 107.776, + 295.2, + 6.0, + 12.642 + ], + [ + 113.776, + 295.2, + 3.3239975, + 12.642 + ], + [ + 117.076, + 295.2, + 5.316002, + 12.642 + ], + [ + 56.8, + 281.4, + 10.668003, + 12.642 + ], + [ + 67.492004, + 281.4, + 5.316002, + 12.642 + ], + [ + 72.796005, + 281.4, + 6.0, + 12.642 + ], + [ + 81.796005, + 281.4, + 10.667999, + 12.642 + ], + [ + 92.392006, + 281.4, + 6.0, + 12.642 + ], + [ + 98.392006, + 281.4, + 4.6679993, + 12.642 + ], + [ + 103.08401, + 281.4, + 3.3239975, + 12.642 + ], + [ + 106.384, + 281.4, + 5.316002, + 12.642 + ], + [ + 111.688, + 281.4, + 3.9960022, + 12.642 + ], + [ + 115.684006, + 281.4, + 9.3239975, + 12.642 + ], + [ + 125.068, + 281.4, + 5.316002, + 12.642 + ], + [ + 130.37201, + 281.4, + 6.0, + 12.642 + ], + [ + 136.37201, + 281.4, + 6.0, + 12.642 + ], + [ + 56.8, + 267.59998, + 7.9920006, + 12.642 + ], + [ + 64.792, + 267.59998, + 5.316002, + 12.642 + ], + [ + 70.096, + 267.59998, + 6.0, + 12.642 + ], + [ + 76.096, + 267.59998, + 6.0, + 12.642 + ], + [ + 82.096, + 267.59998, + 5.316002, + 12.642 + ], + [ + 90.4, + 267.59998, + 7.3199997, + 12.642 + ], + [ + 97.696, + 267.59998, + 3.3239975, + 12.642 + ], + [ + 100.995995, + 267.59998, + 6.0, + 12.642 + ], + [ + 107.079994, + 267.59998, + 5.316002, + 12.642 + ], + [ + 112.383995, + 267.59998, + 6.0, + 12.642 + ], + [ + 118.383995, + 267.59998, + 6.0, + 12.642 + ], + [ + 124.383995, + 267.59998, + 6.0000076, + 12.642 + ], + [ + 130.384, + 267.59998, + 6.0, + 12.642 + ], + [ + 136.384, + 267.59998, + 9.324005, + 12.642 + ], + [ + 56.8, + 253.80002, + 7.9920006, + 12.642 + ], + [ + 64.792, + 253.80002, + 6.0, + 12.642 + ], + [ + 70.792, + 253.80002, + 5.316002, + 12.642 + ], + [ + 76.096, + 253.80002, + 3.9960022, + 12.642 + ], + [ + 80.092, + 253.80002, + 5.316002, + 12.642 + ], + [ + 85.396, + 253.80002, + 3.3239975, + 12.642 + ], + [ + 88.696, + 253.80002, + 5.316002, + 12.642 + ], + [ + 94.084, + 253.80002, + 9.3239975, + 12.642 + ], + [ + 103.383995, + 253.80002, + 6.0, + 12.642 + ], + [ + 109.383995, + 253.80002, + 6.0, + 12.642 + ], + [ + 115.383995, + 253.80002, + 4.6679993, + 12.642 + ], + [ + 123.076, + 253.80002, + 6.6720047, + 12.642 + ], + [ + 129.76, + 253.80002, + 5.3159943, + 12.642 + ], + [ + 135.064, + 253.80002, + 6.0, + 12.642 + ], + [ + 141.064, + 253.80002, + 5.3159943, + 12.642 + ], + [ + 146.368, + 253.80002, + 6.0, + 12.642 + ], + [ + 152.368, + 253.80002, + 6.0, + 12.642 + ], + [ + 56.8, + 240.00003, + 7.3200035, + 12.642 + ], + [ + 63.304, + 240.00003, + 5.316002, + 12.642 + ], + [ + 68.608, + 240.00003, + 6.0, + 12.642 + ], + [ + 74.608, + 240.00003, + 3.3239975, + 12.642 + ], + [ + 77.908, + 240.00003, + 5.316002, + 12.642 + ], + [ + 86.296, + 240.00003, + 6.671997, + 12.642 + ], + [ + 92.979996, + 240.00003, + 5.316002, + 12.642 + ], + [ + 98.284, + 240.00003, + 6.0, + 12.642 + ], + [ + 104.284, + 240.00003, + 9.3239975, + 12.642 + ], + [ + 113.58399, + 240.00003, + 3.3239975, + 12.642 + ], + [ + 116.88399, + 240.00003, + 3.3239975, + 12.642 + ], + [ + 120.18398, + 240.00003, + 3.3239975, + 12.642 + ], + [ + 135.56798, + 240.00003, + 12.0, + 12.642 + ], + [ + 150.56798, + 240.00003, + 4.6679993, + 12.642 + ], + [ + 155.25998, + 240.00003, + 6.0, + 12.642 + ], + [ + 161.25998, + 240.00003, + 6.0, + 12.642 + ], + [ + 167.25998, + 240.00003, + 6.0, + 12.642 + ], + [ + 173.25998, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 176.55998, + 240.00003, + 6.0, + 12.642 + ], + [ + 185.55998, + 240.00003, + 6.0, + 12.642 + ], + [ + 191.55998, + 240.00003, + 6.0, + 12.642 + ], + [ + 197.55998, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 203.85999, + 240.00003, + 6.0, + 12.642 + ], + [ + 209.85999, + 240.00003, + 5.3159943, + 12.642 + ], + [ + 218.16399, + 240.00003, + 5.3159943, + 12.642 + ], + [ + 223.46799, + 240.00003, + 6.0, + 12.642 + ], + [ + 229.46799, + 240.00003, + 6.0, + 12.642 + ], + [ + 235.46799, + 240.00003, + 6.0, + 12.642 + ], + [ + 241.55199, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 244.85199, + 240.00003, + 5.3159943, + 12.642 + ], + [ + 250.15599, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 253.456, + 240.00003, + 5.3160095, + 12.642 + ], + [ + 258.76, + 240.00003, + 6.0, + 12.642 + ], + [ + 264.76, + 240.00003, + 3.0, + 12.642 + ], + [ + 270.84402, + 240.00003, + 6.0, + 12.642 + ], + [ + 276.84402, + 240.00003, + 6.0, + 12.642 + ], + [ + 282.84402, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 289.14404, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 292.44406, + 240.00003, + 6.0, + 12.642 + ], + [ + 301.52808, + 240.00003, + 8.664001, + 12.642 + ], + [ + 310.21606, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 313.51608, + 240.00003, + 5.3160095, + 12.642 + ], + [ + 318.8201, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 322.12012, + 240.00003, + 3.3240051, + 12.642 + ], + [ + 325.42014, + 240.00003, + 6.0, + 12.642 + ], + [ + 331.42014, + 240.00003, + 6.0, + 12.642 + ], + [ + 337.42014, + 240.00003, + 5.3160095, + 12.642 + ], + [ + 342.72415, + 240.00003, + 3.9960022, + 12.642 + ], + [ + 346.72015, + 240.00003, + 6.0, + 12.642 + ] + ] + }, + { + "id": 5, + "stringIdxToPositionIdx": [], + "positions": [] + }, + { + "id": 6, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 37, + 38, + 39, + 40, + 41 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 102.97751, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 110.77481, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 119.46041, + 692.1, + 10.180199, + 13.867801 + ], + [ + 129.64061, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 137.43791, + 692.1, + 8.600998, + 13.867801 + ], + [ + 146.03891, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 153.83621, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 161.63351, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 170.3191, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 175.0144, + 692.1, + 8.600998, + 13.867801 + ], + [ + 183.6154, + 692.1, + 8.600998, + 13.867801 + ], + [ + 192.2164, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 196.9117, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 205.5127, + 692.1, + 10.180206, + 13.867801 + ], + [ + 215.6929, + 692.1, + 10.180206, + 13.867801 + ], + [ + 225.87311, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 233.17691, + 692.1, + 10.180206, + 13.867801 + ], + [ + 243.35712, + 692.1, + 8.600998, + 13.867801 + ], + [ + 251.95811, + 692.1, + 8.600998, + 13.867801 + ], + [ + 260.5591, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 264.4648, + 692.1, + 5.484894, + 13.867801 + ], + [ + 269.9497, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 277.747, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 285.6289, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 297.4165, + 692.1, + 8.601013, + 13.867801 + ], + [ + 306.01752, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 313.81482, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 321.61212, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 329.49402, + 692.1, + 8.601013, + 13.867801 + ], + [ + 342.00073, + 692.1, + 8.601013, + 13.867801 + ], + [ + 350.60175, + 692.1, + 8.601013, + 13.867801 + ], + [ + 363.19305, + 692.1, + 10.180206, + 13.867801 + ], + [ + 373.37326, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 377.27896, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 385.07626, + 692.1, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 7, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 15, + 16, + 17, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 39, + 40, + 41, + 42, + 43, + 44, + 44, + 45, + 46, + 46, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 68, + 69, + 70, + 71, + 72, + 73, + 73, + 74, + 75, + 75, + 76, + 77, + 78 + ], + "positions": [ + [ + 56.8, + 673.8, + 7.2199974, + 11.535 + ], + [ + 63.999996, + 673.8, + 5.000004, + 11.535 + ], + [ + 69.0, + 673.8, + 5.0, + 11.535 + ], + [ + 74.0, + 673.8, + 2.7699966, + 11.535 + ], + [ + 79.28999, + 673.8, + 6.0999985, + 11.535 + ], + [ + 85.38999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 89.78999, + 673.8, + 5.0, + 11.535 + ], + [ + 94.78999, + 673.8, + 5.0, + 11.535 + ], + [ + 99.78999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 104.189995, + 673.8, + 2.7699966, + 11.535 + ], + [ + 109.47999, + 673.8, + 3.3300018, + 11.535 + ], + [ + 112.86999, + 673.8, + 7.220001, + 11.535 + ], + [ + 120.06999, + 673.8, + 5.0, + 11.535 + ], + [ + 125.06999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 128.95999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 135.85999, + 673.8, + 5.0, + 11.535 + ], + [ + 140.85999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 147.24998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 151.13998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 155.53998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 158.32999, + 673.8, + 5.0, + 11.535 + ], + [ + 163.32999, + 673.8, + 5.0, + 11.535 + ], + [ + 168.32999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 172.72998, + 673.8, + 5.0, + 11.535 + ], + [ + 177.81998, + 673.8, + 3.3300018, + 11.535 + ], + [ + 183.61998, + 673.8, + 6.6600037, + 11.535 + ], + [ + 190.30998, + 673.8, + 5.0, + 11.535 + ], + [ + 195.30998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 199.70998, + 673.8, + 5.0, + 11.535 + ], + [ + 207.20998, + 673.8, + 6.100006, + 11.535 + ], + [ + 212.20998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 216.60997, + 673.8, + 3.8899994, + 11.535 + ], + [ + 220.49997, + 673.8, + 2.7700043, + 11.535 + ], + [ + 223.28998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 227.68997, + 673.8, + 5.0, + 11.535 + ], + [ + 232.68997, + 673.8, + 3.8899994, + 11.535 + ], + [ + 236.57997, + 673.8, + 5.0, + 11.535 + ], + [ + 241.57997, + 673.8, + 2.7700043, + 11.535 + ], + [ + 244.36998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 251.35997, + 673.8, + 5.0000153, + 11.535 + ], + [ + 256.36, + 673.8, + 2.769989, + 11.535 + ], + [ + 259.14996, + 673.8, + 5.0, + 11.535 + ], + [ + 264.14996, + 673.8, + 5.0, + 11.535 + ], + [ + 269.14996, + 673.8, + 4.4299927, + 11.535 + ], + [ + 276.04996, + 673.8, + 2.769989, + 11.535 + ], + [ + 278.83994, + 673.8, + 3.8900146, + 11.535 + ], + [ + 285.22995, + 673.8, + 6.6600037, + 11.535 + ], + [ + 291.82996, + 673.8, + 5.0, + 11.535 + ], + [ + 56.8, + 662.2, + 6.1000023, + 11.535 + ], + [ + 62.9, + 662.2, + 4.4300003, + 11.535 + ], + [ + 67.3, + 662.2, + 5.0, + 11.535 + ], + [ + 72.3, + 662.2, + 5.0, + 11.535 + ], + [ + 77.3, + 662.2, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 662.2, + 2.7699966, + 11.535 + ], + [ + 86.99, + 662.2, + 6.659996, + 11.535 + ], + [ + 93.67999, + 662.2, + 5.0, + 11.535 + ], + [ + 98.67999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 662.2, + 5.0, + 11.535 + ], + [ + 110.66999, + 662.2, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 662.2, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 662.2, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 662.2, + 5.0, + 11.535 + ], + [ + 136.14998, + 662.2, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 662.2, + 5.0, + 11.535 + ], + [ + 145.03998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 662.2, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 662.2, + 5.0, + 11.535 + ], + [ + 159.72998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 662.2, + 5.0, + 11.535 + ], + [ + 167.51999, + 662.2, + 5.0, + 11.535 + ], + [ + 172.51999, + 662.2, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 662.2, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 662.2, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 662.2, + 3.8899994, + 11.535 + ] + ] + }, + { + "id": 8, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 59, + 60, + 61, + 61, + 62, + 63, + 64, + 64, + 65, + 66, + 67, + 68, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 76, + 77, + 78, + 79, + 80, + 81, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 96, + 97, + 98, + 98, + 99, + 100, + 101, + 101, + 102, + 103, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 118, + 119, + 120, + 121, + 122, + 123, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 142, + 143, + 144, + 144, + 145, + 146, + 147, + 148, + 149, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 177, + 178, + 179, + 180, + 181, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 260, + 261, + 262, + 262, + 263, + 264, + 265, + 266, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 272, + 273, + 274, + 275, + 276, + 276, + 277, + 278, + 279, + 279, + 280, + 281, + 282, + 283, + 283, + 284, + 285, + 286, + 287, + 288, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 295, + 296, + 297, + 298, + 298, + 299, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 305, + 306, + 307, + 308, + 308, + 309, + 310, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 320, + 321, + 322, + 323, + 323, + 324, + 325, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335 + ], + "positions": [ + [ + 56.8, + 635.0, + 11.315998, + 12.642 + ], + [ + 67.203995, + 635.0, + 5.316002, + 12.642 + ], + [ + 72.507996, + 635.0, + 3.9960022, + 12.642 + ], + [ + 76.504, + 635.0, + 6.0, + 12.642 + ], + [ + 82.408, + 635.0, + 4.6679993, + 12.642 + ], + [ + 87.1, + 635.0, + 6.0, + 12.642 + ], + [ + 93.1, + 635.0, + 5.316002, + 12.642 + ], + [ + 98.404, + 635.0, + 3.3239975, + 12.642 + ], + [ + 101.703995, + 635.0, + 6.0, + 12.642 + ], + [ + 107.703995, + 635.0, + 3.0, + 12.642 + ], + [ + 113.787994, + 635.0, + 6.0, + 12.642 + ], + [ + 119.787994, + 635.0, + 6.0, + 12.642 + ], + [ + 125.787994, + 635.0, + 6.0, + 12.642 + ], + [ + 131.788, + 635.0, + 6.0, + 12.642 + ], + [ + 140.788, + 635.0, + 7.9920044, + 12.642 + ], + [ + 148.78, + 635.0, + 8.664001, + 12.642 + ], + [ + 160.168, + 635.0, + 11.315994, + 12.642 + ], + [ + 170.57199, + 635.0, + 5.3159943, + 12.642 + ], + [ + 175.87599, + 635.0, + 3.9960022, + 12.642 + ], + [ + 179.872, + 635.0, + 6.0, + 12.642 + ], + [ + 185.872, + 635.0, + 4.6679993, + 12.642 + ], + [ + 190.564, + 635.0, + 6.0, + 12.642 + ], + [ + 196.564, + 635.0, + 5.3159943, + 12.642 + ], + [ + 201.868, + 635.0, + 3.3240051, + 12.642 + ], + [ + 205.168, + 635.0, + 6.0, + 12.642 + ], + [ + 211.168, + 635.0, + 3.0, + 12.642 + ], + [ + 217.252, + 635.0, + 8.664001, + 12.642 + ], + [ + 225.94, + 635.0, + 5.3159943, + 12.642 + ], + [ + 231.244, + 635.0, + 3.3240051, + 12.642 + ], + [ + 234.544, + 635.0, + 6.0, + 12.642 + ], + [ + 240.544, + 635.0, + 5.3159943, + 12.642 + ], + [ + 245.848, + 635.0, + 3.9960022, + 12.642 + ], + [ + 249.84401, + 635.0, + 3.3240051, + 12.642 + ], + [ + 253.14401, + 635.0, + 5.3160095, + 12.642 + ], + [ + 258.44803, + 635.0, + 6.0, + 12.642 + ], + [ + 264.44803, + 635.0, + 6.0, + 12.642 + ], + [ + 270.44803, + 635.0, + 4.6679993, + 12.642 + ], + [ + 275.14, + 635.0, + 3.0, + 12.642 + ], + [ + 281.14, + 635.0, + 8.664001, + 12.642 + ], + [ + 289.828, + 635.0, + 7.3200073, + 12.642 + ], + [ + 56.8, + 621.2, + 3.9959984, + 12.642 + ], + [ + 60.795998, + 621.2, + 6.0, + 12.642 + ], + [ + 66.7, + 621.2, + 4.6679993, + 12.642 + ], + [ + 71.392, + 621.2, + 3.3239975, + 12.642 + ], + [ + 74.77599, + 621.2, + 3.3239975, + 12.642 + ], + [ + 78.07599, + 621.2, + 3.3239975, + 12.642 + ], + [ + 81.375984, + 621.2, + 6.0, + 12.642 + ], + [ + 87.375984, + 621.2, + 3.3239975, + 12.642 + ], + [ + 93.75998, + 621.2, + 3.9960022, + 12.642 + ], + [ + 97.75598, + 621.2, + 6.0, + 12.642 + ], + [ + 103.75598, + 621.2, + 6.0, + 12.642 + ], + [ + 109.75598, + 621.2, + 6.0, + 12.642 + ], + [ + 115.65998, + 621.2, + 4.6679993, + 12.642 + ], + [ + 120.35198, + 621.2, + 3.3239975, + 12.642 + ], + [ + 123.65198, + 621.2, + 3.9960022, + 12.642 + ], + [ + 127.74398, + 621.2, + 3.3239975, + 12.642 + ], + [ + 131.04398, + 621.2, + 5.3159943, + 12.642 + ], + [ + 136.34798, + 621.2, + 4.6679993, + 12.642 + ], + [ + 141.03998, + 621.2, + 3.0, + 12.642 + ], + [ + 147.03998, + 621.2, + 6.0, + 12.642 + ], + [ + 153.03998, + 621.2, + 6.0, + 12.642 + ], + [ + 162.03998, + 621.2, + 7.9920044, + 12.642 + ], + [ + 170.03198, + 621.2, + 6.0, + 12.642 + ], + [ + 176.03198, + 621.2, + 5.3159943, + 12.642 + ], + [ + 184.33598, + 621.2, + 4.6679993, + 12.642 + ], + [ + 189.02798, + 621.2, + 5.3159943, + 12.642 + ], + [ + 194.33199, + 621.2, + 5.3159943, + 12.642 + ], + [ + 199.63599, + 621.2, + 6.0, + 12.642 + ], + [ + 208.63599, + 621.2, + 7.9920044, + 12.642 + ], + [ + 216.62799, + 621.2, + 5.3159943, + 12.642 + ], + [ + 221.93199, + 621.2, + 3.9960022, + 12.642 + ], + [ + 225.736, + 621.2, + 3.9960022, + 12.642 + ], + [ + 229.732, + 621.2, + 3.3240051, + 12.642 + ], + [ + 233.116, + 621.2, + 5.3159943, + 12.642 + ], + [ + 238.42, + 621.2, + 3.9960022, + 12.642 + ], + [ + 241.924, + 621.2, + 3.0, + 12.642 + ], + [ + 247.924, + 621.2, + 6.0, + 12.642 + ], + [ + 253.924, + 621.2, + 6.0000153, + 12.642 + ], + [ + 259.924, + 621.2, + 6.0, + 12.642 + ], + [ + 265.924, + 621.2, + 6.0, + 12.642 + ], + [ + 271.924, + 621.2, + 6.0, + 12.642 + ], + [ + 280.924, + 621.2, + 7.9920044, + 12.642 + ], + [ + 288.91602, + 621.2, + 6.0, + 12.642 + ], + [ + 294.91602, + 621.2, + 6.0, + 12.642 + ], + [ + 300.91602, + 621.2, + 3.9960022, + 12.642 + ], + [ + 304.72003, + 621.2, + 6.0, + 12.642 + ], + [ + 310.72003, + 621.2, + 5.3160095, + 12.642 + ], + [ + 316.02405, + 621.2, + 4.6679993, + 12.642 + ], + [ + 320.71603, + 621.2, + 3.0, + 12.642 + ], + [ + 326.71603, + 621.2, + 6.671997, + 12.642 + ], + [ + 333.40002, + 621.2, + 3.9960022, + 12.642 + ], + [ + 337.39603, + 621.2, + 5.3160095, + 12.642 + ], + [ + 342.70004, + 621.2, + 6.0, + 12.642 + ], + [ + 348.70004, + 621.2, + 5.3160095, + 12.642 + ], + [ + 354.00406, + 621.2, + 5.3160095, + 12.642 + ], + [ + 359.30807, + 621.2, + 3.0, + 12.642 + ], + [ + 365.3921, + 621.2, + 6.671997, + 12.642 + ], + [ + 371.9921, + 621.2, + 7.9920044, + 12.642 + ], + [ + 56.8, + 607.4, + 6.0, + 12.642 + ], + [ + 62.8, + 607.4, + 3.9959984, + 12.642 + ], + [ + 66.796, + 607.4, + 6.0, + 12.642 + ], + [ + 75.796, + 607.4, + 7.991997, + 12.642 + ], + [ + 83.787994, + 607.4, + 6.0, + 12.642 + ], + [ + 89.787994, + 607.4, + 5.316002, + 12.642 + ], + [ + 95.091995, + 607.4, + 9.3239975, + 12.642 + ], + [ + 104.39199, + 607.4, + 3.0, + 12.642 + ], + [ + 110.39199, + 607.4, + 6.0, + 12.642 + ], + [ + 116.39199, + 607.4, + 5.316002, + 12.642 + ], + [ + 121.69599, + 607.4, + 4.6679993, + 12.642 + ], + [ + 129.184, + 607.4, + 8.664001, + 12.642 + ], + [ + 136.48001, + 607.4, + 5.3159943, + 12.642 + ], + [ + 141.78401, + 607.4, + 3.9960022, + 12.642 + ], + [ + 145.78001, + 607.4, + 5.3159943, + 12.642 + ], + [ + 151.08401, + 607.4, + 6.0, + 12.642 + ], + [ + 157.08401, + 607.4, + 6.0, + 12.642 + ], + [ + 163.16801, + 607.4, + 5.3159943, + 12.642 + ], + [ + 168.47202, + 607.4, + 4.6679993, + 12.642 + ], + [ + 173.16402, + 607.4, + 3.0, + 12.642 + ], + [ + 179.16402, + 607.4, + 6.0, + 12.642 + ], + [ + 185.16402, + 607.4, + 6.0, + 12.642 + ], + [ + 191.16402, + 607.4, + 6.0, + 12.642 + ], + [ + 197.16402, + 607.4, + 6.0, + 12.642 + ], + [ + 203.16402, + 607.4, + 6.0, + 12.642 + ], + [ + 212.16402, + 607.4, + 6.671997, + 12.642 + ], + [ + 218.848, + 607.4, + 5.3159943, + 12.642 + ], + [ + 224.15201, + 607.4, + 3.3240051, + 12.642 + ], + [ + 227.45201, + 607.4, + 6.0, + 12.642 + ], + [ + 233.45201, + 607.4, + 3.3240051, + 12.642 + ], + [ + 236.75201, + 607.4, + 3.9960022, + 12.642 + ], + [ + 240.84401, + 607.4, + 6.671997, + 12.642 + ], + [ + 247.528, + 607.4, + 5.3159943, + 12.642 + ], + [ + 252.832, + 607.4, + 3.3240051, + 12.642 + ], + [ + 256.13202, + 607.4, + 6.0, + 12.642 + ], + [ + 262.13202, + 607.4, + 3.9960022, + 12.642 + ], + [ + 265.63602, + 607.4, + 3.0, + 12.642 + ], + [ + 271.63602, + 607.4, + 6.671997, + 12.642 + ], + [ + 278.32, + 607.4, + 3.9960022, + 12.642 + ], + [ + 282.316, + 607.4, + 5.3160095, + 12.642 + ], + [ + 287.62003, + 607.4, + 6.0, + 12.642 + ], + [ + 293.62003, + 607.4, + 5.3160095, + 12.642 + ], + [ + 298.92404, + 607.4, + 5.3160095, + 12.642 + ], + [ + 304.22806, + 607.4, + 3.0, + 12.642 + ], + [ + 310.31207, + 607.4, + 6.671997, + 12.642 + ], + [ + 316.91208, + 607.4, + 7.9920044, + 12.642 + ], + [ + 56.8, + 593.6, + 7.3200035, + 12.642 + ], + [ + 64.096, + 593.6, + 5.316002, + 12.642 + ], + [ + 69.4, + 593.6, + 4.6679993, + 12.642 + ], + [ + 74.092, + 593.6, + 6.0, + 12.642 + ], + [ + 80.092, + 593.6, + 6.0, + 12.642 + ], + [ + 89.092, + 593.6, + 3.9960022, + 12.642 + ], + [ + 93.088005, + 593.6, + 6.0, + 12.642 + ], + [ + 99.088005, + 593.6, + 6.0, + 12.642 + ], + [ + 105.088005, + 593.6, + 6.0, + 12.642 + ], + [ + 111.088005, + 593.6, + 4.6679993, + 12.642 + ], + [ + 115.78001, + 593.6, + 3.3239975, + 12.642 + ], + [ + 119.08, + 593.6, + 3.9960022, + 12.642 + ], + [ + 123.076004, + 593.6, + 3.3239975, + 12.642 + ], + [ + 126.376, + 593.6, + 5.316002, + 12.642 + ], + [ + 131.68001, + 593.6, + 4.6679993, + 12.642 + ], + [ + 136.37201, + 593.6, + 3.0, + 12.642 + ], + [ + 142.37201, + 593.6, + 7.9920044, + 12.642 + ], + [ + 150.36401, + 593.6, + 6.0, + 12.642 + ], + [ + 156.36401, + 593.6, + 5.3159943, + 12.642 + ], + [ + 161.66801, + 593.6, + 6.0, + 12.642 + ], + [ + 167.66801, + 593.6, + 6.0, + 12.642 + ], + [ + 173.66801, + 593.6, + 5.3159943, + 12.642 + ], + [ + 179.05602, + 593.6, + 3.3240051, + 12.642 + ], + [ + 182.35602, + 593.6, + 3.3240051, + 12.642 + ], + [ + 185.65602, + 593.6, + 4.6679993, + 12.642 + ], + [ + 190.34802, + 593.6, + 3.3240051, + 12.642 + ], + [ + 193.64803, + 593.6, + 3.9960022, + 12.642 + ], + [ + 197.64403, + 593.6, + 5.3159943, + 12.642 + ], + [ + 202.94803, + 593.6, + 4.6679993, + 12.642 + ], + [ + 207.64003, + 593.6, + 4.6679993, + 12.642 + ], + [ + 212.33203, + 593.6, + 3.3240051, + 12.642 + ], + [ + 215.63203, + 593.6, + 3.3240051, + 12.642 + ], + [ + 218.93204, + 593.6, + 3.0, + 12.642 + ], + [ + 225.01604, + 593.6, + 6.0, + 12.642 + ], + [ + 231.01604, + 593.6, + 6.0, + 12.642 + ], + [ + 237.01604, + 593.6, + 6.0, + 12.642 + ], + [ + 243.01604, + 593.6, + 6.0, + 12.642 + ], + [ + 252.01604, + 593.6, + 7.319992, + 12.642 + ], + [ + 259.31204, + 593.6, + 6.0, + 12.642 + ], + [ + 265.31204, + 593.6, + 6.0, + 12.642 + ], + [ + 271.31204, + 593.6, + 6.0, + 12.642 + ], + [ + 277.31204, + 593.6, + 5.3160095, + 12.642 + ], + [ + 282.61606, + 593.6, + 3.9960022, + 12.642 + ], + [ + 286.61206, + 593.6, + 6.0, + 12.642 + ], + [ + 292.61206, + 593.6, + 3.0, + 12.642 + ], + [ + 298.61206, + 593.6, + 6.671997, + 12.642 + ], + [ + 305.29605, + 593.6, + 8.664001, + 12.642 + ], + [ + 313.98404, + 593.6, + 3.3240051, + 12.642 + ], + [ + 317.28406, + 593.6, + 3.3240051, + 12.642 + ], + [ + 320.58408, + 593.6, + 5.3160095, + 12.642 + ], + [ + 325.8881, + 593.6, + 5.3160095, + 12.642 + ], + [ + 331.1921, + 593.6, + 3.9960022, + 12.642 + ], + [ + 335.28412, + 593.6, + 3.3240051, + 12.642 + ], + [ + 338.58414, + 593.6, + 5.3160095, + 12.642 + ], + [ + 343.88815, + 593.6, + 6.0, + 12.642 + ], + [ + 349.88815, + 593.6, + 6.0, + 12.642 + ], + [ + 56.8, + 579.8, + 6.672001, + 12.642 + ], + [ + 63.484, + 579.8, + 6.0, + 12.642 + ], + [ + 69.484, + 579.8, + 3.3239975, + 12.642 + ], + [ + 72.784, + 579.8, + 3.3239975, + 12.642 + ], + [ + 76.08399, + 579.8, + 4.6679993, + 12.642 + ], + [ + 80.77599, + 579.8, + 4.6679993, + 12.642 + ], + [ + 85.467995, + 579.8, + 5.316002, + 12.642 + ], + [ + 90.771996, + 579.8, + 3.3239975, + 12.642 + ], + [ + 94.07199, + 579.8, + 2.1600037, + 12.642 + ], + [ + 96.256, + 579.8, + 6.0, + 12.642 + ], + [ + 102.256, + 579.8, + 6.0, + 12.642 + ], + [ + 108.256, + 579.8, + 3.9960022, + 12.642 + ], + [ + 112.06, + 579.8, + 6.0, + 12.642 + ], + [ + 117.964, + 579.8, + 4.6679993, + 12.642 + ], + [ + 122.656, + 579.8, + 6.0000076, + 12.642 + ], + [ + 128.656, + 579.8, + 5.3159943, + 12.642 + ], + [ + 133.96, + 579.8, + 6.0, + 12.642 + ], + [ + 139.96, + 579.8, + 5.3159943, + 12.642 + ], + [ + 148.348, + 579.8, + 8.664001, + 12.642 + ], + [ + 157.03601, + 579.8, + 3.3240051, + 12.642 + ], + [ + 160.33601, + 579.8, + 3.3240051, + 12.642 + ], + [ + 163.63602, + 579.8, + 3.3240051, + 12.642 + ], + [ + 166.93602, + 579.8, + 4.6679993, + 12.642 + ], + [ + 171.62802, + 579.8, + 5.3159943, + 12.642 + ], + [ + 176.93202, + 579.8, + 3.0, + 12.642 + ], + [ + 182.93202, + 579.8, + 8.664001, + 12.642 + ], + [ + 191.62003, + 579.8, + 3.3240051, + 12.642 + ], + [ + 194.92003, + 579.8, + 5.3159943, + 12.642 + ], + [ + 200.22403, + 579.8, + 6.0, + 12.642 + ], + [ + 206.22403, + 579.8, + 6.0, + 12.642 + ], + [ + 212.22403, + 579.8, + 6.0, + 12.642 + ], + [ + 221.30803, + 579.8, + 8.664001, + 12.642 + ], + [ + 229.91203, + 579.8, + 6.0, + 12.642 + ], + [ + 235.91203, + 579.8, + 6.0, + 12.642 + ], + [ + 241.91203, + 579.8, + 6.0, + 12.642 + ], + [ + 247.91203, + 579.8, + 6.0, + 12.642 + ], + [ + 253.91203, + 579.8, + 3.995987, + 12.642 + ], + [ + 257.90802, + 579.8, + 6.0, + 12.642 + ], + [ + 263.90802, + 579.8, + 6.0, + 12.642 + ], + [ + 272.90802, + 579.8, + 8.664001, + 12.642 + ], + [ + 281.596, + 579.8, + 6.0, + 12.642 + ], + [ + 287.596, + 579.8, + 3.3240051, + 12.642 + ], + [ + 290.89603, + 579.8, + 5.3160095, + 12.642 + ], + [ + 296.20004, + 579.8, + 4.6679993, + 12.642 + ], + [ + 300.89203, + 579.8, + 3.3240051, + 12.642 + ], + [ + 304.19205, + 579.8, + 3.0, + 12.642 + ], + [ + 310.19205, + 579.8, + 7.9920044, + 12.642 + ], + [ + 318.18405, + 579.8, + 6.0, + 12.642 + ], + [ + 324.18405, + 579.8, + 4.6679993, + 12.642 + ], + [ + 328.87604, + 579.8, + 4.6679993, + 12.642 + ], + [ + 333.56802, + 579.8, + 3.3240051, + 12.642 + ], + [ + 336.86804, + 579.8, + 5.3160095, + 12.642 + ], + [ + 342.17206, + 579.8, + 3.0, + 12.642 + ], + [ + 348.17206, + 579.8, + 6.0, + 12.642 + ], + [ + 354.17206, + 579.8, + 6.0, + 12.642 + ], + [ + 360.17206, + 579.8, + 6.0, + 12.642 + ], + [ + 366.17206, + 579.8, + 6.0, + 12.642 + ], + [ + 372.17206, + 579.8, + 6.0, + 12.642 + ], + [ + 378.17206, + 579.8, + 6.0, + 12.642 + ], + [ + 384.17206, + 579.8, + 3.0, + 12.642 + ], + [ + 390.17206, + 579.8, + 7.9920044, + 12.642 + ], + [ + 398.16406, + 579.8, + 8.664001, + 12.642 + ], + [ + 56.8, + 566.0, + 8.663998, + 12.642 + ], + [ + 65.488, + 566.0, + 5.316002, + 12.642 + ], + [ + 70.792, + 566.0, + 3.9960022, + 12.642 + ], + [ + 74.788, + 566.0, + 3.3239975, + 12.642 + ], + [ + 81.088, + 566.0, + 4.6679993, + 12.642 + ], + [ + 85.78, + 566.0, + 6.0, + 12.642 + ], + [ + 91.78, + 566.0, + 6.0, + 12.642 + ], + [ + 97.78, + 566.0, + 5.316002, + 12.642 + ], + [ + 103.084, + 566.0, + 6.0, + 12.642 + ], + [ + 109.084, + 566.0, + 4.6679993, + 12.642 + ], + [ + 116.776, + 566.0, + 8.664001, + 12.642 + ], + [ + 125.464005, + 566.0, + 5.3159943, + 12.642 + ], + [ + 130.768, + 566.0, + 3.3240051, + 12.642 + ], + [ + 134.06801, + 566.0, + 5.3159943, + 12.642 + ], + [ + 142.37201, + 566.0, + 6.0, + 12.642 + ], + [ + 147.97601, + 566.0, + 6.0, + 12.642 + ], + [ + 153.97601, + 566.0, + 3.0, + 12.642 + ], + [ + 159.97601, + 566.0, + 6.0, + 12.642 + ], + [ + 165.97601, + 566.0, + 6.0, + 12.642 + ], + [ + 171.97601, + 566.0, + 6.0, + 12.642 + ], + [ + 177.97601, + 566.0, + 6.0, + 12.642 + ], + [ + 186.97601, + 566.0, + 8.664001, + 12.642 + ], + [ + 195.58002, + 566.0, + 4.6679993, + 12.642 + ], + [ + 200.27202, + 566.0, + 3.3240051, + 12.642 + ], + [ + 203.57202, + 566.0, + 6.0, + 12.642 + ], + [ + 209.57202, + 566.0, + 3.0, + 12.642 + ], + [ + 215.57202, + 566.0, + 8.664001, + 12.642 + ], + [ + 224.26003, + 566.0, + 6.0, + 12.642 + ], + [ + 230.26003, + 566.0, + 3.9960022, + 12.642 + ], + [ + 234.25603, + 566.0, + 8.664001, + 12.642 + ], + [ + 242.94403, + 566.0, + 5.3159943, + 12.642 + ], + [ + 248.24803, + 566.0, + 6.0, + 12.642 + ], + [ + 253.44403, + 566.0, + 3.0, + 12.642 + ], + [ + 259.44403, + 566.0, + 8.664001, + 12.642 + ], + [ + 268.13202, + 566.0, + 8.664001, + 12.642 + ], + [ + 276.73602, + 566.0, + 7.9920044, + 12.642 + ], + [ + 296.72803, + 566.0, + 12.0, + 12.642 + ], + [ + 311.72803, + 566.0, + 4.6679993, + 12.642 + ], + [ + 316.42, + 566.0, + 6.0, + 12.642 + ], + [ + 322.42, + 566.0, + 6.0, + 12.642 + ], + [ + 328.42, + 566.0, + 6.0, + 12.642 + ], + [ + 334.42, + 566.0, + 3.3240051, + 12.642 + ], + [ + 337.72003, + 566.0, + 6.0, + 12.642 + ], + [ + 346.72003, + 566.0, + 6.0, + 12.642 + ], + [ + 352.72003, + 566.0, + 6.0, + 12.642 + ], + [ + 358.72003, + 566.0, + 3.3240051, + 12.642 + ], + [ + 365.10403, + 566.0, + 6.0, + 12.642 + ], + [ + 371.10403, + 566.0, + 5.3160095, + 12.642 + ], + [ + 379.40805, + 566.0, + 5.3160095, + 12.642 + ], + [ + 384.71207, + 566.0, + 6.0, + 12.642 + ], + [ + 390.71207, + 566.0, + 6.0, + 12.642 + ], + [ + 396.71207, + 566.0, + 6.0, + 12.642 + ], + [ + 402.71207, + 566.0, + 3.3240051, + 12.642 + ], + [ + 406.0121, + 566.0, + 5.3160095, + 12.642 + ], + [ + 411.4001, + 566.0, + 3.3240051, + 12.642 + ], + [ + 414.7001, + 566.0, + 5.3160095, + 12.642 + ], + [ + 420.00412, + 566.0, + 6.0, + 12.642 + ], + [ + 426.00412, + 566.0, + 3.0, + 12.642 + ], + [ + 432.00412, + 566.0, + 6.0, + 12.642 + ], + [ + 438.00412, + 566.0, + 6.0, + 12.642 + ], + [ + 444.00412, + 566.0, + 3.3240051, + 12.642 + ], + [ + 450.38812, + 566.0, + 3.3240051, + 12.642 + ], + [ + 453.68814, + 566.0, + 6.0, + 12.642 + ], + [ + 462.68814, + 566.0, + 8.664001, + 12.642 + ], + [ + 471.37613, + 566.0, + 3.3240051, + 12.642 + ], + [ + 474.67615, + 566.0, + 5.3160095, + 12.642 + ], + [ + 479.98016, + 566.0, + 3.3240051, + 12.642 + ], + [ + 483.36417, + 566.0, + 3.3240051, + 12.642 + ], + [ + 486.66418, + 566.0, + 6.0, + 12.642 + ], + [ + 492.66418, + 566.0, + 6.0, + 12.642 + ], + [ + 498.66418, + 566.0, + 5.3160095, + 12.642 + ], + [ + 503.9682, + 566.0, + 3.9960022, + 12.642 + ], + [ + 507.9642, + 566.0, + 6.0000305, + 12.642 + ] + ] + }, + { + "id": 9, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 51, + 52, + 53, + 54, + 55, + 56 + ], + "positions": [ + [ + 56.8, + 515.6, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 515.6, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 515.6, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 515.6, + 4.6952972, + 13.867801 + ], + [ + 107.672806, + 515.6, + 10.180199, + 13.867801 + ], + [ + 117.853004, + 515.6, + 8.600998, + 13.867801 + ], + [ + 130.3597, + 515.6, + 8.600998, + 13.867801 + ], + [ + 138.9607, + 515.6, + 8.600998, + 13.867801 + ], + [ + 147.56169, + 515.6, + 4.6952972, + 13.867801 + ], + [ + 156.24728, + 515.6, + 5.484894, + 13.867801 + ], + [ + 161.73218, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 169.52948, + 515.6, + 8.600998, + 13.867801 + ], + [ + 178.13048, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 185.92778, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 193.72508, + 515.6, + 4.6952972, + 13.867801 + ], + [ + 202.41068, + 515.6, + 8.600998, + 13.867801 + ], + [ + 211.01167, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 218.80898, + 515.6, + 8.600998, + 13.867801 + ], + [ + 227.40997, + 515.6, + 3.9057007, + 13.867801 + ], + [ + 231.31567, + 515.6, + 4.6952972, + 13.867801 + ], + [ + 236.01097, + 515.6, + 3.9057007, + 13.867801 + ], + [ + 240.00127, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 247.79857, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 259.58615, + 515.6, + 10.180206, + 13.867801 + ], + [ + 269.76636, + 515.6, + 10.180206, + 13.867801 + ], + [ + 279.94656, + 515.6, + 3.9057007, + 13.867801 + ], + [ + 283.85226, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 291.64957, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 299.44687, + 515.6, + 8.601013, + 13.867801 + ], + [ + 308.04788, + 515.6, + 4.6953125, + 13.867801 + ], + [ + 312.7432, + 515.6, + 8.601013, + 13.867801 + ], + [ + 321.4288, + 515.6, + 8.601013, + 13.867801 + ], + [ + 330.02982, + 515.6, + 5.484894, + 13.867801 + ], + [ + 335.5147, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 347.2177, + 515.6, + 4.6953125, + 13.867801 + ], + [ + 351.91302, + 515.6, + 9.3905945, + 13.867801 + ], + [ + 361.30362, + 515.6, + 8.601013, + 13.867801 + ], + [ + 369.90463, + 515.6, + 4.6953125, + 13.867801 + ], + [ + 374.59995, + 515.6, + 5.484894, + 13.867801 + ], + [ + 380.08484, + 515.6, + 3.9057007, + 13.867801 + ], + [ + 383.99054, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 391.87244, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 403.66003, + 515.6, + 8.601013, + 13.867801 + ], + [ + 412.26105, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 420.05835, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 427.85565, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 435.73755, + 515.6, + 8.601013, + 13.867801 + ], + [ + 448.24426, + 515.6, + 8.601013, + 13.867801 + ], + [ + 456.84528, + 515.6, + 8.601013, + 13.867801 + ], + [ + 469.43658, + 515.6, + 10.180206, + 13.867801 + ], + [ + 479.6168, + 515.6, + 3.9057007, + 13.867801 + ], + [ + 483.5225, + 515.6, + 7.8395996, + 13.867801 + ], + [ + 491.3198, + 515.6, + 4.6953125, + 13.867801 + ], + [ + 496.0151, + 515.6, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 10, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 22, + 23, + 24, + 25, + 26, + 27, + 27, + 28, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 72, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 78, + 79, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115 + ], + "positions": [ + [ + 56.8, + 497.3, + 6.1000023, + 11.535 + ], + [ + 62.9, + 497.3, + 4.4300003, + 11.535 + ], + [ + 67.3, + 497.3, + 5.0, + 11.535 + ], + [ + 72.3, + 497.3, + 5.0, + 11.535 + ], + [ + 77.3, + 497.3, + 5.0, + 11.535 + ], + [ + 82.3, + 497.3, + 5.0, + 11.535 + ], + [ + 89.8, + 497.3, + 2.7699966, + 11.535 + ], + [ + 92.59, + 497.3, + 5.0, + 11.535 + ], + [ + 100.09, + 497.3, + 7.220001, + 11.535 + ], + [ + 107.29, + 497.3, + 2.7699966, + 11.535 + ], + [ + 110.079994, + 497.3, + 5.0, + 11.535 + ], + [ + 115.079994, + 497.3, + 2.7699966, + 11.535 + ], + [ + 56.8, + 483.9, + 7.9920006, + 12.642 + ], + [ + 64.792, + 483.9, + 3.3239975, + 12.642 + ], + [ + 68.091995, + 483.9, + 5.316002, + 12.642 + ], + [ + 73.395996, + 483.9, + 3.9960022, + 12.642 + ], + [ + 77.392, + 483.9, + 3.3239975, + 12.642 + ], + [ + 80.69199, + 483.9, + 4.6679993, + 12.642 + ], + [ + 85.383995, + 483.9, + 4.6679993, + 12.642 + ], + [ + 90.076, + 483.9, + 5.316002, + 12.642 + ], + [ + 95.38, + 483.9, + 3.9960022, + 12.642 + ], + [ + 98.68, + 483.9, + 4.6679993, + 12.642 + ], + [ + 106.372, + 483.9, + 8.664001, + 12.642 + ], + [ + 115.060005, + 483.9, + 6.0, + 12.642 + ], + [ + 121.060005, + 483.9, + 6.0, + 12.642 + ], + [ + 127.060005, + 483.9, + 5.9999924, + 12.642 + ], + [ + 133.06, + 483.9, + 3.3240051, + 12.642 + ], + [ + 142.36, + 483.9, + 12.0, + 12.642 + ], + [ + 157.36, + 483.9, + 6.0, + 12.642 + ], + [ + 163.36, + 483.9, + 6.0, + 12.642 + ], + [ + 169.36, + 483.9, + 3.3240051, + 12.642 + ], + [ + 175.744, + 483.9, + 5.3159943, + 12.642 + ], + [ + 181.048, + 483.9, + 6.0, + 12.642 + ], + [ + 187.048, + 483.9, + 6.0, + 12.642 + ], + [ + 193.048, + 483.9, + 5.3159943, + 12.642 + ], + [ + 198.352, + 483.9, + 6.0, + 12.642 + ], + [ + 207.352, + 483.9, + 3.3240051, + 12.642 + ], + [ + 210.65201, + 483.9, + 6.0, + 12.642 + ], + [ + 219.65201, + 483.9, + 8.664001, + 12.642 + ], + [ + 228.34001, + 483.9, + 3.3240051, + 12.642 + ], + [ + 231.64001, + 483.9, + 5.3159943, + 12.642 + ], + [ + 237.02802, + 483.9, + 3.3240051, + 12.642 + ], + [ + 240.32802, + 483.9, + 3.0, + 12.642 + ], + [ + 246.32802, + 483.9, + 4.6679993, + 12.642 + ], + [ + 251.02002, + 483.9, + 6.0, + 12.642 + ], + [ + 257.02002, + 483.9, + 6.0, + 12.642 + ], + [ + 263.02002, + 483.9, + 6.0, + 12.642 + ], + [ + 269.02002, + 483.9, + 3.3240051, + 12.642 + ], + [ + 272.32004, + 483.9, + 6.0, + 12.642 + ], + [ + 281.32004, + 483.9, + 6.0, + 12.642 + ], + [ + 287.32004, + 483.9, + 5.3160095, + 12.642 + ], + [ + 295.62405, + 483.9, + 6.0, + 12.642 + ], + [ + 301.62405, + 483.9, + 6.0, + 12.642 + ], + [ + 307.62405, + 483.9, + 3.3240051, + 12.642 + ], + [ + 314.00806, + 483.9, + 5.3160095, + 12.642 + ], + [ + 319.31207, + 483.9, + 6.0, + 12.642 + ], + [ + 325.31207, + 483.9, + 6.0, + 12.642 + ], + [ + 331.31207, + 483.9, + 6.0, + 12.642 + ], + [ + 337.31207, + 483.9, + 3.3240051, + 12.642 + ], + [ + 340.6121, + 483.9, + 5.3160095, + 12.642 + ], + [ + 345.9161, + 483.9, + 3.3240051, + 12.642 + ], + [ + 349.3001, + 483.9, + 5.3160095, + 12.642 + ], + [ + 354.60413, + 483.9, + 6.0, + 12.642 + ], + [ + 56.8, + 470.1, + 6.672001, + 12.642 + ], + [ + 63.484, + 470.1, + 3.3239975, + 12.642 + ], + [ + 66.784, + 470.1, + 9.3239975, + 12.642 + ], + [ + 76.08399, + 470.1, + 6.0, + 12.642 + ], + [ + 82.08399, + 470.1, + 4.6679993, + 12.642 + ], + [ + 86.77599, + 470.1, + 6.0, + 12.642 + ], + [ + 92.77599, + 470.1, + 6.0, + 12.642 + ], + [ + 98.67999, + 470.1, + 2.1600037, + 12.642 + ], + [ + 100.864, + 470.1, + 4.6679993, + 12.642 + ], + [ + 108.352, + 470.1, + 7.3199997, + 12.642 + ], + [ + 114.855995, + 470.1, + 6.0, + 12.642 + ], + [ + 120.855995, + 470.1, + 8.663994, + 12.642 + ], + [ + 129.54399, + 470.1, + 5.3159943, + 12.642 + ], + [ + 134.84799, + 470.1, + 3.9960022, + 12.642 + ], + [ + 147.844, + 470.1, + 12.0, + 12.642 + ], + [ + 162.844, + 470.1, + 5.3159943, + 12.642 + ], + [ + 168.148, + 470.1, + 6.0, + 12.642 + ], + [ + 174.148, + 470.1, + 6.0, + 12.642 + ], + [ + 180.148, + 470.1, + 5.3159943, + 12.642 + ], + [ + 185.452, + 470.1, + 6.0, + 12.642 + ], + [ + 194.452, + 470.1, + 3.3240051, + 12.642 + ], + [ + 197.752, + 470.1, + 6.0, + 12.642 + ], + [ + 206.14, + 470.1, + 8.664001, + 12.642 + ], + [ + 214.828, + 470.1, + 6.0, + 12.642 + ], + [ + 220.828, + 470.1, + 3.3240051, + 12.642 + ], + [ + 224.128, + 470.1, + 6.0, + 12.642 + ], + [ + 230.128, + 470.1, + 6.0, + 12.642 + ], + [ + 236.128, + 470.1, + 3.9960022, + 12.642 + ], + [ + 240.12401, + 470.1, + 4.6679993, + 12.642 + ], + [ + 244.81601, + 470.1, + 3.9960022, + 12.642 + ], + [ + 248.81201, + 470.1, + 8.664001, + 12.642 + ], + [ + 257.5, + 470.1, + 3.3240051, + 12.642 + ], + [ + 260.80002, + 470.1, + 5.3160095, + 12.642 + ], + [ + 266.10403, + 470.1, + 3.3240051, + 12.642 + ], + [ + 269.40405, + 470.1, + 3.0, + 12.642 + ], + [ + 275.40405, + 470.1, + 4.6679993, + 12.642 + ], + [ + 280.09604, + 470.1, + 6.0, + 12.642 + ], + [ + 286.09604, + 470.1, + 6.0, + 12.642 + ], + [ + 292.09604, + 470.1, + 6.0, + 12.642 + ], + [ + 298.09604, + 470.1, + 3.3240051, + 12.642 + ], + [ + 301.39606, + 470.1, + 6.0, + 12.642 + ], + [ + 310.39606, + 470.1, + 6.0, + 12.642 + ], + [ + 316.39606, + 470.1, + 5.3160095, + 12.642 + ], + [ + 324.78406, + 470.1, + 5.3160095, + 12.642 + ], + [ + 330.08807, + 470.1, + 6.0, + 12.642 + ], + [ + 336.08807, + 470.1, + 6.0, + 12.642 + ], + [ + 342.08807, + 470.1, + 6.0, + 12.642 + ], + [ + 348.08807, + 470.1, + 3.3240051, + 12.642 + ], + [ + 351.3881, + 470.1, + 5.3160095, + 12.642 + ], + [ + 356.6921, + 470.1, + 3.3240051, + 12.642 + ], + [ + 359.99213, + 470.1, + 5.3160095, + 12.642 + ], + [ + 365.29614, + 470.1, + 6.0, + 12.642 + ] + ] + }, + { + "id": 11, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22 + ], + "positions": [ + [ + 56.8, + 405.9, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 405.9, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 405.9, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 405.9, + 4.6952972, + 13.867801 + ], + [ + 103.767105, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 110.873505, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 122.57651, + 405.9, + 4.6952972, + 13.867801 + ], + [ + 127.271805, + 405.9, + 10.180206, + 13.867801 + ], + [ + 137.45201, + 405.9, + 8.600998, + 13.867801 + ], + [ + 146.05301, + 405.9, + 4.6952972, + 13.867801 + ], + [ + 150.7483, + 405.9, + 8.600998, + 13.867801 + ], + [ + 159.3493, + 405.9, + 8.600998, + 13.867801 + ], + [ + 167.9503, + 405.9, + 5.484894, + 13.867801 + ], + [ + 173.4352, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 185.2228, + 405.9, + 8.600998, + 13.867801 + ], + [ + 192.8227, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 200.62, + 405.9, + 8.600998, + 13.867801 + ], + [ + 209.221, + 405.9, + 3.9057007, + 13.867801 + ], + [ + 213.1267, + 405.9, + 7.8395996, + 13.867801 + ], + [ + 220.924, + 405.9, + 4.6952972, + 13.867801 + ] + ] + }, + { + "id": 12, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 387.5, + 6.1000023, + 11.535 + ], + [ + 62.9, + 387.5, + 4.4300003, + 11.535 + ], + [ + 67.3, + 387.5, + 5.0, + 11.535 + ], + [ + 72.3, + 387.5, + 5.0, + 11.535 + ], + [ + 77.3, + 387.5, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 387.5, + 2.7699966, + 11.535 + ], + [ + 86.99, + 387.5, + 6.659996, + 11.535 + ], + [ + 93.67999, + 387.5, + 5.0, + 11.535 + ], + [ + 98.67999, + 387.5, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 387.5, + 5.0, + 11.535 + ], + [ + 110.66999, + 387.5, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 387.5, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 387.5, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 387.5, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 387.5, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 387.5, + 5.0, + 11.535 + ], + [ + 136.14998, + 387.5, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 387.5, + 5.0, + 11.535 + ], + [ + 145.03998, + 387.5, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 387.5, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 387.5, + 5.0, + 11.535 + ], + [ + 159.72998, + 387.5, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 387.5, + 5.0, + 11.535 + ], + [ + 167.51999, + 387.5, + 5.0, + 11.535 + ], + [ + 172.51999, + 387.5, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 387.5, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 387.5, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 387.5, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 387.5, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 387.5, + 3.8899994, + 11.535 + ], + [ + 56.8, + 376.0, + 6.1000023, + 11.535 + ], + [ + 62.9, + 376.0, + 4.4300003, + 11.535 + ], + [ + 67.3, + 376.0, + 5.0, + 11.535 + ], + [ + 72.3, + 376.0, + 5.0, + 11.535 + ], + [ + 77.3, + 376.0, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 376.0, + 2.7699966, + 11.535 + ], + [ + 86.99, + 376.0, + 6.659996, + 11.535 + ], + [ + 93.67999, + 376.0, + 5.0, + 11.535 + ], + [ + 98.67999, + 376.0, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 376.0, + 5.0, + 11.535 + ], + [ + 110.66999, + 376.0, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 376.0, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 376.0, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 376.0, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 376.0, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 376.0, + 5.0, + 11.535 + ], + [ + 136.14998, + 376.0, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 376.0, + 5.0, + 11.535 + ], + [ + 145.03998, + 376.0, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 376.0, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 376.0, + 5.0, + 11.535 + ], + [ + 159.72998, + 376.0, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 376.0, + 5.0, + 11.535 + ], + [ + 167.51999, + 376.0, + 5.0, + 11.535 + ], + [ + 172.51999, + 376.0, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 376.0, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 376.0, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 376.0, + 6.6600037, + 11.535 + ], + [ + 195.29, + 376.0, + 5.0, + 11.535 + ] + ] + }, + { + "id": 13, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11 + ], + "positions": [ + [ + 61.5, + 361.2, + 7.5810013, + 11.81175 + ], + [ + 68.997, + 361.2, + 4.651497, + 11.81175 + ], + [ + 73.6905, + 361.2, + 3.496498, + 11.81175 + ], + [ + 77.187, + 361.2, + 4.651497, + 11.81175 + ], + [ + 81.785995, + 361.2, + 4.651497, + 11.81175 + ], + [ + 86.29049, + 361.2, + 4.651497, + 11.81175 + ], + [ + 90.983986, + 361.2, + 5.8379974, + 11.81175 + ], + [ + 96.77998, + 361.2, + 4.651497, + 11.81175 + ], + [ + 101.47348, + 361.2, + 4.651497, + 11.81175 + ], + [ + 108.77097, + 361.2, + 7.5810013, + 11.81175 + ], + [ + 116.267975, + 361.2, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 14, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "positions": [ + [ + 143.0, + 361.2, + 7.5809937, + 11.81175 + ], + [ + 150.59149, + 361.2, + 5.8379974, + 11.81175 + ], + [ + 156.38748, + 361.2, + 3.4965057, + 11.81175 + ], + [ + 159.88399, + 361.2, + 5.8379974, + 11.81175 + ], + [ + 165.67998, + 361.2, + 5.25, + 11.81175 + ], + [ + 170.97198, + 361.2, + 4.6515045, + 11.81175 + ], + [ + 175.6655, + 361.2, + 3.4965057, + 11.81175 + ], + [ + 179.162, + 361.2, + 4.084503, + 11.81175 + ], + [ + 183.2465, + 361.2, + 3.4965057, + 11.81175 + ] + ] + }, + { + "id": 15, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4 + ], + "positions": [ + [ + 217.1, + 361.2, + 7.5809937, + 11.81175 + ], + [ + 223.505, + 361.2, + 4.6515045, + 11.81175 + ], + [ + 228.104, + 361.2, + 5.25, + 11.81175 + ], + [ + 233.39601, + 361.2, + 4.6515045, + 11.81175 + ] + ] + }, + { + "id": 16, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "positions": [ + [ + 344.7, + 361.2, + 6.9930115, + 11.81175 + ], + [ + 351.50403, + 361.2, + 2.9085083, + 11.81175 + ], + [ + 354.40204, + 361.2, + 3.4964905, + 11.81175 + ], + [ + 357.89853, + 361.2, + 2.9085083, + 11.81175 + ], + [ + 360.79654, + 361.2, + 4.6514893, + 11.81175 + ] + ] + }, + { + "id": 17, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "positions": [ + [ + 479.6, + 361.2, + 6.9930115, + 11.81175 + ], + [ + 486.59302, + 361.2, + 5.25, + 11.81175 + ], + [ + 491.885, + 361.2, + 5.8380127, + 11.81175 + ], + [ + 497.68103, + 361.2, + 5.25, + 11.81175 + ], + [ + 502.87854, + 361.2, + 4.6514893, + 11.81175 + ], + [ + 507.57202, + 361.2, + 5.25, + 11.81175 + ], + [ + 512.864, + 361.2, + 3.496521, + 11.81175 + ], + [ + 516.26605, + 361.2, + 5.25, + 11.81175 + ], + [ + 521.55804, + 361.2, + 4.6514893, + 11.81175 + ], + [ + 526.15704, + 361.2, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 18, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 3, + 4, + 5 + ], + "positions": [ + [ + 77.9, + 343.5, + 6.993004, + 11.81175 + ], + [ + 84.893005, + 343.5, + 6.992996, + 11.81175 + ], + [ + 91.886, + 343.5, + 5.25, + 11.81175 + ], + [ + 99.782, + 343.5, + 2.9085007, + 11.81175 + ], + [ + 102.68, + 343.5, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 19, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9 + ], + "positions": [ + [ + 141.2, + 343.5, + 9.334503, + 11.81175 + ], + [ + 150.503, + 343.5, + 2.908493, + 11.81175 + ], + [ + 153.401, + 343.5, + 4.6515045, + 11.81175 + ], + [ + 158.0, + 343.5, + 5.25, + 11.81175 + ], + [ + 163.292, + 343.5, + 4.6515045, + 11.81175 + ], + [ + 167.98552, + 343.5, + 4.6515045, + 11.81175 + ], + [ + 172.67903, + 343.5, + 2.908493, + 11.81175 + ], + [ + 178.18103, + 343.5, + 7.5809937, + 11.81175 + ], + [ + 185.77252, + 343.5, + 2.625, + 11.81175 + ] + ] + }, + { + "id": 20, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4 + ], + "positions": [ + [ + 217.1, + 343.5, + 5.25, + 11.81175 + ], + [ + 222.2975, + 343.5, + 5.25, + 11.81175 + ], + [ + 227.58951, + 343.5, + 5.25, + 11.81175 + ], + [ + 232.787, + 343.5, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 21, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ], + "positions": [ + [ + 263.1, + 343.5, + 6.404999, + 11.81175 + ], + [ + 269.4, + 343.5, + 5.25, + 11.81175 + ], + [ + 274.692, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 281.98947, + 343.5, + 3.4964905, + 11.81175 + ], + [ + 285.48596, + 343.5, + 5.25, + 11.81175 + ], + [ + 290.77795, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 293.67596, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 300.97345, + 343.5, + 5.25, + 11.81175 + ], + [ + 306.17096, + 343.5, + 3.4964905, + 11.81175 + ], + [ + 312.35544, + 343.5, + 5.25, + 11.81175 + ], + [ + 317.55295, + 343.5, + 5.25, + 11.81175 + ], + [ + 322.84494, + 343.5, + 5.25, + 11.81175 + ], + [ + 328.04245, + 343.5, + 4.084503, + 11.81175 + ], + [ + 332.12695, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 335.02496, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 339.62396, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 344.31744, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 349.90344, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 354.50244, + 343.5, + 5.25, + 11.81175 + ], + [ + 359.79443, + 343.5, + 5.25, + 11.81175 + ], + [ + 364.99194, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 369.68542, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 374.3789, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 377.27692, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 380.0804, + 343.5, + 5.25, + 11.81175 + ], + [ + 385.3724, + 343.5, + 5.25, + 11.81175 + ], + [ + 393.2684, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 396.1664, + 343.5, + 5.25, + 11.81175 + ], + [ + 404.0624, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 406.96042, + 343.5, + 5.25, + 11.81175 + ], + [ + 412.15793, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 419.4554, + 343.5, + 4.084503, + 11.81175 + ], + [ + 423.53992, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 428.13892, + 343.5, + 5.25, + 11.81175 + ], + [ + 433.4309, + 343.5, + 5.25, + 11.81175 + ], + [ + 438.62842, + 343.5, + 5.25, + 11.81175 + ], + [ + 443.9204, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 339.2, + 331.4, + 4.084503, + 11.81175 + ], + [ + 343.2005, + 331.4, + 5.25, + 11.81175 + ], + [ + 348.4925, + 331.4, + 4.084503, + 11.81175 + ], + [ + 352.577, + 331.4, + 2.9085083, + 11.81175 + ], + [ + 355.475, + 331.4, + 4.6514893, + 11.81175 + ], + [ + 360.074, + 331.4, + 8.158508, + 11.81175 + ], + [ + 368.264, + 331.4, + 2.625, + 11.81175 + ] + ] + }, + { + "id": 22, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "positions": [ + [ + 465.0, + 343.5, + 9.901489, + 11.81175 + ], + [ + 474.1035, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 478.70248, + 343.5, + 5.25, + 11.81175 + ], + [ + 483.99448, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 486.8925, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 491.4915, + 343.5, + 5.25, + 11.81175 + ], + [ + 496.78348, + 343.5, + 5.25, + 11.81175 + ], + [ + 504.67947, + 343.5, + 3.4964905, + 11.81175 + ], + [ + 508.17596, + 343.5, + 5.25, + 11.81175 + ], + [ + 513.3735, + 343.5, + 5.25, + 11.81175 + ], + [ + 518.66547, + 343.5, + 5.25, + 11.81175 + ], + [ + 523.863, + 343.5, + 4.0844727, + 11.81175 + ], + [ + 527.94745, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 530.84546, + 343.5, + 3.496521, + 11.81175 + ], + [ + 534.342, + 343.5, + 2.9085083, + 11.81175 + ], + [ + 537.24, + 343.5, + 4.6514893, + 11.81175 + ], + [ + 541.9335, + 343.5, + 4.0844727, + 11.81175 + ] + ] + }, + { + "id": 23, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 3, + 4, + 5 + ], + "positions": [ + [ + 77.9, + 313.8, + 6.993004, + 11.81175 + ], + [ + 84.893005, + 313.8, + 6.992996, + 11.81175 + ], + [ + 91.886, + 313.8, + 5.25, + 11.81175 + ], + [ + 99.782, + 313.8, + 2.9085007, + 11.81175 + ], + [ + 102.68, + 313.8, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 24, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10 + ], + "positions": [ + [ + 140.0, + 313.8, + 5.8379974, + 11.81175 + ], + [ + 145.79599, + 313.8, + 5.25, + 11.81175 + ], + [ + 150.99348, + 313.8, + 5.25, + 11.81175 + ], + [ + 156.28549, + 313.8, + 5.25, + 11.81175 + ], + [ + 161.48299, + 313.8, + 4.6515045, + 11.81175 + ], + [ + 166.1765, + 313.8, + 3.4965057, + 11.81175 + ], + [ + 169.673, + 313.8, + 2.908493, + 11.81175 + ], + [ + 172.571, + 313.8, + 4.6515045, + 11.81175 + ], + [ + 179.86852, + 313.8, + 6.992996, + 11.81175 + ], + [ + 186.86151, + 313.8, + 2.625, + 11.81175 + ] + ] + }, + { + "id": 25, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4 + ], + "positions": [ + [ + 217.1, + 313.8, + 5.25, + 11.81175 + ], + [ + 222.2975, + 313.8, + 5.25, + 11.81175 + ], + [ + 227.58951, + 313.8, + 5.25, + 11.81175 + ], + [ + 232.787, + 313.8, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 26, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ], + "positions": [ + [ + 274.8, + 313.8, + 3.4964905, + 11.81175 + ], + [ + 278.29648, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 283.88248, + 313.8, + 4.084503, + 11.81175 + ], + [ + 287.88297, + 313.8, + 5.25, + 11.81175 + ], + [ + 293.17496, + 313.8, + 5.25, + 11.81175 + ], + [ + 298.37247, + 313.8, + 5.25, + 11.81175 + ], + [ + 303.66446, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 306.56247, + 313.8, + 5.25, + 11.81175 + ], + [ + 314.45847, + 313.8, + 5.25, + 11.81175 + ], + [ + 319.65598, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 326.95346, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 329.85147, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 332.74948, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 335.6475, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 340.34097, + 313.8, + 5.25, + 11.81175 + ], + [ + 345.53848, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 350.23196, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 355.8285, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 358.7265, + 313.8, + 5.25, + 11.81175 + ], + [ + 366.6225, + 313.8, + 5.25, + 11.81175 + ], + [ + 371.82, + 313.8, + 3.4964905, + 11.81175 + ], + [ + 375.3165, + 313.8, + 5.25, + 11.81175 + ], + [ + 380.514, + 313.8, + 5.25, + 11.81175 + ], + [ + 385.806, + 313.8, + 5.25, + 11.81175 + ], + [ + 391.0035, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 395.697, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 402.99448, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 407.68796, + 313.8, + 5.25, + 11.81175 + ], + [ + 412.88547, + 313.8, + 5.25, + 11.81175 + ], + [ + 420.78146, + 313.8, + 4.084503, + 11.81175 + ], + [ + 424.86597, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 429.55945, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 432.45746, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 338.8, + 301.7, + 2.9085083, + 11.81175 + ], + [ + 341.698, + 301.7, + 5.25, + 11.81175 + ], + [ + 346.8955, + 301.7, + 5.25, + 11.81175 + ], + [ + 352.1875, + 301.7, + 4.6514893, + 11.81175 + ], + [ + 356.88098, + 301.7, + 4.6514893, + 11.81175 + ], + [ + 361.47998, + 301.7, + 4.6514893, + 11.81175 + ], + [ + 366.17346, + 301.7, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 27, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "positions": [ + [ + 458.7, + 313.8, + 7.5809937, + 11.81175 + ], + [ + 466.197, + 313.8, + 5.25, + 11.81175 + ], + [ + 471.48898, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 474.387, + 313.8, + 5.25, + 11.81175 + ], + [ + 479.5845, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 484.27798, + 313.8, + 5.25, + 11.81175 + ], + [ + 489.56998, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 492.468, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 495.366, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 502.66348, + 313.8, + 7.5809937, + 11.81175 + ], + [ + 510.25497, + 313.8, + 2.9084778, + 11.81175 + ], + [ + 513.15295, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 517.75195, + 313.8, + 5.25, + 11.81175 + ], + [ + 523.04395, + 313.8, + 5.25, + 11.81175 + ], + [ + 528.24146, + 313.8, + 5.25, + 11.81175 + ], + [ + 533.53345, + 313.8, + 4.0844727, + 11.81175 + ], + [ + 537.6179, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 540.5159, + 313.8, + 2.9085083, + 11.81175 + ], + [ + 543.41394, + 313.8, + 4.6514893, + 11.81175 + ], + [ + 548.1074, + 313.8, + 4.0844727, + 11.81175 + ] + ] + }, + { + "id": 28, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "positions": [ + [ + 79.8, + 284.0, + 6.404999, + 11.81175 + ], + [ + 86.205, + 284.0, + 6.404999, + 11.81175 + ], + [ + 92.61, + 284.0, + 2.9085007, + 11.81175 + ], + [ + 95.508, + 284.0, + 5.25, + 11.81175 + ], + [ + 100.8, + 284.0, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 29, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7 + ], + "positions": [ + [ + 146.8, + 284.0, + 5.8379974, + 11.81175 + ], + [ + 152.596, + 284.0, + 4.6515045, + 11.81175 + ], + [ + 157.2895, + 284.0, + 5.25, + 11.81175 + ], + [ + 162.487, + 284.0, + 4.6515045, + 11.81175 + ], + [ + 167.18051, + 284.0, + 3.4965057, + 11.81175 + ], + [ + 172.77702, + 284.0, + 7.5809937, + 11.81175 + ], + [ + 180.36852, + 284.0, + 2.625, + 11.81175 + ] + ] + }, + { + "id": 30, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4 + ], + "positions": [ + [ + 217.1, + 284.0, + 5.25, + 11.81175 + ], + [ + 222.2975, + 284.0, + 5.25, + 11.81175 + ], + [ + 227.58951, + 284.0, + 5.25, + 11.81175 + ], + [ + 232.787, + 284.0, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 31, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ], + "positions": [ + [ + 270.1, + 284.0, + 5.8380127, + 11.81175 + ], + [ + 275.89603, + 284.0, + 5.25, + 11.81175 + ], + [ + 281.09354, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 285.78702, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 288.68503, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 293.3785, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 298.88052, + 284.0, + 8.158508, + 11.81175 + ], + [ + 307.07053, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 311.66953, + 284.0, + 5.25, + 11.81175 + ], + [ + 316.96152, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 319.85953, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 327.157, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 330.05502, + 284.0, + 4.084503, + 11.81175 + ], + [ + 336.74353, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 339.64154, + 284.0, + 5.25, + 11.81175 + ], + [ + 344.93353, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 352.23102, + 284.0, + 3.4964905, + 11.81175 + ], + [ + 355.7275, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 360.3265, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 365.02, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 370.606, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 375.205, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 379.89847, + 284.0, + 5.25, + 11.81175 + ], + [ + 385.09598, + 284.0, + 4.084503, + 11.81175 + ], + [ + 389.18048, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 396.47797, + 284.0, + 5.25, + 11.81175 + ], + [ + 401.67548, + 284.0, + 3.4964905, + 11.81175 + ], + [ + 407.85995, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 410.66345, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 415.35693, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 419.95593, + 284.0, + 5.25, + 11.81175 + ], + [ + 425.24792, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 429.9414, + 284.0, + 5.25, + 11.81175 + ], + [ + 435.13892, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 331.3, + 271.90002, + 5.25, + 11.81175 + ], + [ + 336.4975, + 271.90002, + 4.6514893, + 11.81175 + ], + [ + 341.19098, + 271.90002, + 5.25, + 11.81175 + ], + [ + 346.3885, + 271.90002, + 3.4964905, + 11.81175 + ], + [ + 349.88498, + 271.90002, + 4.6514893, + 11.81175 + ], + [ + 354.57846, + 271.90002, + 4.084503, + 11.81175 + ], + [ + 358.66296, + 271.90002, + 4.084503, + 11.81175 + ], + [ + 362.74747, + 271.90002, + 2.9085083, + 11.81175 + ], + [ + 365.55096, + 271.90002, + 5.25, + 11.81175 + ], + [ + 370.84296, + 271.90002, + 5.25, + 11.81175 + ], + [ + 376.13495, + 271.90002, + 2.625, + 11.81175 + ] + ] + }, + { + "id": 32, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "positions": [ + [ + 466.4, + 284.0, + 6.404999, + 11.81175 + ], + [ + 472.1015, + 284.0, + 5.25, + 11.81175 + ], + [ + 477.3935, + 284.0, + 3.4964905, + 11.81175 + ], + [ + 480.79547, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 485.48895, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 488.38696, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 493.9835, + 284.0, + 6.9930115, + 11.81175 + ], + [ + 500.882, + 284.0, + 5.25, + 11.81175 + ], + [ + 506.17398, + 284.0, + 3.4964905, + 11.81175 + ], + [ + 509.67047, + 284.0, + 5.25, + 11.81175 + ], + [ + 514.868, + 284.0, + 5.25, + 11.81175 + ], + [ + 520.16, + 284.0, + 3.496521, + 11.81175 + ], + [ + 523.6565, + 284.0, + 4.6514893, + 11.81175 + ], + [ + 528.35, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 531.248, + 284.0, + 2.9085083, + 11.81175 + ], + [ + 534.146, + 284.0, + 5.25, + 11.81175 + ], + [ + 539.3435, + 284.0, + 5.25, + 11.81175 + ] + ] + }, + { + "id": 33, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 33, + 34, + 35, + 36, + 37, + 38 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 135.05501, + 692.1, + 10.180206, + 13.867801 + ], + [ + 145.23521, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 153.03252, + 692.1, + 8.600998, + 13.867801 + ], + [ + 161.71811, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 169.51541, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 177.31271, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 182.00801, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 185.91371, + 692.1, + 10.180206, + 13.867801 + ], + [ + 196.09392, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 199.99962, + 692.1, + 8.600998, + 13.867801 + ], + [ + 208.60062, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 217.28621, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 221.19191, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 229.79291, + 692.1, + 10.180206, + 13.867801 + ], + [ + 239.97311, + 692.1, + 8.600998, + 13.867801 + ], + [ + 248.57411, + 692.1, + 8.600998, + 13.867801 + ], + [ + 260.88342, + 692.1, + 8.601013, + 13.867801 + ], + [ + 269.48444, + 692.1, + 5.484894, + 13.867801 + ], + [ + 278.87503, + 692.1, + 10.180206, + 13.867801 + ], + [ + 289.05524, + 692.1, + 8.601013, + 13.867801 + ], + [ + 305.27026, + 692.1, + 10.955688, + 13.867801 + ], + [ + 316.25415, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 324.05145, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 335.83905, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 340.53436, + 692.1, + 8.601013, + 13.867801 + ], + [ + 349.13538, + 692.1, + 8.601013, + 13.867801 + ], + [ + 357.7364, + 692.1, + 8.601013, + 13.867801 + ], + [ + 366.3374, + 692.1, + 8.601013, + 13.867801 + ] + ] + }, + { + "id": 34, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 78, + 79, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 86, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 93, + 94, + 95, + 96, + 97, + 98, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 118, + 119, + 120, + 121, + 122, + 123, + 123, + 124, + 125, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 132, + 133, + 134, + 135, + 136, + 137 + ], + "positions": [ + [ + 56.8, + 673.8, + 6.1000023, + 11.535 + ], + [ + 62.9, + 673.8, + 4.4300003, + 11.535 + ], + [ + 67.3, + 673.8, + 5.0, + 11.535 + ], + [ + 72.3, + 673.8, + 5.0, + 11.535 + ], + [ + 77.3, + 673.8, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 673.8, + 2.7699966, + 11.535 + ], + [ + 86.99, + 673.8, + 6.659996, + 11.535 + ], + [ + 93.67999, + 673.8, + 5.0, + 11.535 + ], + [ + 98.67999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 673.8, + 5.0, + 11.535 + ], + [ + 110.66999, + 673.8, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 673.8, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 673.8, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 673.8, + 5.0, + 11.535 + ], + [ + 136.14998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 673.8, + 5.0, + 11.535 + ], + [ + 145.03998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 673.8, + 5.0, + 11.535 + ], + [ + 159.72998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 673.8, + 5.0, + 11.535 + ], + [ + 167.51999, + 673.8, + 5.0, + 11.535 + ], + [ + 172.51999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 673.8, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 56.8, + 662.2, + 7.2199974, + 11.535 + ], + [ + 63.999996, + 662.2, + 2.7700005, + 11.535 + ], + [ + 66.78999, + 662.2, + 5.0, + 11.535 + ], + [ + 71.78999, + 662.2, + 2.7699966, + 11.535 + ], + [ + 77.07999, + 662.2, + 6.6600037, + 11.535 + ], + [ + 83.67999, + 662.2, + 5.0, + 11.535 + ], + [ + 88.67999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 93.079994, + 662.2, + 5.0, + 11.535 + ], + [ + 100.66999, + 662.2, + 6.0999985, + 11.535 + ], + [ + 105.66999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 110.06999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 113.95999, + 662.2, + 2.7699966, + 11.535 + ], + [ + 116.749985, + 662.2, + 4.4300003, + 11.535 + ], + [ + 121.14999, + 662.2, + 5.0, + 11.535 + ], + [ + 126.14999, + 662.2, + 3.890007, + 11.535 + ], + [ + 130.04, + 662.2, + 5.0, + 11.535 + ], + [ + 135.04, + 662.2, + 2.7700043, + 11.535 + ], + [ + 137.83, + 662.2, + 4.4299927, + 11.535 + ], + [ + 144.73, + 662.2, + 5.0, + 11.535 + ], + [ + 149.73, + 662.2, + 2.7700043, + 11.535 + ], + [ + 152.52, + 662.2, + 5.0, + 11.535 + ], + [ + 157.52, + 662.2, + 5.0, + 11.535 + ], + [ + 162.52, + 662.2, + 4.4299927, + 11.535 + ], + [ + 169.42, + 662.2, + 2.7700043, + 11.535 + ], + [ + 172.21, + 662.2, + 3.8899994, + 11.535 + ], + [ + 178.6, + 662.2, + 6.6600037, + 11.535 + ], + [ + 185.29001, + 662.2, + 5.0, + 11.535 + ], + [ + 56.8, + 648.8, + 7.9920006, + 12.642 + ], + [ + 64.792, + 648.8, + 7.3199997, + 12.642 + ], + [ + 72.088, + 648.8, + 7.3199997, + 12.642 + ], + [ + 79.383995, + 648.8, + 3.3239975, + 12.642 + ], + [ + 82.68399, + 648.8, + 8.664001, + 12.642 + ], + [ + 91.371994, + 648.8, + 3.3239975, + 12.642 + ], + [ + 94.75599, + 648.8, + 3.3239975, + 12.642 + ], + [ + 98.055984, + 648.8, + 6.0, + 12.642 + ], + [ + 104.055984, + 648.8, + 6.0, + 12.642 + ], + [ + 110.055984, + 648.8, + 6.0, + 12.642 + ], + [ + 116.055984, + 648.8, + 3.3239975, + 12.642 + ], + [ + 122.35598, + 648.8, + 6.0000076, + 12.642 + ], + [ + 128.35599, + 648.8, + 3.3240051, + 12.642 + ], + [ + 131.73999, + 648.8, + 5.3159943, + 12.642 + ], + [ + 137.04399, + 648.8, + 3.3240051, + 12.642 + ], + [ + 140.344, + 648.8, + 3.3240051, + 12.642 + ], + [ + 143.644, + 648.8, + 6.0, + 12.642 + ], + [ + 149.644, + 648.8, + 6.0, + 12.642 + ], + [ + 155.644, + 648.8, + 5.3159943, + 12.642 + ], + [ + 160.948, + 648.8, + 3.9960022, + 12.642 + ], + [ + 164.944, + 648.8, + 6.0, + 12.642 + ], + [ + 174.028, + 648.8, + 5.3159943, + 12.642 + ], + [ + 179.332, + 648.8, + 6.0, + 12.642 + ], + [ + 185.332, + 648.8, + 3.3240051, + 12.642 + ], + [ + 188.632, + 648.8, + 3.9960022, + 12.642 + ], + [ + 192.628, + 648.8, + 6.0, + 12.642 + ], + [ + 56.8, + 635.0, + 7.9920006, + 12.642 + ], + [ + 64.792, + 635.0, + 7.3199997, + 12.642 + ], + [ + 72.088, + 635.0, + 7.3199997, + 12.642 + ], + [ + 81.988, + 635.0, + 8.664001, + 12.642 + ], + [ + 90.676, + 635.0, + 3.3239975, + 12.642 + ], + [ + 93.976, + 635.0, + 3.3239975, + 12.642 + ], + [ + 97.27599, + 635.0, + 6.0, + 12.642 + ], + [ + 103.27599, + 635.0, + 6.0, + 12.642 + ], + [ + 109.27599, + 635.0, + 6.0, + 12.642 + ], + [ + 115.27599, + 635.0, + 3.3239975, + 12.642 + ], + [ + 121.65999, + 635.0, + 6.671997, + 12.642 + ], + [ + 128.34398, + 635.0, + 3.3240051, + 12.642 + ], + [ + 131.64398, + 635.0, + 5.3159943, + 12.642 + ], + [ + 136.94798, + 635.0, + 4.6679993, + 12.642 + ], + [ + 141.63998, + 635.0, + 6.0, + 12.642 + ], + [ + 56.8, + 621.2, + 7.9920006, + 12.642 + ], + [ + 64.792, + 621.2, + 7.3199997, + 12.642 + ], + [ + 72.088, + 621.2, + 3.3239975, + 12.642 + ], + [ + 75.38799, + 621.2, + 8.664001, + 12.642 + ], + [ + 84.076, + 621.2, + 3.3239975, + 12.642 + ], + [ + 87.37599, + 621.2, + 3.3239975, + 12.642 + ], + [ + 90.67599, + 621.2, + 6.0, + 12.642 + ], + [ + 96.67599, + 621.2, + 6.0, + 12.642 + ], + [ + 102.67599, + 621.2, + 6.0, + 12.642 + ], + [ + 108.75999, + 621.2, + 3.3239975, + 12.642 + ], + [ + 115.05998, + 621.2, + 6.0, + 12.642 + ], + [ + 121.05998, + 621.2, + 3.3239975, + 12.642 + ], + [ + 124.35998, + 621.2, + 5.316002, + 12.642 + ], + [ + 129.74799, + 621.2, + 3.3240051, + 12.642 + ], + [ + 133.04799, + 621.2, + 3.3240051, + 12.642 + ], + [ + 136.34799, + 621.2, + 6.0, + 12.642 + ], + [ + 142.34799, + 621.2, + 6.0, + 12.642 + ], + [ + 148.34799, + 621.2, + 5.3159943, + 12.642 + ], + [ + 153.652, + 621.2, + 3.9960022, + 12.642 + ], + [ + 157.648, + 621.2, + 6.0, + 12.642 + ], + [ + 166.732, + 621.2, + 5.3159943, + 12.642 + ], + [ + 172.036, + 621.2, + 6.0, + 12.642 + ], + [ + 178.036, + 621.2, + 3.3240051, + 12.642 + ], + [ + 181.336, + 621.2, + 3.9960022, + 12.642 + ], + [ + 185.332, + 621.2, + 6.0, + 12.642 + ], + [ + 56.8, + 607.4, + 7.9920006, + 12.642 + ], + [ + 64.792, + 607.4, + 7.3199997, + 12.642 + ], + [ + 74.692, + 607.4, + 8.664001, + 12.642 + ], + [ + 83.380005, + 607.4, + 3.3239975, + 12.642 + ], + [ + 86.68, + 607.4, + 3.3239975, + 12.642 + ], + [ + 89.979996, + 607.4, + 6.0, + 12.642 + ], + [ + 95.979996, + 607.4, + 6.0, + 12.642 + ], + [ + 101.979996, + 607.4, + 6.0, + 12.642 + ], + [ + 107.979996, + 607.4, + 3.3239975, + 12.642 + ], + [ + 114.27999, + 607.4, + 6.671997, + 12.642 + ], + [ + 120.96399, + 607.4, + 3.3239975, + 12.642 + ], + [ + 124.263985, + 607.4, + 5.316002, + 12.642 + ], + [ + 129.568, + 607.4, + 4.6679993, + 12.642 + ], + [ + 134.26, + 607.4, + 6.0, + 12.642 + ] + ] + }, + { + "id": 35, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 18, + 19, + 20, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 62, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 69, + 70, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 91, + 92, + 93, + 94, + 95, + 96, + 96, + 97, + 98, + 99, + 100, + 100, + 101, + 102, + 103, + 104, + 104, + 105, + 106, + 107, + 108, + 109, + 109, + 110, + 111, + 111, + 112, + 113, + 114, + 115, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 125, + 126, + 127, + 128, + 129, + 130, + 130, + 131, + 132, + 133, + 134, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 141, + 142, + 143, + 144, + 145, + 146 + ], + "positions": [ + [ + 56.8, + 579.8, + 7.9920006, + 12.642 + ], + [ + 64.792, + 579.8, + 7.3199997, + 12.642 + ], + [ + 72.088, + 579.8, + 7.3199997, + 12.642 + ], + [ + 79.383995, + 579.8, + 3.3239975, + 12.642 + ], + [ + 82.68399, + 579.8, + 8.664001, + 12.642 + ], + [ + 91.371994, + 579.8, + 3.3239975, + 12.642 + ], + [ + 94.75599, + 579.8, + 3.3239975, + 12.642 + ], + [ + 98.055984, + 579.8, + 6.0, + 12.642 + ], + [ + 107.055984, + 579.8, + 6.0, + 12.642 + ], + [ + 113.055984, + 579.8, + 3.3239975, + 12.642 + ], + [ + 116.35598, + 579.8, + 5.316002, + 12.642 + ], + [ + 121.74398, + 579.8, + 3.3239975, + 12.642 + ], + [ + 125.043976, + 579.8, + 3.3240051, + 12.642 + ], + [ + 128.34398, + 579.8, + 6.0, + 12.642 + ], + [ + 134.34398, + 579.8, + 6.0, + 12.642 + ], + [ + 140.34398, + 579.8, + 5.3159943, + 12.642 + ], + [ + 145.64798, + 579.8, + 3.9960022, + 12.642 + ], + [ + 149.64398, + 579.8, + 6.0, + 12.642 + ], + [ + 158.72798, + 579.8, + 5.3159943, + 12.642 + ], + [ + 164.03198, + 579.8, + 6.0, + 12.642 + ], + [ + 170.03198, + 579.8, + 3.3240051, + 12.642 + ], + [ + 173.33199, + 579.8, + 3.9960022, + 12.642 + ], + [ + 177.32799, + 579.8, + 6.0, + 12.642 + ], + [ + 186.32799, + 579.8, + 6.0, + 12.642 + ], + [ + 192.32799, + 579.8, + 6.0, + 12.642 + ], + [ + 198.32799, + 579.8, + 6.0, + 12.642 + ], + [ + 204.32799, + 579.8, + 6.0, + 12.642 + ], + [ + 213.32799, + 579.8, + 8.664001, + 12.642 + ], + [ + 222.01599, + 579.8, + 3.3240051, + 12.642 + ], + [ + 225.316, + 579.8, + 3.3240051, + 12.642 + ], + [ + 228.616, + 579.8, + 6.0, + 12.642 + ], + [ + 237.7, + 579.8, + 6.671997, + 12.642 + ], + [ + 244.38399, + 579.8, + 3.3240051, + 12.642 + ], + [ + 247.68399, + 579.8, + 5.3159943, + 12.642 + ], + [ + 252.98799, + 579.8, + 4.6680145, + 12.642 + ], + [ + 257.68, + 579.8, + 6.0, + 12.642 + ], + [ + 56.8, + 566.0, + 7.9920006, + 12.642 + ], + [ + 64.792, + 566.0, + 7.3199997, + 12.642 + ], + [ + 72.088, + 566.0, + 7.3199997, + 12.642 + ], + [ + 81.988, + 566.0, + 8.664001, + 12.642 + ], + [ + 90.676, + 566.0, + 3.3239975, + 12.642 + ], + [ + 93.976, + 566.0, + 3.3239975, + 12.642 + ], + [ + 97.27599, + 566.0, + 6.0, + 12.642 + ], + [ + 106.27599, + 566.0, + 6.0, + 12.642 + ], + [ + 112.27599, + 566.0, + 3.3239975, + 12.642 + ], + [ + 115.57599, + 566.0, + 5.316002, + 12.642 + ], + [ + 120.96399, + 566.0, + 3.3239975, + 12.642 + ], + [ + 124.263985, + 566.0, + 3.3239975, + 12.642 + ], + [ + 127.56398, + 566.0, + 6.0, + 12.642 + ], + [ + 133.56398, + 566.0, + 6.0, + 12.642 + ], + [ + 139.56398, + 566.0, + 5.3159943, + 12.642 + ], + [ + 144.86798, + 566.0, + 3.9960022, + 12.642 + ], + [ + 148.86398, + 566.0, + 6.0, + 12.642 + ], + [ + 157.94798, + 566.0, + 5.3159943, + 12.642 + ], + [ + 163.25198, + 566.0, + 6.0, + 12.642 + ], + [ + 169.25198, + 566.0, + 3.3240051, + 12.642 + ], + [ + 172.55199, + 566.0, + 3.9960022, + 12.642 + ], + [ + 176.54799, + 566.0, + 6.0, + 12.642 + ], + [ + 185.54799, + 566.0, + 6.0, + 12.642 + ], + [ + 191.54799, + 566.0, + 6.0, + 12.642 + ], + [ + 197.54799, + 566.0, + 6.0, + 12.642 + ], + [ + 203.54799, + 566.0, + 6.0, + 12.642 + ], + [ + 212.54799, + 566.0, + 8.664001, + 12.642 + ], + [ + 221.236, + 566.0, + 3.3240051, + 12.642 + ], + [ + 224.536, + 566.0, + 3.3240051, + 12.642 + ], + [ + 227.836, + 566.0, + 6.0, + 12.642 + ], + [ + 233.836, + 566.0, + 6.0, + 12.642 + ], + [ + 239.836, + 566.0, + 6.0, + 12.642 + ], + [ + 245.92, + 566.0, + 3.3240051, + 12.642 + ], + [ + 252.22, + 566.0, + 6.671997, + 12.642 + ], + [ + 258.904, + 566.0, + 3.3240051, + 12.642 + ], + [ + 262.204, + 566.0, + 5.3160095, + 12.642 + ], + [ + 267.50803, + 566.0, + 4.6679993, + 12.642 + ], + [ + 272.2, + 566.0, + 6.0, + 12.642 + ], + [ + 56.8, + 552.2, + 7.9920006, + 12.642 + ], + [ + 64.792, + 552.2, + 7.3199997, + 12.642 + ], + [ + 72.088, + 552.2, + 3.3239975, + 12.642 + ], + [ + 75.38799, + 552.2, + 8.664001, + 12.642 + ], + [ + 84.076, + 552.2, + 3.3239975, + 12.642 + ], + [ + 87.37599, + 552.2, + 3.3239975, + 12.642 + ], + [ + 90.67599, + 552.2, + 6.0, + 12.642 + ], + [ + 99.75999, + 552.2, + 6.0, + 12.642 + ], + [ + 105.75999, + 552.2, + 3.3239975, + 12.642 + ], + [ + 109.05998, + 552.2, + 5.316002, + 12.642 + ], + [ + 114.36398, + 552.2, + 3.3239975, + 12.642 + ], + [ + 117.74798, + 552.2, + 3.3239975, + 12.642 + ], + [ + 121.04797, + 552.2, + 6.0, + 12.642 + ], + [ + 127.04797, + 552.2, + 6.0, + 12.642 + ], + [ + 133.04797, + 552.2, + 5.3159943, + 12.642 + ], + [ + 138.35197, + 552.2, + 3.9960022, + 12.642 + ], + [ + 142.34798, + 552.2, + 6.0, + 12.642 + ], + [ + 151.34798, + 552.2, + 5.3159943, + 12.642 + ], + [ + 156.65198, + 552.2, + 6.0, + 12.642 + ], + [ + 162.65198, + 552.2, + 3.3240051, + 12.642 + ], + [ + 165.95198, + 552.2, + 3.9960022, + 12.642 + ], + [ + 169.94798, + 552.2, + 6.0, + 12.642 + ], + [ + 179.03198, + 552.2, + 6.0, + 12.642 + ], + [ + 185.03198, + 552.2, + 6.0, + 12.642 + ], + [ + 191.03198, + 552.2, + 6.0, + 12.642 + ], + [ + 197.03198, + 552.2, + 6.0, + 12.642 + ], + [ + 206.03198, + 552.2, + 8.664001, + 12.642 + ], + [ + 214.71999, + 552.2, + 3.3240051, + 12.642 + ], + [ + 218.01999, + 552.2, + 3.3240051, + 12.642 + ], + [ + 221.31999, + 552.2, + 6.0, + 12.642 + ], + [ + 230.31999, + 552.2, + 6.671997, + 12.642 + ], + [ + 237.00398, + 552.2, + 3.3240051, + 12.642 + ], + [ + 240.30399, + 552.2, + 5.3159943, + 12.642 + ], + [ + 245.60799, + 552.2, + 4.6679993, + 12.642 + ], + [ + 250.29999, + 552.2, + 6.0, + 12.642 + ], + [ + 56.8, + 538.4, + 7.9920006, + 12.642 + ], + [ + 64.792, + 538.4, + 7.3199997, + 12.642 + ], + [ + 74.692, + 538.4, + 8.664001, + 12.642 + ], + [ + 83.380005, + 538.4, + 3.3239975, + 12.642 + ], + [ + 86.68, + 538.4, + 3.3239975, + 12.642 + ], + [ + 89.979996, + 538.4, + 6.0, + 12.642 + ], + [ + 98.979996, + 538.4, + 6.0, + 12.642 + ], + [ + 104.979996, + 538.4, + 3.3239975, + 12.642 + ], + [ + 108.27999, + 538.4, + 5.316002, + 12.642 + ], + [ + 113.58399, + 538.4, + 3.3239975, + 12.642 + ], + [ + 116.96799, + 538.4, + 3.3239975, + 12.642 + ], + [ + 120.26798, + 538.4, + 6.0, + 12.642 + ], + [ + 126.26798, + 538.4, + 5.9999924, + 12.642 + ], + [ + 132.26797, + 538.4, + 5.3159943, + 12.642 + ], + [ + 137.57198, + 538.4, + 3.9960022, + 12.642 + ], + [ + 141.56798, + 538.4, + 6.0, + 12.642 + ], + [ + 150.56798, + 538.4, + 5.3159943, + 12.642 + ], + [ + 155.87198, + 538.4, + 6.0, + 12.642 + ], + [ + 161.95598, + 538.4, + 3.3240051, + 12.642 + ], + [ + 165.25598, + 538.4, + 3.9960022, + 12.642 + ], + [ + 169.25198, + 538.4, + 6.0, + 12.642 + ], + [ + 178.25198, + 538.4, + 6.0, + 12.642 + ], + [ + 184.25198, + 538.4, + 6.0, + 12.642 + ], + [ + 190.25198, + 538.4, + 6.0, + 12.642 + ], + [ + 196.25198, + 538.4, + 6.0, + 12.642 + ], + [ + 205.25198, + 538.4, + 8.664001, + 12.642 + ], + [ + 213.93999, + 538.4, + 3.3240051, + 12.642 + ], + [ + 217.23999, + 538.4, + 3.3240051, + 12.642 + ], + [ + 220.54, + 538.4, + 6.0, + 12.642 + ], + [ + 226.54, + 538.4, + 6.0, + 12.642 + ], + [ + 232.54, + 538.4, + 6.0, + 12.642 + ], + [ + 238.54, + 538.4, + 3.3240051, + 12.642 + ], + [ + 244.924, + 538.4, + 6.671997, + 12.642 + ], + [ + 251.60799, + 538.4, + 3.3240051, + 12.642 + ], + [ + 254.90799, + 538.4, + 5.3160095, + 12.642 + ], + [ + 260.212, + 538.4, + 4.6679993, + 12.642 + ], + [ + 264.904, + 538.4, + 6.0, + 12.642 + ] + ] + }, + { + "id": 36, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 39, + 40, + 41, + 41, + 42, + 43, + 44 + ], + "positions": [ + [ + 56.8, + 488.0, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 488.0, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 488.0, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 488.0, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 488.0, + 4.6952972, + 13.867801 + ], + [ + 135.05501, + 488.0, + 10.180206, + 13.867801 + ], + [ + 145.23521, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 153.03252, + 488.0, + 8.600998, + 13.867801 + ], + [ + 161.71811, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 169.51541, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 177.31271, + 488.0, + 4.6952972, + 13.867801 + ], + [ + 185.9983, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 193.79561, + 488.0, + 8.600998, + 13.867801 + ], + [ + 202.3966, + 488.0, + 8.600998, + 13.867801 + ], + [ + 214.9879, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 222.7852, + 488.0, + 8.600998, + 13.867801 + ], + [ + 231.3862, + 488.0, + 8.600998, + 13.867801 + ], + [ + 243.9775, + 488.0, + 5.484894, + 13.867801 + ], + [ + 249.46239, + 488.0, + 7.839615, + 13.867801 + ], + [ + 257.2597, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 265.057, + 488.0, + 8.601013, + 13.867801 + ], + [ + 273.65802, + 488.0, + 12.534912, + 13.867801 + ], + [ + 286.24933, + 488.0, + 12.534912, + 13.867801 + ], + [ + 298.75604, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 306.55334, + 488.0, + 8.601013, + 13.867801 + ], + [ + 315.15436, + 488.0, + 8.601013, + 13.867801 + ], + [ + 323.83997, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 331.63727, + 488.0, + 4.6953125, + 13.867801 + ], + [ + 336.33258, + 488.0, + 3.9057007, + 13.867801 + ], + [ + 340.23828, + 488.0, + 8.601013, + 13.867801 + ], + [ + 348.8393, + 488.0, + 8.601013, + 13.867801 + ], + [ + 361.4306, + 488.0, + 4.6953125, + 13.867801 + ], + [ + 366.12592, + 488.0, + 8.601013, + 13.867801 + ], + [ + 374.72693, + 488.0, + 5.484894, + 13.867801 + ], + [ + 384.11752, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 391.91483, + 488.0, + 4.6953125, + 13.867801 + ], + [ + 400.51584, + 488.0, + 7.8395996, + 13.867801 + ], + [ + 408.39774, + 488.0, + 3.9057007, + 13.867801 + ], + [ + 412.30344, + 488.0, + 3.9057007, + 13.867801 + ] + ] + }, + { + "id": 37, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 61, + 62, + 63, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 73, + 74, + 75, + 76, + 77, + 78, + 78, + 79, + 80, + 80, + 81, + 82, + 83, + 83, + 84, + 84, + 85, + 86, + 86, + 87, + 88, + 89, + 90, + 91, + 91, + 92, + 93, + 94, + 95, + 96, + 96, + 97, + 98, + 99, + 100, + 101, + 101, + 102, + 103, + 104, + 104, + 105, + 106, + 107, + 108, + 109, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 130, + 131, + 132, + 133, + 134, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 141, + 142, + 143, + 143, + 144, + 145, + 145, + 146, + 147, + 148, + 148, + 149, + 150, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 173, + 174, + 175, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 181, + 182, + 183, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 189, + 190, + 191, + 192, + 193, + 194, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 207, + 208, + 209, + 209, + 210, + 211, + 212, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 221, + 222, + 223, + 223, + 224, + 225, + 226, + 227, + 228, + 228, + 229, + 230, + 231, + 232, + 233, + 233, + 234, + 235, + 236, + 237, + 238, + 239 + ], + "positions": [ + [ + 56.8, + 469.7, + 6.1000023, + 11.535 + ], + [ + 62.9, + 469.7, + 4.4300003, + 11.535 + ], + [ + 67.3, + 469.7, + 5.0, + 11.535 + ], + [ + 72.3, + 469.7, + 5.0, + 11.535 + ], + [ + 77.3, + 469.7, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 469.7, + 2.7699966, + 11.535 + ], + [ + 86.99, + 469.7, + 5.5599976, + 11.535 + ], + [ + 91.689995, + 469.7, + 4.4300003, + 11.535 + ], + [ + 96.09, + 469.7, + 3.8899994, + 11.535 + ], + [ + 99.979996, + 469.7, + 7.220001, + 11.535 + ], + [ + 109.68, + 469.7, + 5.5599976, + 11.535 + ], + [ + 115.27, + 469.7, + 7.220001, + 11.535 + ], + [ + 122.47, + 469.7, + 4.4300003, + 11.535 + ], + [ + 126.87, + 469.7, + 3.890007, + 11.535 + ], + [ + 130.76001, + 469.7, + 2.7700043, + 11.535 + ], + [ + 133.55002, + 469.7, + 3.8899994, + 11.535 + ], + [ + 137.05002, + 469.7, + 4.4299927, + 11.535 + ], + [ + 141.54001, + 469.7, + 4.4299927, + 11.535 + ], + [ + 145.94, + 469.7, + 5.5599976, + 11.535 + ], + [ + 151.53, + 469.7, + 2.5, + 11.535 + ], + [ + 156.53, + 469.7, + 5.5599976, + 11.535 + ], + [ + 162.12, + 469.7, + 8.330002, + 11.535 + ], + [ + 170.42, + 469.7, + 4.4299927, + 11.535 + ], + [ + 174.81999, + 469.7, + 2.7700043, + 11.535 + ], + [ + 177.61, + 469.7, + 5.0, + 11.535 + ], + [ + 182.61, + 469.7, + 5.0, + 11.535 + ], + [ + 187.61, + 469.7, + 2.7700043, + 11.535 + ], + [ + 190.40001, + 469.7, + 4.4299927, + 11.535 + ], + [ + 194.8, + 469.7, + 5.5599976, + 11.535 + ], + [ + 202.89, + 469.7, + 5.0, + 11.535 + ], + [ + 207.89, + 469.7, + 5.0, + 11.535 + ], + [ + 212.89, + 469.7, + 5.0, + 11.535 + ], + [ + 220.39, + 469.7, + 5.0, + 11.535 + ], + [ + 225.39, + 469.7, + 5.0, + 11.535 + ], + [ + 230.39, + 469.7, + 5.0, + 11.535 + ], + [ + 237.89, + 469.7, + 2.7700043, + 11.535 + ], + [ + 240.68001, + 469.7, + 5.0, + 11.535 + ], + [ + 248.18001, + 469.7, + 6.100006, + 11.535 + ], + [ + 254.28001, + 469.7, + 4.430008, + 11.535 + ], + [ + 258.68002, + 469.7, + 4.4299927, + 11.535 + ], + [ + 263.08002, + 469.7, + 5.0, + 11.535 + ], + [ + 268.08002, + 469.7, + 7.220001, + 11.535 + ], + [ + 275.28003, + 469.7, + 7.220001, + 11.535 + ], + [ + 282.57004, + 469.7, + 4.4299927, + 11.535 + ], + [ + 286.97003, + 469.7, + 5.0, + 11.535 + ], + [ + 291.97003, + 469.7, + 5.0, + 11.535 + ], + [ + 296.97003, + 469.7, + 5.0, + 11.535 + ], + [ + 301.97003, + 469.7, + 2.769989, + 11.535 + ], + [ + 304.76, + 469.7, + 2.769989, + 11.535 + ], + [ + 307.55, + 469.7, + 5.0, + 11.535 + ], + [ + 312.55, + 469.7, + 5.0, + 11.535 + ], + [ + 320.05, + 469.7, + 6.6600037, + 11.535 + ], + [ + 326.74, + 469.7, + 6.100006, + 11.535 + ], + [ + 332.84, + 469.7, + 3.3299866, + 11.535 + ], + [ + 338.43997, + 469.7, + 6.100006, + 11.535 + ], + [ + 344.53998, + 469.7, + 5.0, + 11.535 + ], + [ + 349.53998, + 469.7, + 2.769989, + 11.535 + ], + [ + 352.32996, + 469.7, + 5.0, + 11.535 + ], + [ + 357.32996, + 469.7, + 5.0, + 11.535 + ], + [ + 362.32996, + 469.7, + 3.8900146, + 11.535 + ], + [ + 366.21997, + 469.7, + 3.8900146, + 11.535 + ], + [ + 372.61, + 469.7, + 2.769989, + 11.535 + ], + [ + 375.30997, + 469.7, + 2.769989, + 11.535 + ], + [ + 380.59995, + 469.7, + 6.100006, + 11.535 + ], + [ + 385.59995, + 469.7, + 4.4299927, + 11.535 + ], + [ + 389.99994, + 469.7, + 3.8900146, + 11.535 + ], + [ + 393.88995, + 469.7, + 2.769989, + 11.535 + ], + [ + 396.67993, + 469.7, + 4.4299927, + 11.535 + ], + [ + 401.07993, + 469.7, + 5.0, + 11.535 + ], + [ + 406.07993, + 469.7, + 3.8900146, + 11.535 + ], + [ + 409.96994, + 469.7, + 5.0, + 11.535 + ], + [ + 414.96994, + 469.7, + 2.769989, + 11.535 + ], + [ + 417.75992, + 469.7, + 4.4299927, + 11.535 + ], + [ + 424.7499, + 469.7, + 5.0, + 11.535 + ], + [ + 429.7499, + 469.7, + 2.769989, + 11.535 + ], + [ + 432.5399, + 469.7, + 5.0, + 11.535 + ], + [ + 437.5399, + 469.7, + 5.0, + 11.535 + ], + [ + 442.5399, + 469.7, + 4.4299927, + 11.535 + ], + [ + 449.43988, + 469.7, + 2.769989, + 11.535 + ], + [ + 452.22986, + 469.7, + 3.8900146, + 11.535 + ], + [ + 458.61987, + 469.7, + 5.5599976, + 11.535 + ], + [ + 463.21988, + 469.7, + 4.4299927, + 11.535 + ], + [ + 467.61987, + 469.7, + 3.8900146, + 11.535 + ], + [ + 474.0099, + 469.7, + 7.769989, + 11.535 + ], + [ + 484.29987, + 469.7, + 6.6600037, + 11.535 + ], + [ + 490.98987, + 469.7, + 5.0, + 11.535 + ], + [ + 56.8, + 456.3, + 7.3200035, + 12.642 + ], + [ + 64.096, + 456.3, + 6.0, + 12.642 + ], + [ + 70.096, + 456.3, + 3.9960022, + 12.642 + ], + [ + 74.092, + 456.3, + 5.316002, + 12.642 + ], + [ + 79.396, + 456.3, + 9.3239975, + 12.642 + ], + [ + 91.78, + 456.3, + 3.3239975, + 12.642 + ], + [ + 95.079994, + 456.3, + 6.0, + 12.642 + ], + [ + 101.079994, + 456.3, + 4.6679993, + 12.642 + ], + [ + 105.771996, + 456.3, + 6.0, + 12.642 + ], + [ + 111.771996, + 456.3, + 9.3239975, + 12.642 + ], + [ + 124.07199, + 456.3, + 6.0, + 12.642 + ], + [ + 130.07199, + 456.3, + 6.0, + 12.642 + ], + [ + 136.07199, + 456.3, + 3.3240051, + 12.642 + ], + [ + 139.372, + 456.3, + 6.0, + 12.642 + ], + [ + 145.372, + 456.3, + 3.9960022, + 12.642 + ], + [ + 152.368, + 456.3, + 4.6679993, + 12.642 + ], + [ + 157.06, + 456.3, + 3.3240051, + 12.642 + ], + [ + 160.36, + 456.3, + 3.3240051, + 12.642 + ], + [ + 166.744, + 456.3, + 5.3159943, + 12.642 + ], + [ + 172.048, + 456.3, + 9.324005, + 12.642 + ], + [ + 181.348, + 456.3, + 5.3159943, + 12.642 + ], + [ + 186.65201, + 456.3, + 3.3240051, + 12.642 + ], + [ + 189.95201, + 456.3, + 3.0, + 12.642 + ], + [ + 196.03601, + 456.3, + 5.3159943, + 12.642 + ], + [ + 201.34001, + 456.3, + 6.0, + 12.642 + ], + [ + 207.34001, + 456.3, + 6.0, + 12.642 + ], + [ + 213.34001, + 456.3, + 4.6679993, + 12.642 + ], + [ + 218.03201, + 456.3, + 5.3159943, + 12.642 + ], + [ + 223.33601, + 456.3, + 5.3159943, + 12.642 + ], + [ + 228.64001, + 456.3, + 3.3240051, + 12.642 + ], + [ + 231.94002, + 456.3, + 5.3159943, + 12.642 + ], + [ + 237.32802, + 456.3, + 3.3240051, + 12.642 + ], + [ + 240.62802, + 456.3, + 6.0, + 12.642 + ], + [ + 246.62802, + 456.3, + 3.9960022, + 12.642 + ], + [ + 253.62402, + 456.3, + 5.3160095, + 12.642 + ], + [ + 258.92804, + 456.3, + 6.0, + 12.642 + ], + [ + 264.92804, + 456.3, + 3.3240051, + 12.642 + ], + [ + 268.22806, + 456.3, + 6.0, + 12.642 + ], + [ + 274.31207, + 456.3, + 3.3240051, + 12.642 + ], + [ + 277.6121, + 456.3, + 4.6679993, + 12.642 + ], + [ + 282.30408, + 456.3, + 5.3160095, + 12.642 + ], + [ + 287.6081, + 456.3, + 3.3240051, + 12.642 + ], + [ + 290.9081, + 456.3, + 6.0, + 12.642 + ], + [ + 296.9081, + 456.3, + 6.0, + 12.642 + ], + [ + 305.9081, + 456.3, + 5.3160095, + 12.642 + ], + [ + 311.21213, + 456.3, + 3.3240051, + 12.642 + ], + [ + 314.59613, + 456.3, + 3.3240051, + 12.642 + ], + [ + 317.89615, + 456.3, + 3.3240051, + 12.642 + ], + [ + 324.28015, + 456.3, + 8.664001, + 12.642 + ], + [ + 332.96814, + 456.3, + 5.3160095, + 12.642 + ], + [ + 338.16415, + 456.3, + 4.6679993, + 12.642 + ], + [ + 342.85614, + 456.3, + 3.3240051, + 12.642 + ], + [ + 346.15616, + 456.3, + 3.9960022, + 12.642 + ], + [ + 350.15216, + 456.3, + 5.3160095, + 12.642 + ], + [ + 355.54016, + 456.3, + 5.3160095, + 12.642 + ], + [ + 363.84418, + 456.3, + 5.3160095, + 12.642 + ], + [ + 369.1482, + 456.3, + 3.3240051, + 12.642 + ], + [ + 375.5322, + 456.3, + 5.3160095, + 12.642 + ], + [ + 380.8362, + 456.3, + 3.3240051, + 12.642 + ], + [ + 387.13623, + 456.3, + 4.6679993, + 12.642 + ], + [ + 391.82822, + 456.3, + 5.3160095, + 12.642 + ], + [ + 397.13223, + 456.3, + 6.0, + 12.642 + ], + [ + 406.13223, + 456.3, + 6.0, + 12.642 + ], + [ + 412.13223, + 456.3, + 6.0, + 12.642 + ], + [ + 421.13223, + 456.3, + 5.3160095, + 12.642 + ], + [ + 426.43625, + 456.3, + 3.3240051, + 12.642 + ], + [ + 429.73627, + 456.3, + 6.0, + 12.642 + ], + [ + 435.73627, + 456.3, + 4.6679993, + 12.642 + ], + [ + 440.42825, + 456.3, + 9.324005, + 12.642 + ], + [ + 449.72827, + 456.3, + 6.0, + 12.642 + ], + [ + 455.72827, + 456.3, + 6.0, + 12.642 + ], + [ + 464.8123, + 456.3, + 3.3240051, + 12.642 + ], + [ + 468.1123, + 456.3, + 5.3160095, + 12.642 + ], + [ + 473.41632, + 456.3, + 9.324005, + 12.642 + ], + [ + 482.71634, + 456.3, + 6.0, + 12.642 + ], + [ + 488.71634, + 456.3, + 6.0, + 12.642 + ], + [ + 494.71634, + 456.3, + 3.9960022, + 12.642 + ], + [ + 501.80835, + 456.3, + 3.3240051, + 12.642 + ], + [ + 505.10837, + 456.3, + 6.0, + 12.642 + ], + [ + 511.10837, + 456.3, + 5.3160095, + 12.642 + ], + [ + 516.41235, + 456.3, + 3.3239746, + 12.642 + ], + [ + 519.71234, + 456.3, + 6.0, + 12.642 + ], + [ + 525.71234, + 456.3, + 3.3239746, + 12.642 + ], + [ + 529.0123, + 456.3, + 6.0, + 12.642 + ], + [ + 535.0123, + 456.3, + 6.0, + 12.642 + ], + [ + 541.0123, + 456.3, + 6.0, + 12.642 + ], + [ + 547.0963, + 456.3, + 3.3239746, + 12.642 + ], + [ + 56.8, + 442.5, + 6.0, + 12.642 + ], + [ + 62.8, + 442.5, + 3.3240013, + 12.642 + ], + [ + 69.1, + 442.5, + 3.3239975, + 12.642 + ], + [ + 72.399994, + 442.5, + 5.316002, + 12.642 + ], + [ + 77.703995, + 442.5, + 6.0, + 12.642 + ], + [ + 83.703995, + 442.5, + 6.0, + 12.642 + ], + [ + 89.703995, + 442.5, + 3.9960022, + 12.642 + ], + [ + 93.7, + 442.5, + 5.316002, + 12.642 + ], + [ + 102.088, + 442.5, + 5.316002, + 12.642 + ], + [ + 107.392, + 442.5, + 3.3239975, + 12.642 + ], + [ + 113.77599, + 442.5, + 6.0, + 12.642 + ], + [ + 119.77599, + 442.5, + 6.0, + 12.642 + ], + [ + 125.77599, + 442.5, + 3.3239975, + 12.642 + ], + [ + 129.07599, + 442.5, + 6.0, + 12.642 + ], + [ + 135.07599, + 442.5, + 3.9960022, + 12.642 + ], + [ + 139.07199, + 442.5, + 5.3159943, + 12.642 + ], + [ + 147.37599, + 442.5, + 9.324005, + 12.642 + ], + [ + 156.676, + 442.5, + 5.3159943, + 12.642 + ], + [ + 161.98, + 442.5, + 6.0, + 12.642 + ], + [ + 167.98, + 442.5, + 6.0, + 12.642 + ], + [ + 173.98, + 442.5, + 5.3159943, + 12.642 + ], + [ + 182.368, + 442.5, + 5.3159943, + 12.642 + ], + [ + 187.672, + 442.5, + 3.3240051, + 12.642 + ], + [ + 190.972, + 442.5, + 3.3240051, + 12.642 + ], + [ + 194.272, + 442.5, + 6.0, + 12.642 + ], + [ + 200.272, + 442.5, + 6.0, + 12.642 + ], + [ + 206.356, + 442.5, + 5.3159943, + 12.642 + ], + [ + 214.66, + 442.5, + 10.667999, + 12.642 + ], + [ + 225.352, + 442.5, + 5.3159943, + 12.642 + ], + [ + 230.656, + 442.5, + 3.3240051, + 12.642 + ], + [ + 233.95601, + 442.5, + 5.3159943, + 12.642 + ], + [ + 239.26001, + 442.5, + 6.0, + 12.642 + ], + [ + 245.26001, + 442.5, + 3.3240051, + 12.642 + ], + [ + 248.64401, + 442.5, + 5.3159943, + 12.642 + ], + [ + 256.948, + 442.5, + 5.3160095, + 12.642 + ], + [ + 262.252, + 442.5, + 3.3240051, + 12.642 + ], + [ + 268.63602, + 442.5, + 5.3160095, + 12.642 + ], + [ + 273.94003, + 442.5, + 3.3240051, + 12.642 + ], + [ + 277.24005, + 442.5, + 3.0, + 12.642 + ], + [ + 283.24005, + 442.5, + 7.9920044, + 12.642 + ], + [ + 291.23206, + 442.5, + 5.3160095, + 12.642 + ], + [ + 296.53607, + 442.5, + 3.9960022, + 12.642 + ], + [ + 300.53207, + 442.5, + 5.3160095, + 12.642 + ], + [ + 305.8361, + 442.5, + 3.9960022, + 12.642 + ], + [ + 309.9281, + 442.5, + 5.3160095, + 12.642 + ], + [ + 315.23212, + 442.5, + 6.0, + 12.642 + ], + [ + 321.23212, + 442.5, + 5.3160095, + 12.642 + ], + [ + 326.53613, + 442.5, + 5.3160095, + 12.642 + ], + [ + 334.92413, + 442.5, + 8.664001, + 12.642 + ], + [ + 343.52814, + 442.5, + 6.0, + 12.642 + ], + [ + 352.52814, + 442.5, + 6.0, + 12.642 + ], + [ + 358.52814, + 442.5, + 6.0, + 12.642 + ], + [ + 364.52814, + 442.5, + 6.0, + 12.642 + ], + [ + 370.52814, + 442.5, + 6.0, + 12.642 + ], + [ + 376.52814, + 442.5, + 6.0, + 12.642 + ], + [ + 385.52814, + 442.5, + 7.3200073, + 12.642 + ], + [ + 392.82416, + 442.5, + 6.0, + 12.642 + ], + [ + 398.82416, + 442.5, + 3.9960022, + 12.642 + ], + [ + 402.82016, + 442.5, + 5.3160095, + 12.642 + ], + [ + 408.20816, + 442.5, + 9.324005, + 12.642 + ], + [ + 420.50818, + 442.5, + 3.3240051, + 12.642 + ], + [ + 423.8082, + 442.5, + 6.0, + 12.642 + ], + [ + 429.8082, + 442.5, + 4.6679993, + 12.642 + ], + [ + 434.50018, + 442.5, + 6.0, + 12.642 + ], + [ + 440.50018, + 442.5, + 9.324005, + 12.642 + ], + [ + 449.8002, + 442.5, + 3.0, + 12.642 + ] + ] + }, + { + "id": 38, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 39, + 40, + 41, + 41, + 42, + 43, + 44, + 45, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69 + ], + "positions": [ + [ + 56.8, + 392.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 392.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 392.1, + 4.6952972, + 13.867801 + ], + [ + 134.54741, + 392.1, + 10.180206, + 13.867801 + ], + [ + 144.72762, + 392.1, + 8.600998, + 13.867801 + ], + [ + 153.32861, + 392.1, + 8.600998, + 13.867801 + ], + [ + 165.9199, + 392.1, + 5.484894, + 13.867801 + ], + [ + 171.4048, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 179.2021, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 186.9994, + 392.1, + 8.600998, + 13.867801 + ], + [ + 195.6004, + 392.1, + 12.534897, + 13.867801 + ], + [ + 208.1917, + 392.1, + 12.534897, + 13.867801 + ], + [ + 220.6984, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 228.4957, + 392.1, + 8.600998, + 13.867801 + ], + [ + 237.0967, + 392.1, + 8.600998, + 13.867801 + ], + [ + 245.78229, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 253.57959, + 392.1, + 4.6953125, + 13.867801 + ], + [ + 258.2749, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 262.1806, + 392.1, + 8.601013, + 13.867801 + ], + [ + 270.78162, + 392.1, + 8.601013, + 13.867801 + ], + [ + 283.37292, + 392.1, + 4.6953125, + 13.867801 + ], + [ + 288.06824, + 392.1, + 8.601013, + 13.867801 + ], + [ + 296.66925, + 392.1, + 5.484894, + 13.867801 + ], + [ + 305.55225, + 392.1, + 10.180206, + 13.867801 + ], + [ + 315.73245, + 392.1, + 8.601013, + 13.867801 + ], + [ + 324.33347, + 392.1, + 8.601013, + 13.867801 + ], + [ + 332.93448, + 392.1, + 5.484894, + 13.867801 + ], + [ + 338.41937, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 346.21667, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 354.01398, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 361.89587, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 369.69318, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 381.48077, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 385.38647, + 392.1, + 8.601013, + 13.867801 + ], + [ + 397.8932, + 392.1, + 8.601013, + 13.867801 + ], + [ + 405.4931, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 413.2904, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 421.0877, + 392.1, + 4.6953125, + 13.867801 + ], + [ + 429.77332, + 392.1, + 10.955688, + 13.867801 + ], + [ + 440.6726, + 392.1, + 5.484894, + 13.867801 + ], + [ + 446.1575, + 392.1, + 8.601013, + 13.867801 + ], + [ + 454.8431, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 462.6404, + 392.1, + 8.601013, + 13.867801 + ], + [ + 471.24142, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 475.14713, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 483.02902, + 392.1, + 12.534912, + 13.867801 + ], + [ + 495.53574, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 499.44144, + 392.1, + 10.180206, + 13.867801 + ], + [ + 509.62164, + 392.1, + 8.601013, + 13.867801 + ], + [ + 518.22266, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 522.12836, + 392.1, + 12.534912, + 13.867801 + ], + [ + 534.71967, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 542.51697, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 546.42267, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 56.8, + 375.9, + 7.8396034, + 13.867801 + ], + [ + 64.597305, + 375.9, + 7.8395996, + 13.867801 + ], + [ + 72.4792, + 375.9, + 7.8395996, + 13.867801 + ], + [ + 80.276505, + 375.9, + 4.6952972, + 13.867801 + ], + [ + 84.9718, + 375.9, + 3.9057007, + 13.867801 + ], + [ + 88.8775, + 375.9, + 8.600998, + 13.867801 + ], + [ + 97.4785, + 375.9, + 8.600998, + 13.867801 + ], + [ + 106.0795, + 375.9, + 7.8395996, + 13.867801 + ] + ] + }, + { + "id": 39, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 88, + 89, + 90, + 91, + 92, + 93, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103 + ], + "positions": [ + [ + 56.8, + 357.5, + 6.1000023, + 11.535 + ], + [ + 62.9, + 357.5, + 4.4300003, + 11.535 + ], + [ + 67.3, + 357.5, + 4.4300003, + 11.535 + ], + [ + 71.700005, + 357.5, + 5.0, + 11.535 + ], + [ + 76.700005, + 357.5, + 7.220001, + 11.535 + ], + [ + 83.990005, + 357.5, + 7.220001, + 11.535 + ], + [ + 91.19001, + 357.5, + 4.4300003, + 11.535 + ], + [ + 95.59001, + 357.5, + 5.0, + 11.535 + ], + [ + 100.59001, + 357.5, + 5.0, + 11.535 + ], + [ + 108.18001, + 357.5, + 5.0, + 11.535 + ], + [ + 113.18001, + 357.5, + 5.0, + 11.535 + ], + [ + 118.08001, + 357.5, + 2.7699966, + 11.535 + ], + [ + 120.87, + 357.5, + 4.4300003, + 11.535 + ], + [ + 127.86, + 357.5, + 2.7700043, + 11.535 + ], + [ + 130.56, + 357.5, + 2.7700043, + 11.535 + ], + [ + 135.85, + 357.5, + 6.100006, + 11.535 + ], + [ + 140.85, + 357.5, + 4.4299927, + 11.535 + ], + [ + 145.25, + 357.5, + 3.8899994, + 11.535 + ], + [ + 149.14, + 357.5, + 2.7700043, + 11.535 + ], + [ + 151.93001, + 357.5, + 4.4299927, + 11.535 + ], + [ + 156.33, + 357.5, + 5.0, + 11.535 + ], + [ + 161.33, + 357.5, + 3.8899994, + 11.535 + ], + [ + 165.22, + 357.5, + 5.0, + 11.535 + ], + [ + 170.22, + 357.5, + 2.7700043, + 11.535 + ], + [ + 173.01001, + 357.5, + 4.4299927, + 11.535 + ], + [ + 180.0, + 357.5, + 5.0, + 11.535 + ], + [ + 185.0, + 357.5, + 2.7700043, + 11.535 + ], + [ + 187.79001, + 357.5, + 5.0, + 11.535 + ], + [ + 192.79001, + 357.5, + 5.0, + 11.535 + ], + [ + 197.79001, + 357.5, + 4.4299927, + 11.535 + ], + [ + 204.69, + 357.5, + 2.7700043, + 11.535 + ], + [ + 207.48001, + 357.5, + 3.8899994, + 11.535 + ], + [ + 213.87001, + 357.5, + 5.5599976, + 11.535 + ], + [ + 218.47, + 357.5, + 4.4299927, + 11.535 + ], + [ + 222.87, + 357.5, + 3.8899994, + 11.535 + ], + [ + 226.76, + 357.5, + 2.5, + 11.535 + ], + [ + 231.76, + 357.5, + 4.4299927, + 11.535 + ], + [ + 236.15999, + 357.5, + 2.7700043, + 11.535 + ], + [ + 238.95, + 357.5, + 3.8899994, + 11.535 + ], + [ + 242.84, + 357.5, + 4.4299927, + 11.535 + ], + [ + 249.82999, + 357.5, + 5.0, + 11.535 + ], + [ + 254.82999, + 357.5, + 5.0, + 11.535 + ], + [ + 262.33, + 357.5, + 5.0, + 11.535 + ], + [ + 267.33, + 357.5, + 5.0, + 11.535 + ], + [ + 272.33, + 357.5, + 2.769989, + 11.535 + ], + [ + 275.11996, + 357.5, + 5.0, + 11.535 + ], + [ + 280.01996, + 357.5, + 2.769989, + 11.535 + ], + [ + 282.80994, + 357.5, + 5.0, + 11.535 + ], + [ + 287.80994, + 357.5, + 5.0, + 11.535 + ], + [ + 56.8, + 344.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 344.1, + 6.0, + 12.642 + ], + [ + 70.096, + 344.1, + 3.9960022, + 12.642 + ], + [ + 74.092, + 344.1, + 5.316002, + 12.642 + ], + [ + 79.396, + 344.1, + 9.3239975, + 12.642 + ], + [ + 91.78, + 344.1, + 3.3239975, + 12.642 + ], + [ + 95.079994, + 344.1, + 6.0, + 12.642 + ], + [ + 101.079994, + 344.1, + 4.6679993, + 12.642 + ], + [ + 105.771996, + 344.1, + 6.0, + 12.642 + ], + [ + 111.771996, + 344.1, + 9.3239975, + 12.642 + ], + [ + 124.07199, + 344.1, + 6.0, + 12.642 + ], + [ + 130.07199, + 344.1, + 6.0, + 12.642 + ], + [ + 136.07199, + 344.1, + 3.3240051, + 12.642 + ], + [ + 139.372, + 344.1, + 6.0, + 12.642 + ], + [ + 145.372, + 344.1, + 3.9960022, + 12.642 + ], + [ + 152.368, + 344.1, + 4.6679993, + 12.642 + ], + [ + 157.06, + 344.1, + 3.3240051, + 12.642 + ], + [ + 160.36, + 344.1, + 3.3240051, + 12.642 + ], + [ + 166.744, + 344.1, + 6.671997, + 12.642 + ], + [ + 173.344, + 344.1, + 6.0, + 12.642 + ], + [ + 179.344, + 344.1, + 5.3159943, + 12.642 + ], + [ + 184.648, + 344.1, + 5.3159943, + 12.642 + ], + [ + 190.036, + 344.1, + 3.3240051, + 12.642 + ], + [ + 193.336, + 344.1, + 5.3159943, + 12.642 + ], + [ + 198.64, + 344.1, + 4.6679993, + 12.642 + ], + [ + 203.332, + 344.1, + 3.3240051, + 12.642 + ], + [ + 209.716, + 344.1, + 10.667999, + 12.642 + ], + [ + 220.312, + 344.1, + 6.0, + 12.642 + ], + [ + 226.312, + 344.1, + 6.0, + 12.642 + ], + [ + 232.312, + 344.1, + 4.6679993, + 12.642 + ], + [ + 237.004, + 344.1, + 5.3159943, + 12.642 + ], + [ + 242.308, + 344.1, + 3.3240051, + 12.642 + ], + [ + 248.608, + 344.1, + 6.671997, + 12.642 + ], + [ + 255.29199, + 344.1, + 6.0, + 12.642 + ], + [ + 261.292, + 344.1, + 6.0, + 12.642 + ], + [ + 267.292, + 344.1, + 3.9960022, + 12.642 + ], + [ + 271.288, + 344.1, + 5.3160095, + 12.642 + ], + [ + 276.592, + 344.1, + 5.3160095, + 12.642 + ], + [ + 281.98, + 344.1, + 3.3240051, + 12.642 + ], + [ + 56.8, + 330.3, + 6.672001, + 12.642 + ], + [ + 63.484, + 330.3, + 3.3239975, + 12.642 + ], + [ + 66.784, + 330.3, + 5.316002, + 12.642 + ], + [ + 72.088, + 330.3, + 3.9960022, + 12.642 + ], + [ + 76.084, + 330.3, + 6.0, + 12.642 + ], + [ + 85.084, + 330.3, + 3.9960022, + 12.642 + ], + [ + 89.08, + 330.3, + 6.0, + 12.642 + ], + [ + 95.08, + 330.3, + 6.0, + 12.642 + ], + [ + 101.08, + 330.3, + 6.0, + 12.642 + ], + [ + 107.08, + 330.3, + 4.6679993, + 12.642 + ], + [ + 111.772, + 330.3, + 3.3239975, + 12.642 + ], + [ + 115.072, + 330.3, + 3.9960022, + 12.642 + ], + [ + 119.068, + 330.3, + 3.3239975, + 12.642 + ], + [ + 122.368, + 330.3, + 5.316002, + 12.642 + ], + [ + 127.672, + 330.3, + 4.6679993, + 12.642 + ] + ] + }, + { + "id": 40, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 41, + 42, + 43, + 44, + 45, + 46, + 46, + 47, + 48, + 49 + ], + "positions": [ + [ + 56.8, + 279.9, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 279.9, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 130.4443, + 279.9, + 4.6952972, + 13.867801 + ], + [ + 135.1396, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 142.9369, + 279.9, + 8.600998, + 13.867801 + ], + [ + 151.5379, + 279.9, + 8.600998, + 13.867801 + ], + [ + 160.1389, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 164.0446, + 279.9, + 4.6952972, + 13.867801 + ], + [ + 168.7399, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 172.6456, + 279.9, + 8.600998, + 13.867801 + ], + [ + 181.2466, + 279.9, + 8.600998, + 13.867801 + ], + [ + 189.93219, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 197.72949, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 201.6352, + 279.9, + 4.6952972, + 13.867801 + ], + [ + 210.23619, + 279.9, + 8.600998, + 13.867801 + ], + [ + 218.92178, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 226.71909, + 279.9, + 8.600998, + 13.867801 + ], + [ + 235.32008, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 243.11739, + 279.9, + 4.6952972, + 13.867801 + ], + [ + 247.81268, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 251.80298, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 259.60028, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 271.38788, + 279.9, + 8.601013, + 13.867801 + ], + [ + 278.9878, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 286.7851, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 294.5824, + 279.9, + 4.6953125, + 13.867801 + ], + [ + 299.2777, + 279.9, + 4.6953125, + 13.867801 + ], + [ + 307.87872, + 279.9, + 12.534912, + 13.867801 + ], + [ + 320.38544, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 324.37573, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 332.17303, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 339.97034, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 343.87604, + 279.9, + 8.601013, + 13.867801 + ], + [ + 352.56165, + 279.9, + 8.601013, + 13.867801 + ], + [ + 365.06836, + 279.9, + 4.6953125, + 13.867801 + ], + [ + 369.76367, + 279.9, + 3.9057007, + 13.867801 + ], + [ + 373.66937, + 279.9, + 5.484894, + 13.867801 + ], + [ + 379.15427, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 386.95157, + 279.9, + 4.6953125, + 13.867801 + ], + [ + 395.63718, + 279.9, + 10.180206, + 13.867801 + ], + [ + 405.81738, + 279.9, + 7.8395996, + 13.867801 + ], + [ + 413.6147, + 279.9, + 7.8395996, + 13.867801 + ] + ] + }, + { + "id": 41, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 63, + 64, + 65, + 65, + 66, + 67, + 68, + 68, + 69, + 70, + 71, + 72, + 73, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 86, + 87, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 94, + 95, + 96, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 103, + 104, + 105, + 106, + 107, + 108, + 108, + 109, + 110, + 111, + 112, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 119, + 120, + 121, + 122, + 123, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 139, + 140, + 141, + 142, + 143, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 149, + 150, + 151, + 152, + 153, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 167, + 168, + 169, + 170, + 171, + 172, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220 + ], + "positions": [ + [ + 56.8, + 261.59995, + 6.66, + 11.535 + ], + [ + 63.399998, + 261.59995, + 4.999996, + 11.535 + ], + [ + 68.399994, + 261.59995, + 2.7699966, + 11.535 + ], + [ + 71.18999, + 261.59995, + 5.0, + 11.535 + ], + [ + 76.18999, + 261.59995, + 2.7699966, + 11.535 + ], + [ + 78.97998, + 261.59995, + 5.0, + 11.535 + ], + [ + 83.97998, + 261.59995, + 5.0, + 11.535 + ], + [ + 91.47998, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 95.36998, + 261.59995, + 5.0, + 11.535 + ], + [ + 100.36998, + 261.59995, + 5.0, + 11.535 + ], + [ + 105.36998, + 261.59995, + 5.0, + 11.535 + ], + [ + 110.36998, + 261.59995, + 2.7699966, + 11.535 + ], + [ + 113.15997, + 261.59995, + 5.0, + 11.535 + ], + [ + 120.65997, + 261.59995, + 5.0, + 11.535 + ], + [ + 125.65997, + 261.59995, + 5.0, + 11.535 + ], + [ + 130.65997, + 261.59995, + 5.0, + 11.535 + ], + [ + 135.65997, + 261.59995, + 5.0, + 11.535 + ], + [ + 140.65997, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 145.05997, + 261.59995, + 5.0, + 11.535 + ], + [ + 152.55997, + 261.59995, + 5.0, + 11.535 + ], + [ + 157.55997, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 161.95996, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 166.35995, + 261.59995, + 5.0, + 11.535 + ], + [ + 171.35995, + 261.59995, + 5.0, + 11.535 + ], + [ + 176.35995, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 180.34996, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 187.24995, + 261.59995, + 5.0, + 11.535 + ], + [ + 192.24995, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 197.53996, + 261.59995, + 7.220001, + 11.535 + ], + [ + 204.73996, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 207.52997, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 211.41997, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 215.30997, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 218.09998, + 261.59995, + 5.0, + 11.535 + ], + [ + 223.09998, + 261.59995, + 5.0, + 11.535 + ], + [ + 230.59998, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 233.29997, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 236.08998, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 239.97998, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 243.86998, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 246.56998, + 261.59995, + 2.7700043, + 11.535 + ], + [ + 249.35999, + 261.59995, + 3.8899994, + 11.535 + ], + [ + 253.24998, + 261.59995, + 4.430008, + 11.535 + ], + [ + 257.74, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 262.13998, + 261.59995, + 5.0, + 11.535 + ], + [ + 267.13998, + 261.59995, + 5.0, + 11.535 + ], + [ + 272.13998, + 261.59995, + 5.0, + 11.535 + ], + [ + 279.63998, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 284.03998, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 288.52997, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 292.92996, + 261.59995, + 6.6600037, + 11.535 + ], + [ + 299.61996, + 261.59995, + 5.0, + 11.535 + ], + [ + 304.61996, + 261.59995, + 3.8900146, + 11.535 + ], + [ + 308.11996, + 261.59995, + 5.0, + 11.535 + ], + [ + 315.61996, + 261.59995, + 5.0, + 11.535 + ], + [ + 320.61996, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 325.10995, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 329.50995, + 261.59995, + 5.0, + 11.535 + ], + [ + 334.50995, + 261.59995, + 3.8900146, + 11.535 + ], + [ + 338.00995, + 261.59995, + 5.0, + 11.535 + ], + [ + 343.00995, + 261.59995, + 2.769989, + 11.535 + ], + [ + 345.79993, + 261.59995, + 5.0, + 11.535 + ], + [ + 350.79993, + 261.59995, + 5.0, + 11.535 + ], + [ + 358.29993, + 261.59995, + 2.769989, + 11.535 + ], + [ + 361.0899, + 261.59995, + 5.0, + 11.535 + ], + [ + 368.5899, + 261.59995, + 2.769989, + 11.535 + ], + [ + 371.2899, + 261.59995, + 5.0, + 11.535 + ], + [ + 376.2899, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 383.27988, + 261.59995, + 3.8900146, + 11.535 + ], + [ + 387.1699, + 261.59995, + 5.0, + 11.535 + ], + [ + 392.1699, + 261.59995, + 2.769989, + 11.535 + ], + [ + 394.95987, + 261.59995, + 4.4299927, + 11.535 + ], + [ + 399.35986, + 261.59995, + 3.8900146, + 11.535 + ], + [ + 56.8, + 248.20004, + 8.663998, + 12.642 + ], + [ + 65.404, + 248.20004, + 6.0, + 12.642 + ], + [ + 71.404, + 248.20004, + 6.0, + 12.642 + ], + [ + 77.404, + 248.20004, + 3.3239975, + 12.642 + ], + [ + 83.787994, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 87.784, + 248.20004, + 5.316002, + 12.642 + ], + [ + 93.088, + 248.20004, + 6.0, + 12.642 + ], + [ + 99.088, + 248.20004, + 5.316002, + 12.642 + ], + [ + 104.392, + 248.20004, + 5.316002, + 12.642 + ], + [ + 109.696, + 248.20004, + 3.3239975, + 12.642 + ], + [ + 116.079994, + 248.20004, + 6.0, + 12.642 + ], + [ + 122.079994, + 248.20004, + 5.316002, + 12.642 + ], + [ + 127.383995, + 248.20004, + 3.9959946, + 12.642 + ], + [ + 131.37999, + 248.20004, + 5.3159943, + 12.642 + ], + [ + 139.68399, + 248.20004, + 6.0, + 12.642 + ], + [ + 145.68399, + 248.20004, + 5.3159943, + 12.642 + ], + [ + 150.98799, + 248.20004, + 5.3159943, + 12.642 + ], + [ + 156.37599, + 248.20004, + 5.3159943, + 12.642 + ], + [ + 161.68, + 248.20004, + 6.0, + 12.642 + ], + [ + 167.68, + 248.20004, + 4.6679993, + 12.642 + ], + [ + 172.372, + 248.20004, + 5.3159943, + 12.642 + ], + [ + 180.676, + 248.20004, + 6.0, + 12.642 + ], + [ + 186.676, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 193.672, + 248.20004, + 9.324005, + 12.642 + ], + [ + 202.972, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 206.272, + 248.20004, + 4.6679993, + 12.642 + ], + [ + 210.964, + 248.20004, + 4.6679993, + 12.642 + ], + [ + 215.656, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 218.95601, + 248.20004, + 6.0, + 12.642 + ], + [ + 224.95601, + 248.20004, + 6.0, + 12.642 + ], + [ + 233.95601, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 237.95201, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 241.25201, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 245.24802, + 248.20004, + 4.6679993, + 12.642 + ], + [ + 249.94002, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 256.32404, + 248.20004, + 6.0, + 12.642 + ], + [ + 262.32404, + 248.20004, + 5.3160095, + 12.642 + ], + [ + 267.62805, + 248.20004, + 6.0, + 12.642 + ], + [ + 273.62805, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 279.92807, + 248.20004, + 6.671997, + 12.642 + ], + [ + 286.61206, + 248.20004, + 6.0, + 12.642 + ], + [ + 292.61206, + 248.20004, + 6.0, + 12.642 + ], + [ + 298.61206, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 302.60806, + 248.20004, + 5.3160095, + 12.642 + ], + [ + 307.91208, + 248.20004, + 5.3160095, + 12.642 + ], + [ + 313.2161, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 319.6001, + 248.20004, + 8.664001, + 12.642 + ], + [ + 328.2881, + 248.20004, + 9.324005, + 12.642 + ], + [ + 337.5881, + 248.20004, + 6.0, + 12.642 + ], + [ + 343.5881, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 349.88812, + 248.20004, + 7.9920044, + 12.642 + ], + [ + 357.88013, + 248.20004, + 6.0, + 12.642 + ], + [ + 363.88013, + 248.20004, + 6.0, + 12.642 + ], + [ + 369.88013, + 248.20004, + 4.6679993, + 12.642 + ], + [ + 374.5721, + 248.20004, + 6.0, + 12.642 + ], + [ + 380.5721, + 248.20004, + 9.324005, + 12.642 + ], + [ + 389.87213, + 248.20004, + 5.3160095, + 12.642 + ], + [ + 395.17615, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 402.17215, + 248.20004, + 6.671997, + 12.642 + ], + [ + 408.85614, + 248.20004, + 3.9960022, + 12.642 + ], + [ + 412.85214, + 248.20004, + 6.0, + 12.642 + ], + [ + 418.85214, + 248.20004, + 6.0, + 12.642 + ], + [ + 424.85214, + 248.20004, + 6.0, + 12.642 + ], + [ + 430.85214, + 248.20004, + 5.3160095, + 12.642 + ], + [ + 436.15616, + 248.20004, + 3.3240051, + 12.642 + ], + [ + 439.45618, + 248.20004, + 4.6679993, + 12.642 + ], + [ + 56.8, + 234.40005, + 8.663998, + 12.642 + ], + [ + 65.404, + 234.40005, + 6.0, + 12.642 + ], + [ + 71.404, + 234.40005, + 6.0, + 12.642 + ], + [ + 77.404, + 234.40005, + 3.3239975, + 12.642 + ], + [ + 83.787994, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 87.784, + 234.40005, + 5.316002, + 12.642 + ], + [ + 93.088, + 234.40005, + 6.0, + 12.642 + ], + [ + 99.088, + 234.40005, + 5.316002, + 12.642 + ], + [ + 104.392, + 234.40005, + 5.316002, + 12.642 + ], + [ + 109.696, + 234.40005, + 3.3239975, + 12.642 + ], + [ + 116.079994, + 234.40005, + 6.0, + 12.642 + ], + [ + 122.079994, + 234.40005, + 5.316002, + 12.642 + ], + [ + 127.383995, + 234.40005, + 3.9959946, + 12.642 + ], + [ + 131.37999, + 234.40005, + 5.3159943, + 12.642 + ], + [ + 139.68399, + 234.40005, + 6.0, + 12.642 + ], + [ + 145.68399, + 234.40005, + 5.3159943, + 12.642 + ], + [ + 150.98799, + 234.40005, + 5.3159943, + 12.642 + ], + [ + 156.37599, + 234.40005, + 5.3159943, + 12.642 + ], + [ + 161.68, + 234.40005, + 6.0, + 12.642 + ], + [ + 167.68, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 172.372, + 234.40005, + 5.3159943, + 12.642 + ], + [ + 180.676, + 234.40005, + 9.324005, + 12.642 + ], + [ + 189.976, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 193.276, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 197.968, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 202.66, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 205.96, + 234.40005, + 6.0, + 12.642 + ], + [ + 211.96, + 234.40005, + 6.0, + 12.642 + ], + [ + 220.96, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 224.95601, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 228.25601, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 232.25201, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 236.94402, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 243.32802, + 234.40005, + 6.0, + 12.642 + ], + [ + 249.32802, + 234.40005, + 5.3159943, + 12.642 + ], + [ + 254.63202, + 234.40005, + 6.0, + 12.642 + ], + [ + 260.63202, + 234.40005, + 8.664001, + 12.642 + ], + [ + 269.32, + 234.40005, + 6.0, + 12.642 + ], + [ + 275.32, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 279.316, + 234.40005, + 6.0, + 12.642 + ], + [ + 285.316, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 291.61603, + 234.40005, + 6.671997, + 12.642 + ], + [ + 298.30002, + 234.40005, + 6.0, + 12.642 + ], + [ + 304.30002, + 234.40005, + 6.0, + 12.642 + ], + [ + 310.30002, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 314.29602, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 319.60004, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 327.90405, + 234.40005, + 7.9920044, + 12.642 + ], + [ + 335.89606, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 341.20007, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 345.89206, + 234.40005, + 6.0, + 12.642 + ], + [ + 351.89206, + 234.40005, + 6.0, + 12.642 + ], + [ + 357.89206, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 361.88806, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 367.19208, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 372.4961, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 380.18808, + 234.40005, + 8.664001, + 12.642 + ], + [ + 388.87607, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 394.18008, + 234.40005, + 6.0, + 12.642 + ], + [ + 400.18008, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 405.4841, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 408.78412, + 234.40005, + 6.0, + 12.642 + ], + [ + 414.78412, + 234.40005, + 6.0, + 12.642 + ], + [ + 420.86813, + 234.40005, + 9.324005, + 12.642 + ], + [ + 430.16815, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 435.47217, + 234.40005, + 6.0, + 12.642 + ], + [ + 441.47217, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 447.16016, + 234.40005, + 8.664001, + 12.642 + ], + [ + 455.84814, + 234.40005, + 6.0, + 12.642 + ], + [ + 461.84814, + 234.40005, + 9.324005, + 12.642 + ], + [ + 471.14816, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 474.44818, + 234.40005, + 6.0, + 12.642 + ], + [ + 480.44818, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 483.7482, + 234.40005, + 4.6679993, + 12.642 + ], + [ + 488.4402, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 491.7402, + 234.40005, + 3.9960022, + 12.642 + ], + [ + 495.8322, + 234.40005, + 5.3160095, + 12.642 + ], + [ + 501.13623, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 504.43625, + 234.40005, + 3.3240051, + 12.642 + ], + [ + 507.73627, + 234.40005, + 6.0, + 12.642 + ], + [ + 513.73627, + 234.40005, + 6.0, + 12.642 + ] + ] + }, + { + "id": 42, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 47, + 48, + 49, + 50 + ], + "positions": [ + [ + 56.8, + 170.20001, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 130.4443, + 170.20001, + 4.6952972, + 13.867801 + ], + [ + 135.1396, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 142.9369, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 151.5379, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 160.1389, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 164.0446, + 170.20001, + 4.6952972, + 13.867801 + ], + [ + 168.7399, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 172.6456, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 181.2466, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 189.93219, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 197.72949, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 201.6352, + 170.20001, + 4.6952972, + 13.867801 + ], + [ + 210.23619, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 218.92178, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 226.71909, + 170.20001, + 8.600998, + 13.867801 + ], + [ + 235.32008, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 243.11739, + 170.20001, + 4.6952972, + 13.867801 + ], + [ + 247.81268, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 251.80298, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 259.60028, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 271.38788, + 170.20001, + 8.601013, + 13.867801 + ], + [ + 278.9878, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 286.7851, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 294.5824, + 170.20001, + 4.6953125, + 13.867801 + ], + [ + 299.2777, + 170.20001, + 4.6953125, + 13.867801 + ], + [ + 307.87872, + 170.20001, + 12.534912, + 13.867801 + ], + [ + 320.38544, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 324.37573, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 332.17303, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 339.97034, + 170.20001, + 3.9057007, + 13.867801 + ], + [ + 343.87604, + 170.20001, + 8.601013, + 13.867801 + ], + [ + 352.56165, + 170.20001, + 8.601013, + 13.867801 + ], + [ + 365.3, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 373.1819, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 380.9792, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 388.7765, + 170.20001, + 8.601013, + 13.867801 + ], + [ + 397.3775, + 170.20001, + 8.601013, + 13.867801 + ], + [ + 406.0631, + 170.20001, + 8.601013, + 13.867801 + ], + [ + 418.6, + 170.20001, + 10.180206, + 13.867801 + ], + [ + 428.7802, + 170.20001, + 7.8395996, + 13.867801 + ], + [ + 436.5775, + 170.20001, + 7.8395996, + 13.867801 + ] + ] + }, + { + "id": 43, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 18, + 19, + 20, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 57, + 58, + 59, + 60, + 61, + 62 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 115.47011, + 692.1, + 10.180199, + 13.867801 + ], + [ + 125.65031, + 692.1, + 8.601006, + 13.867801 + ], + [ + 138.24161, + 692.1, + 8.600998, + 13.867801 + ], + [ + 146.8426, + 692.1, + 8.600998, + 13.867801 + ], + [ + 155.4436, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 164.0446, + 692.1, + 5.484894, + 13.867801 + ], + [ + 169.5295, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 177.3268, + 692.1, + 8.600998, + 13.867801 + ], + [ + 185.9278, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 193.8097, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 201.607, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 210.208, + 692.1, + 10.180206, + 13.867801 + ], + [ + 220.3882, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 228.1855, + 692.1, + 12.534897, + 13.867801 + ], + [ + 240.7768, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 248.5741, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 260.3617, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 268.159, + 692.1, + 8.601013, + 13.867801 + ], + [ + 276.76, + 692.1, + 8.601013, + 13.867801 + ], + [ + 288.84372, + 692.1, + 10.180206, + 13.867801 + ], + [ + 299.02393, + 692.1, + 8.601013, + 13.867801 + ], + [ + 307.62494, + 692.1, + 8.601013, + 13.867801 + ], + [ + 316.22595, + 692.1, + 5.484894, + 13.867801 + ], + [ + 321.71085, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 329.50815, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 337.30545, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 345.18735, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 352.98465, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 364.77225, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 368.67795, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 377.27896, + 692.1, + 9.3905945, + 13.867801 + ], + [ + 386.66956, + 692.1, + 8.601013, + 13.867801 + ], + [ + 395.27057, + 692.1, + 8.601013, + 13.867801 + ], + [ + 403.87158, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 407.77728, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 411.76758, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 419.56488, + 692.1, + 8.601013, + 13.867801 + ], + [ + 428.1659, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 436.0478, + 692.1, + 8.601013, + 13.867801 + ], + [ + 448.5545, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 452.4602, + 692.1, + 8.601013, + 13.867801 + ], + [ + 461.06122, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 465.75653, + 692.1, + 8.601013, + 13.867801 + ], + [ + 474.35754, + 692.1, + 5.484894, + 13.867801 + ], + [ + 479.84244, + 692.1, + 12.534912, + 13.867801 + ], + [ + 492.43375, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 500.23105, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 504.92636, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 508.83206, + 692.1, + 8.600983, + 13.867801 + ], + [ + 517.43304, + 692.1, + 8.601013, + 13.867801 + ], + [ + 56.8, + 675.9, + 4.695301, + 13.867801 + ], + [ + 61.4953, + 675.9, + 8.600998, + 13.867801 + ], + [ + 70.0963, + 675.9, + 8.600998, + 13.867801 + ], + [ + 78.697296, + 675.9, + 8.600998, + 13.867801 + ], + [ + 87.298294, + 675.9, + 8.600998, + 13.867801 + ] + ] + }, + { + "id": 44, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 64, + 65, + 65, + 66, + 67, + 68, + 69, + 70, + 70, + 71, + 72, + 73, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 93, + 94, + 95, + 96, + 97, + 98, + 98, + 99, + 100, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 109, + 110, + 111, + 112, + 113, + 114, + 114, + 115, + 116, + 117, + 118, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125 + ], + "positions": [ + [ + 56.8, + 657.6, + 7.2199974, + 11.535 + ], + [ + 63.999996, + 657.6, + 5.000004, + 11.535 + ], + [ + 71.5, + 657.6, + 5.0, + 11.535 + ], + [ + 76.5, + 657.6, + 5.0, + 11.535 + ], + [ + 81.5, + 657.6, + 2.7699966, + 11.535 + ], + [ + 86.78999, + 657.6, + 3.8899994, + 11.535 + ], + [ + 90.28999, + 657.6, + 4.4300003, + 11.535 + ], + [ + 94.689995, + 657.6, + 5.0, + 11.535 + ], + [ + 99.689995, + 657.6, + 5.0, + 11.535 + ], + [ + 104.689995, + 657.6, + 4.4300003, + 11.535 + ], + [ + 109.09, + 657.6, + 2.7699966, + 11.535 + ], + [ + 114.479996, + 657.6, + 6.6600037, + 11.535 + ], + [ + 121.08, + 657.6, + 5.0, + 11.535 + ], + [ + 126.08, + 657.6, + 7.220001, + 11.535 + ], + [ + 133.28, + 657.6, + 4.4299927, + 11.535 + ], + [ + 137.68, + 657.6, + 3.8899994, + 11.535 + ], + [ + 144.17, + 657.6, + 5.0, + 11.535 + ], + [ + 149.17, + 657.6, + 5.0, + 11.535 + ], + [ + 154.17, + 657.6, + 5.0, + 11.535 + ], + [ + 161.47, + 657.6, + 6.100006, + 11.535 + ], + [ + 167.57, + 657.6, + 5.0, + 11.535 + ], + [ + 172.57, + 657.6, + 5.0, + 11.535 + ], + [ + 177.57, + 657.6, + 3.8899994, + 11.535 + ], + [ + 181.07, + 657.6, + 4.4299927, + 11.535 + ], + [ + 185.47, + 657.6, + 3.8899994, + 11.535 + ], + [ + 189.36, + 657.6, + 3.8899994, + 11.535 + ], + [ + 193.25, + 657.6, + 4.4299927, + 11.535 + ], + [ + 197.65, + 657.6, + 3.8899994, + 11.535 + ], + [ + 204.14, + 657.6, + 2.7700043, + 11.535 + ], + [ + 206.84, + 657.6, + 2.7700043, + 11.535 + ], + [ + 212.13, + 657.6, + 6.100006, + 11.535 + ], + [ + 218.23001, + 657.6, + 5.0, + 11.535 + ], + [ + 223.23001, + 657.6, + 5.0, + 11.535 + ], + [ + 228.23001, + 657.6, + 2.7700043, + 11.535 + ], + [ + 231.02002, + 657.6, + 2.7700043, + 11.535 + ], + [ + 233.81003, + 657.6, + 3.8899994, + 11.535 + ], + [ + 237.70003, + 657.6, + 5.0, + 11.535 + ], + [ + 242.70003, + 657.6, + 4.4299927, + 11.535 + ], + [ + 247.10002, + 657.6, + 5.0, + 11.535 + ], + [ + 254.60002, + 657.6, + 3.3300018, + 11.535 + ], + [ + 257.90002, + 657.6, + 5.0, + 11.535 + ], + [ + 262.90002, + 657.6, + 2.769989, + 11.535 + ], + [ + 265.69, + 657.6, + 5.0, + 11.535 + ], + [ + 270.69, + 657.6, + 3.8900146, + 11.535 + ], + [ + 274.58002, + 657.6, + 7.220001, + 11.535 + ], + [ + 281.78003, + 657.6, + 5.0, + 11.535 + ], + [ + 286.78003, + 657.6, + 2.769989, + 11.535 + ], + [ + 289.57, + 657.6, + 2.769989, + 11.535 + ], + [ + 292.36, + 657.6, + 5.0, + 11.535 + ], + [ + 297.36, + 657.6, + 5.0, + 11.535 + ], + [ + 304.86, + 657.6, + 2.769989, + 11.535 + ], + [ + 307.64996, + 657.6, + 5.0, + 11.535 + ], + [ + 312.64996, + 657.6, + 5.0, + 11.535 + ], + [ + 317.64996, + 657.6, + 5.0, + 11.535 + ], + [ + 322.64996, + 657.6, + 5.0, + 11.535 + ], + [ + 56.8, + 644.2, + 7.3200035, + 12.642 + ], + [ + 64.096, + 644.2, + 6.0, + 12.642 + ], + [ + 70.096, + 644.2, + 3.9960022, + 12.642 + ], + [ + 74.092, + 644.2, + 5.316002, + 12.642 + ], + [ + 79.396, + 644.2, + 9.3239975, + 12.642 + ], + [ + 91.78, + 644.2, + 3.3239975, + 12.642 + ], + [ + 95.079994, + 644.2, + 6.0, + 12.642 + ], + [ + 101.079994, + 644.2, + 4.6679993, + 12.642 + ], + [ + 105.771996, + 644.2, + 6.0, + 12.642 + ], + [ + 111.771996, + 644.2, + 9.3239975, + 12.642 + ], + [ + 124.07199, + 644.2, + 6.0, + 12.642 + ], + [ + 130.07199, + 644.2, + 6.0, + 12.642 + ], + [ + 136.07199, + 644.2, + 3.3240051, + 12.642 + ], + [ + 139.372, + 644.2, + 6.0, + 12.642 + ], + [ + 145.372, + 644.2, + 3.9960022, + 12.642 + ], + [ + 152.368, + 644.2, + 4.6679993, + 12.642 + ], + [ + 157.06, + 644.2, + 3.3240051, + 12.642 + ], + [ + 160.36, + 644.2, + 3.3240051, + 12.642 + ], + [ + 166.744, + 644.2, + 5.3159943, + 12.642 + ], + [ + 172.048, + 644.2, + 9.324005, + 12.642 + ], + [ + 181.348, + 644.2, + 5.3159943, + 12.642 + ], + [ + 186.65201, + 644.2, + 3.3240051, + 12.642 + ], + [ + 193.03601, + 644.2, + 8.664001, + 12.642 + ], + [ + 201.72401, + 644.2, + 6.0, + 12.642 + ], + [ + 207.72401, + 644.2, + 3.9960022, + 12.642 + ], + [ + 211.72002, + 644.2, + 6.0, + 12.642 + ], + [ + 217.72002, + 644.2, + 3.9960022, + 12.642 + ], + [ + 221.71602, + 644.2, + 6.0, + 12.642 + ], + [ + 230.71602, + 644.2, + 8.664001, + 12.642 + ], + [ + 239.32002, + 644.2, + 6.0, + 12.642 + ], + [ + 245.32002, + 644.2, + 3.3240051, + 12.642 + ], + [ + 248.62003, + 644.2, + 6.0, + 12.642 + ], + [ + 254.62003, + 644.2, + 5.3160095, + 12.642 + ], + [ + 259.92404, + 644.2, + 3.9960022, + 12.642 + ], + [ + 263.92004, + 644.2, + 4.6679993, + 12.642 + ], + [ + 268.61203, + 644.2, + 3.3240051, + 12.642 + ], + [ + 271.99603, + 644.2, + 3.3240051, + 12.642 + ], + [ + 275.29605, + 644.2, + 6.0, + 12.642 + ], + [ + 284.29605, + 644.2, + 6.671997, + 12.642 + ], + [ + 290.98004, + 644.2, + 3.9960022, + 12.642 + ], + [ + 294.97604, + 644.2, + 5.3160095, + 12.642 + ], + [ + 300.28006, + 644.2, + 4.6679993, + 12.642 + ], + [ + 304.87607, + 644.2, + 4.6679993, + 12.642 + ], + [ + 312.56805, + 644.2, + 3.3240051, + 12.642 + ], + [ + 315.86807, + 644.2, + 6.0, + 12.642 + ], + [ + 324.9521, + 644.2, + 6.0, + 12.642 + ], + [ + 330.9521, + 644.2, + 6.0, + 12.642 + ], + [ + 336.9521, + 644.2, + 3.3240051, + 12.642 + ], + [ + 340.2521, + 644.2, + 6.0, + 12.642 + ], + [ + 346.2521, + 644.2, + 6.0, + 12.642 + ], + [ + 352.2521, + 644.2, + 3.3240051, + 12.642 + ], + [ + 355.55212, + 644.2, + 5.3160095, + 12.642 + ], + [ + 360.94012, + 644.2, + 3.3240051, + 12.642 + ], + [ + 364.24014, + 644.2, + 5.3160095, + 12.642 + ], + [ + 372.54416, + 644.2, + 6.0, + 12.642 + ], + [ + 378.54416, + 644.2, + 5.3160095, + 12.642 + ], + [ + 383.84818, + 644.2, + 3.3240051, + 12.642 + ], + [ + 387.23218, + 644.2, + 3.3240051, + 12.642 + ], + [ + 390.5322, + 644.2, + 3.3240051, + 12.642 + ], + [ + 396.9162, + 644.2, + 5.3160095, + 12.642 + ], + [ + 402.1122, + 644.2, + 4.6679993, + 12.642 + ], + [ + 406.8042, + 644.2, + 4.6679993, + 12.642 + ], + [ + 411.4962, + 644.2, + 5.3160095, + 12.642 + ], + [ + 419.8002, + 644.2, + 5.3160095, + 12.642 + ], + [ + 425.10422, + 644.2, + 3.3240051, + 12.642 + ], + [ + 428.48822, + 644.2, + 3.3240051, + 12.642 + ], + [ + 431.78824, + 644.2, + 3.3240051, + 12.642 + ], + [ + 435.08826, + 644.2, + 6.0, + 12.642 + ], + [ + 441.08826, + 644.2, + 9.324005, + 12.642 + ], + [ + 450.38828, + 644.2, + 3.0, + 12.642 + ] + ] + }, + { + "id": 45, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 78, + 79, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 102, + 103, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 123, + 124, + 125, + 126, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 135, + 136, + 137, + 138, + 139, + 139, + 140, + 141, + 141, + 142, + 143, + 144, + 145, + 146, + 146, + 147, + 148, + 149, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 170, + 171, + 172, + 173, + 174, + 174, + 175, + 176, + 176, + 177, + 178, + 179, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 187, + 188, + 189, + 190, + 190, + 191, + 192, + 193, + 194, + 195, + 195, + 196, + 197, + 198, + 198, + 199, + 200, + 201, + 201, + 202, + 203, + 203, + 204, + 205, + 206, + 207, + 208, + 208, + 209, + 210, + 211, + 212, + 213, + 213, + 214, + 215, + 216, + 217, + 218, + 218, + 219, + 220, + 221, + 222, + 222, + 223, + 224, + 225, + 226, + 226, + 227, + 228, + 229, + 230, + 230, + 231, + 232, + 233, + 234, + 234, + 235, + 236, + 237, + 237, + 238, + 239, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 245, + 246, + 247, + 247, + 248, + 249, + 249, + 250, + 251 + ], + "positions": [ + [ + 56.8, + 616.6, + 3.9959984, + 12.642 + ], + [ + 60.795998, + 616.6, + 5.316002, + 12.642 + ], + [ + 66.1, + 616.6, + 6.0, + 12.642 + ], + [ + 72.1, + 616.6, + 6.0, + 12.642 + ], + [ + 78.1, + 616.6, + 6.0, + 12.642 + ], + [ + 84.1, + 616.6, + 6.0, + 12.642 + ], + [ + 90.1, + 616.6, + 4.6679993, + 12.642 + ], + [ + 97.792, + 616.6, + 8.664001, + 12.642 + ], + [ + 106.48, + 616.6, + 5.316002, + 12.642 + ], + [ + 111.784004, + 616.6, + 3.3239975, + 12.642 + ], + [ + 115.084, + 616.6, + 6.0, + 12.642 + ], + [ + 121.084, + 616.6, + 5.316002, + 12.642 + ], + [ + 126.388, + 616.6, + 3.9960022, + 12.642 + ], + [ + 129.892, + 616.6, + 3.0, + 12.642 + ], + [ + 135.892, + 616.6, + 4.6679993, + 12.642 + ], + [ + 140.584, + 616.6, + 6.0, + 12.642 + ], + [ + 146.584, + 616.6, + 3.3240051, + 12.642 + ], + [ + 149.884, + 616.6, + 3.3240051, + 12.642 + ], + [ + 153.184, + 616.6, + 5.3159943, + 12.642 + ], + [ + 158.488, + 616.6, + 6.0, + 12.642 + ], + [ + 167.572, + 616.6, + 7.9920044, + 12.642 + ], + [ + 175.56401, + 616.6, + 3.3240051, + 12.642 + ], + [ + 178.86401, + 616.6, + 3.3240051, + 12.642 + ], + [ + 182.16402, + 616.6, + 3.3240051, + 12.642 + ], + [ + 185.54802, + 616.6, + 5.3159943, + 12.642 + ], + [ + 190.85202, + 616.6, + 3.9960022, + 12.642 + ], + [ + 194.35602, + 616.6, + 3.0, + 12.642 + ], + [ + 199.75601, + 616.6, + 8.664001, + 12.642 + ], + [ + 208.36002, + 616.6, + 4.6679993, + 12.642 + ], + [ + 213.05202, + 616.6, + 6.0, + 12.642 + ], + [ + 219.05202, + 616.6, + 5.3159943, + 12.642 + ], + [ + 227.35602, + 616.6, + 7.3200073, + 12.642 + ], + [ + 234.05203, + 616.6, + 6.0, + 12.642 + ], + [ + 240.05203, + 616.6, + 6.0, + 12.642 + ], + [ + 246.05203, + 616.6, + 6.0, + 12.642 + ], + [ + 252.05203, + 616.6, + 3.0, + 12.642 + ], + [ + 258.05203, + 616.6, + 7.9920044, + 12.642 + ], + [ + 266.04404, + 616.6, + 5.3160095, + 12.642 + ], + [ + 271.34805, + 616.6, + 3.9960022, + 12.642 + ], + [ + 275.34406, + 616.6, + 3.3240051, + 12.642 + ], + [ + 278.64407, + 616.6, + 6.0, + 12.642 + ], + [ + 284.64407, + 616.6, + 5.3160095, + 12.642 + ], + [ + 293.03207, + 616.6, + 10.667999, + 12.642 + ], + [ + 303.72406, + 616.6, + 5.3160095, + 12.642 + ], + [ + 309.02808, + 616.6, + 6.0, + 12.642 + ], + [ + 314.93207, + 616.6, + 4.6679993, + 12.642 + ], + [ + 319.62405, + 616.6, + 5.3160095, + 12.642 + ], + [ + 324.92807, + 616.6, + 6.0, + 12.642 + ], + [ + 330.92807, + 616.6, + 3.0, + 12.642 + ], + [ + 336.31607, + 616.6, + 8.664001, + 12.642 + ], + [ + 345.00406, + 616.6, + 3.3240051, + 12.642 + ], + [ + 348.30408, + 616.6, + 5.3160095, + 12.642 + ], + [ + 353.6081, + 616.6, + 6.0, + 12.642 + ], + [ + 359.6081, + 616.6, + 5.3160095, + 12.642 + ], + [ + 364.9121, + 616.6, + 6.0, + 12.642 + ], + [ + 370.9121, + 616.6, + 6.0, + 12.642 + ], + [ + 376.9121, + 616.6, + 3.9960022, + 12.642 + ], + [ + 380.9081, + 616.6, + 5.3160095, + 12.642 + ], + [ + 389.2961, + 616.6, + 8.664001, + 12.642 + ], + [ + 397.9841, + 616.6, + 5.3160095, + 12.642 + ], + [ + 403.28812, + 616.6, + 6.0, + 12.642 + ], + [ + 409.1921, + 616.6, + 4.6679993, + 12.642 + ], + [ + 413.8841, + 616.6, + 3.3240051, + 12.642 + ], + [ + 417.2681, + 616.6, + 5.3160095, + 12.642 + ], + [ + 422.5721, + 616.6, + 3.9960022, + 12.642 + ], + [ + 426.0761, + 616.6, + 3.0, + 12.642 + ], + [ + 432.0761, + 616.6, + 8.664001, + 12.642 + ], + [ + 440.7641, + 616.6, + 5.3160095, + 12.642 + ], + [ + 446.0681, + 616.6, + 6.0, + 12.642 + ], + [ + 452.0681, + 616.6, + 6.0, + 12.642 + ], + [ + 458.0681, + 616.6, + 5.3160095, + 12.642 + ], + [ + 466.37213, + 616.6, + 10.667999, + 12.642 + ], + [ + 477.06412, + 616.6, + 5.3160095, + 12.642 + ], + [ + 482.36813, + 616.6, + 6.0, + 12.642 + ], + [ + 488.36813, + 616.6, + 6.0, + 12.642 + ], + [ + 494.36813, + 616.6, + 5.3160095, + 12.642 + ], + [ + 499.67215, + 616.6, + 3.3240051, + 12.642 + ], + [ + 502.97217, + 616.6, + 3.0, + 12.642 + ], + [ + 509.05618, + 616.6, + 7.991974, + 12.642 + ], + [ + 517.04816, + 616.6, + 5.315979, + 12.642 + ], + [ + 522.3521, + 616.6, + 6.0, + 12.642 + ], + [ + 528.3521, + 616.6, + 6.0, + 12.642 + ], + [ + 534.3521, + 616.6, + 5.315979, + 12.642 + ], + [ + 56.8, + 602.8, + 7.3200035, + 12.642 + ], + [ + 64.096, + 602.8, + 3.3239975, + 12.642 + ], + [ + 67.395996, + 602.8, + 6.0, + 12.642 + ], + [ + 73.395996, + 602.8, + 5.316002, + 12.642 + ], + [ + 78.7, + 602.8, + 6.0, + 12.642 + ], + [ + 84.7, + 602.8, + 6.0, + 12.642 + ], + [ + 90.7, + 602.8, + 6.0, + 12.642 + ], + [ + 96.7, + 602.8, + 6.0, + 12.642 + ], + [ + 102.784, + 602.8, + 9.3239975, + 12.642 + ], + [ + 112.08399, + 602.8, + 3.0, + 12.642 + ], + [ + 118.08399, + 602.8, + 7.3199997, + 12.642 + ], + [ + 125.37999, + 602.8, + 6.0, + 12.642 + ], + [ + 131.37999, + 602.8, + 5.3159943, + 12.642 + ], + [ + 136.68399, + 602.8, + 5.3159943, + 12.642 + ], + [ + 141.98799, + 602.8, + 6.0, + 12.642 + ], + [ + 148.07199, + 602.8, + 3.3240051, + 12.642 + ], + [ + 151.372, + 602.8, + 5.3159943, + 12.642 + ], + [ + 156.676, + 602.8, + 6.0, + 12.642 + ], + [ + 162.676, + 602.8, + 3.9960022, + 12.642 + ], + [ + 169.672, + 602.8, + 4.6679993, + 12.642 + ], + [ + 174.364, + 602.8, + 3.3240051, + 12.642 + ], + [ + 177.664, + 602.8, + 6.0, + 12.642 + ], + [ + 183.664, + 602.8, + 3.3240051, + 12.642 + ], + [ + 190.048, + 602.8, + 6.0, + 12.642 + ], + [ + 196.048, + 602.8, + 5.3159943, + 12.642 + ], + [ + 201.352, + 602.8, + 5.3159943, + 12.642 + ], + [ + 206.656, + 602.8, + 5.3159943, + 12.642 + ], + [ + 211.96, + 602.8, + 5.3159943, + 12.642 + ], + [ + 217.348, + 602.8, + 5.3159943, + 12.642 + ], + [ + 222.65201, + 602.8, + 5.3159943, + 12.642 + ], + [ + 227.95601, + 602.8, + 3.3240051, + 12.642 + ], + [ + 234.34001, + 602.8, + 5.3159943, + 12.642 + ], + [ + 239.64401, + 602.8, + 6.0, + 12.642 + ], + [ + 245.64401, + 602.8, + 6.0, + 12.642 + ], + [ + 251.64401, + 602.8, + 3.3240051, + 12.642 + ], + [ + 254.94402, + 602.8, + 6.0000153, + 12.642 + ], + [ + 260.94403, + 602.8, + 5.3160095, + 12.642 + ], + [ + 266.24805, + 602.8, + 3.3240051, + 12.642 + ], + [ + 269.63205, + 602.8, + 5.3160095, + 12.642 + ], + [ + 274.93607, + 602.8, + 3.3240051, + 12.642 + ], + [ + 281.23608, + 602.8, + 6.0, + 12.642 + ], + [ + 287.23608, + 602.8, + 6.0, + 12.642 + ], + [ + 293.23608, + 602.8, + 6.0, + 12.642 + ], + [ + 302.23608, + 602.8, + 6.0, + 12.642 + ], + [ + 308.23608, + 602.8, + 3.9960022, + 12.642 + ], + [ + 312.2321, + 602.8, + 6.0, + 12.642 + ], + [ + 318.2321, + 602.8, + 3.3240051, + 12.642 + ], + [ + 321.5321, + 602.8, + 6.0, + 12.642 + ], + [ + 327.5321, + 602.8, + 5.3160095, + 12.642 + ], + [ + 332.83612, + 602.8, + 6.0, + 12.642 + ], + [ + 338.92014, + 602.8, + 3.3240051, + 12.642 + ], + [ + 342.22015, + 602.8, + 3.0, + 12.642 + ], + [ + 348.22015, + 602.8, + 4.6679993, + 12.642 + ], + [ + 352.91214, + 602.8, + 6.0, + 12.642 + ], + [ + 358.91214, + 602.8, + 6.0, + 12.642 + ], + [ + 364.91214, + 602.8, + 3.3240051, + 12.642 + ], + [ + 371.21216, + 602.8, + 3.3240051, + 12.642 + ], + [ + 374.51218, + 602.8, + 6.0, + 12.642 + ], + [ + 383.5962, + 602.8, + 5.3160095, + 12.642 + ], + [ + 388.9002, + 602.8, + 6.0, + 12.642 + ], + [ + 394.9002, + 602.8, + 3.3240051, + 12.642 + ], + [ + 398.20023, + 602.8, + 6.0, + 12.642 + ], + [ + 404.20023, + 602.8, + 5.3160095, + 12.642 + ], + [ + 412.50424, + 602.8, + 6.0, + 12.642 + ], + [ + 418.50424, + 602.8, + 6.0, + 12.642 + ], + [ + 424.50424, + 602.8, + 3.3240051, + 12.642 + ], + [ + 430.88824, + 602.8, + 6.0, + 12.642 + ], + [ + 436.88824, + 602.8, + 3.9960022, + 12.642 + ], + [ + 440.69226, + 602.8, + 3.9960022, + 12.642 + ], + [ + 444.68826, + 602.8, + 3.3240051, + 12.642 + ], + [ + 447.98828, + 602.8, + 5.3160095, + 12.642 + ], + [ + 453.2923, + 602.8, + 3.3240051, + 12.642 + ], + [ + 456.59232, + 602.8, + 5.3160095, + 12.642 + ], + [ + 464.98032, + 602.8, + 6.0, + 12.642 + ], + [ + 470.98032, + 602.8, + 5.3160095, + 12.642 + ], + [ + 476.28433, + 602.8, + 4.6679993, + 12.642 + ], + [ + 480.97632, + 602.8, + 5.3160095, + 12.642 + ], + [ + 486.28033, + 602.8, + 3.9960022, + 12.642 + ], + [ + 490.27634, + 602.8, + 6.0, + 12.642 + ], + [ + 496.27634, + 602.8, + 6.0, + 12.642 + ], + [ + 502.27634, + 602.8, + 3.3240051, + 12.642 + ], + [ + 508.57635, + 602.8, + 9.323975, + 12.642 + ], + [ + 517.87634, + 602.8, + 6.0, + 12.642 + ], + [ + 523.87634, + 602.8, + 3.3239746, + 12.642 + ], + [ + 527.2603, + 602.8, + 3.3239746, + 12.642 + ], + [ + 530.5603, + 602.8, + 3.3239746, + 12.642 + ], + [ + 533.8603, + 602.8, + 3.3239746, + 12.642 + ], + [ + 56.8, + 589.0, + 5.315998, + 12.642 + ], + [ + 62.103996, + 589.0, + 6.0, + 12.642 + ], + [ + 68.104, + 589.0, + 3.3239975, + 12.642 + ], + [ + 71.40399, + 589.0, + 9.3239975, + 12.642 + ], + [ + 83.78799, + 589.0, + 3.3239975, + 12.642 + ], + [ + 87.08798, + 589.0, + 6.0, + 12.642 + ], + [ + 96.08798, + 589.0, + 5.316002, + 12.642 + ], + [ + 101.39198, + 589.0, + 4.6679993, + 12.642 + ], + [ + 106.083984, + 589.0, + 3.3239975, + 12.642 + ], + [ + 112.38398, + 589.0, + 3.3239975, + 12.642 + ], + [ + 115.683975, + 589.0, + 5.316002, + 12.642 + ], + [ + 120.987976, + 589.0, + 6.0, + 12.642 + ], + [ + 126.987976, + 589.0, + 6.0, + 12.642 + ], + [ + 132.98798, + 589.0, + 3.9960022, + 12.642 + ], + [ + 136.98398, + 589.0, + 6.0, + 12.642 + ], + [ + 143.06798, + 589.0, + 9.324005, + 12.642 + ], + [ + 152.36798, + 589.0, + 3.0, + 12.642 + ], + [ + 158.36798, + 589.0, + 10.667999, + 12.642 + ], + [ + 169.05998, + 589.0, + 3.3240051, + 12.642 + ], + [ + 172.35999, + 589.0, + 6.0, + 12.642 + ], + [ + 181.35999, + 589.0, + 8.664001, + 12.642 + ], + [ + 190.04799, + 589.0, + 8.664001, + 12.642 + ], + [ + 198.736, + 589.0, + 6.0, + 12.642 + ], + [ + 204.736, + 589.0, + 6.0, + 12.642 + ], + [ + 210.736, + 589.0, + 3.0, + 12.642 + ], + [ + 216.736, + 589.0, + 4.6679993, + 12.642 + ], + [ + 221.33199, + 589.0, + 6.0, + 12.642 + ], + [ + 227.33199, + 589.0, + 6.0, + 12.642 + ], + [ + 236.33199, + 589.0, + 8.664001, + 12.642 + ], + [ + 245.01999, + 589.0, + 3.0, + 12.642 + ], + [ + 248.01999, + 589.0, + 3.0, + 12.642 + ], + [ + 253.816, + 589.0, + 7.319992, + 12.642 + ], + [ + 260.71597, + 589.0, + 6.0, + 12.642 + ], + [ + 269.51196, + 589.0, + 11.3160095, + 12.642 + ], + [ + 279.80798, + 589.0, + 6.0, + 12.642 + ], + [ + 285.80798, + 589.0, + 6.0, + 12.642 + ], + [ + 291.80798, + 589.0, + 6.0, + 12.642 + ], + [ + 297.80798, + 589.0, + 3.0, + 12.642 + ], + [ + 303.80798, + 589.0, + 8.664001, + 12.642 + ], + [ + 312.49597, + 589.0, + 3.3240051, + 12.642 + ], + [ + 315.796, + 589.0, + 5.3160095, + 12.642 + ], + [ + 321.1, + 589.0, + 6.0, + 12.642 + ], + [ + 327.1, + 589.0, + 6.0, + 12.642 + ], + [ + 336.18402, + 589.0, + 6.671997, + 12.642 + ], + [ + 342.78403, + 589.0, + 6.0, + 12.642 + ], + [ + 348.78403, + 589.0, + 5.3160095, + 12.642 + ], + [ + 354.08804, + 589.0, + 6.0, + 12.642 + ], + [ + 360.08804, + 589.0, + 3.0, + 12.642 + ], + [ + 366.17206, + 589.0, + 7.3200073, + 12.642 + ], + [ + 373.46808, + 589.0, + 6.0, + 12.642 + ], + [ + 379.46808, + 589.0, + 6.0, + 12.642 + ], + [ + 385.46808, + 589.0, + 6.0, + 12.642 + ], + [ + 394.46808, + 589.0, + 10.667999, + 12.642 + ], + [ + 405.16006, + 589.0, + 5.3160095, + 12.642 + ], + [ + 410.46408, + 589.0, + 6.0, + 12.642 + ], + [ + 416.46408, + 589.0, + 3.0, + 12.642 + ], + [ + 422.46408, + 589.0, + 8.664001, + 12.642 + ], + [ + 431.15207, + 589.0, + 3.3240051, + 12.642 + ], + [ + 434.4521, + 589.0, + 6.0, + 12.642 + ], + [ + 440.4521, + 589.0, + 6.0, + 12.642 + ], + [ + 449.4521, + 589.0, + 7.3200073, + 12.642 + ], + [ + 456.7481, + 589.0, + 3.3240051, + 12.642 + ], + [ + 460.04813, + 589.0, + 6.0, + 12.642 + ], + [ + 466.04813, + 589.0, + 3.0, + 12.642 + ], + [ + 472.04813, + 589.0, + 7.3200073, + 12.642 + ], + [ + 479.44012, + 589.0, + 5.3160095, + 12.642 + ], + [ + 484.74414, + 589.0, + 3.3240051, + 12.642 + ], + [ + 490.84015, + 589.0, + 11.3160095, + 12.642 + ], + [ + 501.04016, + 589.0, + 3.0, + 12.642 + ], + [ + 507.04016, + 589.0, + 8.664001, + 12.642 + ], + [ + 515.72815, + 589.0, + 6.0, + 12.642 + ], + [ + 521.72815, + 589.0, + 5.315979, + 12.642 + ], + [ + 527.0321, + 589.0, + 6.0, + 12.642 + ], + [ + 533.0321, + 589.0, + 6.0, + 12.642 + ], + [ + 539.0321, + 589.0, + 3.0, + 12.642 + ], + [ + 56.8, + 575.2, + 7.9920006, + 12.642 + ], + [ + 64.792, + 575.2, + 6.0, + 12.642 + ], + [ + 73.792, + 575.2, + 8.664001, + 12.642 + ], + [ + 82.396, + 575.2, + 3.0, + 12.642 + ], + [ + 88.192, + 575.2, + 11.316002, + 12.642 + ], + [ + 98.992004, + 575.2, + 6.0, + 12.642 + ] + ] + }, + { + "id": 46, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 59, + 60, + 61, + 61, + 62, + 63, + 64, + 65 + ], + "positions": [ + [ + 56.8, + 524.8, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 524.8, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 524.8, + 4.6952972, + 13.867801 + ], + [ + 135.05501, + 524.8, + 10.180206, + 13.867801 + ], + [ + 145.23521, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 153.03252, + 524.8, + 8.600998, + 13.867801 + ], + [ + 161.71811, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 169.51541, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 177.31271, + 524.8, + 4.6952972, + 13.867801 + ], + [ + 182.0926, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 189.88991, + 524.8, + 8.600998, + 13.867801 + ], + [ + 202.3966, + 524.8, + 9.3905945, + 13.867801 + ], + [ + 211.7872, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 215.6929, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 223.5889, + 524.8, + 9.3905945, + 13.867801 + ], + [ + 232.97949, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 240.7768, + 524.8, + 5.484894, + 13.867801 + ], + [ + 246.26169, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 254.05899, + 524.8, + 8.601013, + 13.867801 + ], + [ + 262.7446, + 524.8, + 8.601013, + 13.867801 + ], + [ + 271.3456, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 279.1429, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 287.0389, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 290.9446, + 524.8, + 8.601013, + 13.867801 + ], + [ + 299.54562, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 307.34293, + 524.8, + 8.601013, + 13.867801 + ], + [ + 315.94394, + 524.8, + 4.6953125, + 13.867801 + ], + [ + 320.63925, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 324.54495, + 524.8, + 4.6953125, + 13.867801 + ], + [ + 329.24026, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 333.23056, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 341.02786, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 348.82516, + 524.8, + 4.6953125, + 13.867801 + ], + [ + 353.52048, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 357.42618, + 524.8, + 8.601013, + 13.867801 + ], + [ + 366.1118, + 524.8, + 8.601013, + 13.867801 + ], + [ + 378.6185, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 382.5242, + 524.8, + 8.601013, + 13.867801 + ], + [ + 391.1252, + 524.8, + 4.6953125, + 13.867801 + ], + [ + 395.82053, + 524.8, + 8.601013, + 13.867801 + ], + [ + 404.42154, + 524.8, + 5.484894, + 13.867801 + ], + [ + 409.90643, + 524.8, + 12.534912, + 13.867801 + ], + [ + 422.49774, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 430.29504, + 524.8, + 4.6953125, + 13.867801 + ], + [ + 434.99036, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 438.89606, + 524.8, + 8.601013, + 13.867801 + ], + [ + 447.49707, + 524.8, + 8.601013, + 13.867801 + ], + [ + 460.08838, + 524.8, + 8.601013, + 13.867801 + ], + [ + 468.6894, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 476.4867, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 484.3686, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 492.1659, + 524.8, + 8.601013, + 13.867801 + ], + [ + 504.7572, + 524.8, + 8.601013, + 13.867801 + ], + [ + 513.3582, + 524.8, + 8.601013, + 13.867801 + ], + [ + 525.8649, + 524.8, + 10.180176, + 13.867801 + ], + [ + 536.0451, + 524.8, + 3.9057007, + 13.867801 + ], + [ + 539.9508, + 524.8, + 7.8395996, + 13.867801 + ], + [ + 547.7481, + 524.8, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 47, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 102, + 103, + 104, + 104, + 105, + 106, + 107, + 108, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 122, + 123, + 124, + 125, + 126, + 127, + 127, + 128, + 129, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 135, + 136, + 137, + 137, + 138, + 139, + 140, + 141, + 142, + 142, + 143, + 144, + 144, + 145, + 146, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 152, + 153, + 154, + 155, + 156, + 157, + 157, + 158, + 159, + 159, + 160, + 161, + 162, + 162, + 163, + 164, + 165, + 166, + 167, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 176, + 177, + 177, + 178, + 179, + 180, + 180, + 181, + 182, + 183, + 184, + 185, + 185, + 186, + 187, + 187, + 188, + 189, + 190, + 191, + 192, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 198, + 199, + 200, + 200, + 201, + 202, + 203, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212 + ], + "positions": [ + [ + 56.8, + 506.4, + 6.1000023, + 11.535 + ], + [ + 62.9, + 506.4, + 4.4300003, + 11.535 + ], + [ + 67.3, + 506.4, + 5.0, + 11.535 + ], + [ + 72.3, + 506.4, + 5.0, + 11.535 + ], + [ + 77.3, + 506.4, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 506.4, + 2.7699966, + 11.535 + ], + [ + 86.99, + 506.4, + 6.659996, + 11.535 + ], + [ + 93.67999, + 506.4, + 5.0, + 11.535 + ], + [ + 98.67999, + 506.4, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 506.4, + 5.0, + 11.535 + ], + [ + 110.66999, + 506.4, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 506.4, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 506.4, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 506.4, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 506.4, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 506.4, + 5.0, + 11.535 + ], + [ + 136.14998, + 506.4, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 506.4, + 5.0, + 11.535 + ], + [ + 145.03998, + 506.4, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 506.4, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 506.4, + 5.0, + 11.535 + ], + [ + 159.72998, + 506.4, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 506.4, + 5.0, + 11.535 + ], + [ + 167.51999, + 506.4, + 5.0, + 11.535 + ], + [ + 172.51999, + 506.4, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 506.4, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 506.4, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 506.4, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 506.4, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 506.4, + 3.8899994, + 11.535 + ], + [ + 56.8, + 494.9, + 6.1000023, + 11.535 + ], + [ + 62.9, + 494.9, + 4.4300003, + 11.535 + ], + [ + 67.3, + 494.9, + 5.0, + 11.535 + ], + [ + 72.3, + 494.9, + 5.0, + 11.535 + ], + [ + 77.3, + 494.9, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 494.9, + 2.7699966, + 11.535 + ], + [ + 86.99, + 494.9, + 6.659996, + 11.535 + ], + [ + 93.67999, + 494.9, + 5.0, + 11.535 + ], + [ + 98.67999, + 494.9, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 494.9, + 5.0, + 11.535 + ], + [ + 110.66999, + 494.9, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 494.9, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 494.9, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 494.9, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 494.9, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 494.9, + 5.0, + 11.535 + ], + [ + 136.14998, + 494.9, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 494.9, + 5.0, + 11.535 + ], + [ + 145.03998, + 494.9, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 494.9, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 494.9, + 5.0, + 11.535 + ], + [ + 159.72998, + 494.9, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 494.9, + 5.0, + 11.535 + ], + [ + 167.51999, + 494.9, + 5.0, + 11.535 + ], + [ + 172.51999, + 494.9, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 494.9, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 494.9, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 494.9, + 6.6600037, + 11.535 + ], + [ + 195.29, + 494.9, + 5.0, + 11.535 + ], + [ + 56.8, + 481.5, + 8.663998, + 12.642 + ], + [ + 65.488, + 481.5, + 5.316002, + 12.642 + ], + [ + 70.792, + 481.5, + 6.0, + 12.642 + ], + [ + 76.792, + 481.5, + 5.316002, + 12.642 + ], + [ + 82.096, + 481.5, + 3.9960022, + 12.642 + ], + [ + 86.092, + 481.5, + 6.0, + 12.642 + ], + [ + 92.092, + 481.5, + 6.0, + 12.642 + ], + [ + 100.396, + 481.5, + 8.664001, + 12.642 + ], + [ + 109.08401, + 481.5, + 6.0, + 12.642 + ], + [ + 115.08401, + 481.5, + 9.3239975, + 12.642 + ], + [ + 124.384, + 481.5, + 5.3159943, + 12.642 + ], + [ + 129.688, + 481.5, + 5.3159943, + 12.642 + ], + [ + 134.992, + 481.5, + 6.0, + 12.642 + ], + [ + 141.076, + 481.5, + 3.3240051, + 12.642 + ], + [ + 144.376, + 481.5, + 3.0, + 12.642 + ], + [ + 150.376, + 481.5, + 8.664001, + 12.642 + ], + [ + 159.06401, + 481.5, + 6.0, + 12.642 + ], + [ + 165.06401, + 481.5, + 9.324005, + 12.642 + ], + [ + 174.36401, + 481.5, + 3.3240051, + 12.642 + ], + [ + 177.66402, + 481.5, + 3.0, + 12.642 + ], + [ + 183.74802, + 481.5, + 3.9960022, + 12.642 + ], + [ + 187.64803, + 481.5, + 4.6679993, + 12.642 + ], + [ + 192.34003, + 481.5, + 6.0, + 12.642 + ], + [ + 198.34003, + 481.5, + 3.3240051, + 12.642 + ], + [ + 201.64003, + 481.5, + 6.0, + 12.642 + ], + [ + 207.64003, + 481.5, + 5.3159943, + 12.642 + ], + [ + 212.94403, + 481.5, + 8.664001, + 12.642 + ], + [ + 221.63203, + 481.5, + 5.3159943, + 12.642 + ], + [ + 230.02003, + 481.5, + 6.0, + 12.642 + ], + [ + 236.02003, + 481.5, + 6.0, + 12.642 + ], + [ + 242.02003, + 481.5, + 6.0, + 12.642 + ], + [ + 248.02003, + 481.5, + 3.9960022, + 12.642 + ], + [ + 252.01604, + 481.5, + 6.0000153, + 12.642 + ], + [ + 257.51205, + 481.5, + 6.0, + 12.642 + ], + [ + 263.51205, + 481.5, + 6.0, + 12.642 + ], + [ + 269.51205, + 481.5, + 6.0, + 12.642 + ], + [ + 275.51205, + 481.5, + 3.0, + 12.642 + ], + [ + 281.51205, + 481.5, + 4.6679993, + 12.642 + ], + [ + 286.20404, + 481.5, + 5.3160095, + 12.642 + ], + [ + 291.50806, + 481.5, + 6.0, + 12.642 + ], + [ + 297.50806, + 481.5, + 5.3160095, + 12.642 + ], + [ + 302.81207, + 481.5, + 6.0, + 12.642 + ], + [ + 308.81207, + 481.5, + 3.0, + 12.642 + ], + [ + 314.81207, + 481.5, + 4.6679993, + 12.642 + ], + [ + 319.50406, + 481.5, + 6.671997, + 12.642 + ], + [ + 56.8, + 467.7, + 6.672001, + 12.642 + ], + [ + 63.484, + 467.7, + 6.0, + 12.642 + ], + [ + 69.484, + 467.7, + 6.0, + 12.642 + ], + [ + 75.484, + 467.7, + 5.316002, + 12.642 + ], + [ + 83.788, + 467.7, + 8.664001, + 12.642 + ], + [ + 92.476006, + 467.7, + 5.316002, + 12.642 + ], + [ + 97.78001, + 467.7, + 3.3239975, + 12.642 + ], + [ + 101.08, + 467.7, + 3.3239975, + 12.642 + ], + [ + 104.38, + 467.7, + 6.0, + 12.642 + ], + [ + 110.38, + 467.7, + 5.316002, + 12.642 + ], + [ + 118.768, + 467.7, + 8.664001, + 12.642 + ], + [ + 127.372, + 467.7, + 6.0000076, + 12.642 + ], + [ + 133.37201, + 467.7, + 3.9960022, + 12.642 + ], + [ + 137.36801, + 467.7, + 6.0, + 12.642 + ], + [ + 143.36801, + 467.7, + 3.3240051, + 12.642 + ], + [ + 146.66801, + 467.7, + 3.3240051, + 12.642 + ], + [ + 150.05202, + 467.7, + 5.3159943, + 12.642 + ], + [ + 155.35602, + 467.7, + 6.0, + 12.642 + ], + [ + 56.8, + 453.9, + 8.663998, + 12.642 + ], + [ + 65.488, + 453.9, + 5.316002, + 12.642 + ], + [ + 70.792, + 453.9, + 6.0, + 12.642 + ], + [ + 76.792, + 453.9, + 6.0, + 12.642 + ], + [ + 82.792, + 453.9, + 3.9960022, + 12.642 + ], + [ + 89.788, + 453.9, + 8.664001, + 12.642 + ], + [ + 98.392006, + 453.9, + 3.0, + 12.642 + ], + [ + 104.392006, + 453.9, + 7.991997, + 12.642 + ], + [ + 112.384, + 453.9, + 5.316002, + 12.642 + ], + [ + 117.688, + 453.9, + 6.0, + 12.642 + ], + [ + 123.688, + 453.9, + 6.0, + 12.642 + ], + [ + 129.688, + 453.9, + 5.3159943, + 12.642 + ], + [ + 134.992, + 453.9, + 6.0, + 12.642 + ], + [ + 56.8, + 440.1, + 7.9920006, + 12.642 + ], + [ + 64.792, + 440.1, + 3.0, + 12.642 + ], + [ + 70.792, + 440.1, + 7.991997, + 12.642 + ], + [ + 78.784, + 440.1, + 5.316002, + 12.642 + ], + [ + 84.088, + 440.1, + 6.0, + 12.642 + ], + [ + 90.088, + 440.1, + 3.3239975, + 12.642 + ], + [ + 93.38799, + 440.1, + 9.3239975, + 12.642 + ], + [ + 56.8, + 426.3, + 7.9920006, + 12.642 + ], + [ + 64.792, + 426.3, + 3.0, + 12.642 + ], + [ + 70.792, + 426.3, + 4.6679993, + 12.642 + ], + [ + 75.388, + 426.3, + 3.0, + 12.642 + ], + [ + 80.788, + 426.3, + 8.664001, + 12.642 + ], + [ + 89.476006, + 426.3, + 3.3239975, + 12.642 + ], + [ + 92.776, + 426.3, + 3.9960022, + 12.642 + ], + [ + 96.772, + 426.3, + 3.9960022, + 12.642 + ], + [ + 100.768005, + 426.3, + 5.316002, + 12.642 + ], + [ + 106.07201, + 426.3, + 6.0, + 12.642 + ], + [ + 56.8, + 412.5, + 8.663998, + 12.642 + ], + [ + 65.488, + 412.5, + 3.3239975, + 12.642 + ], + [ + 68.787994, + 412.5, + 6.0, + 12.642 + ], + [ + 74.787994, + 412.5, + 6.0, + 12.642 + ], + [ + 80.787994, + 412.5, + 3.3239975, + 12.642 + ], + [ + 86.691986, + 412.5, + 8.664001, + 12.642 + ], + [ + 93.79599, + 412.5, + 3.0, + 12.642 + ], + [ + 99.59199, + 412.5, + 7.3199997, + 12.642 + ], + [ + 106.095985, + 412.5, + 5.316002, + 12.642 + ], + [ + 111.39999, + 412.5, + 6.0, + 12.642 + ], + [ + 56.8, + 398.7, + 7.9920006, + 12.642 + ], + [ + 64.792, + 398.7, + 3.3239975, + 12.642 + ], + [ + 68.091995, + 398.7, + 5.316002, + 12.642 + ], + [ + 73.395996, + 398.7, + 3.9960022, + 12.642 + ], + [ + 77.392, + 398.7, + 5.316002, + 12.642 + ], + [ + 85.78, + 398.7, + 6.671997, + 12.642 + ], + [ + 92.464, + 398.7, + 3.3239975, + 12.642 + ], + [ + 95.76399, + 398.7, + 5.316002, + 12.642 + ], + [ + 101.06799, + 398.7, + 6.0, + 12.642 + ], + [ + 107.06799, + 398.7, + 3.9960022, + 12.642 + ], + [ + 111.063995, + 398.7, + 3.9960022, + 12.642 + ], + [ + 115.06, + 398.7, + 3.3239975, + 12.642 + ], + [ + 118.35999, + 398.7, + 5.316002, + 12.642 + ], + [ + 123.663994, + 398.7, + 6.0000076, + 12.642 + ], + [ + 135.748, + 398.7, + 12.0, + 12.642 + ], + [ + 150.748, + 398.7, + 6.0, + 12.642 + ], + [ + 156.748, + 398.7, + 6.0, + 12.642 + ], + [ + 162.748, + 398.7, + 3.3240051, + 12.642 + ], + [ + 169.048, + 398.7, + 5.3159943, + 12.642 + ], + [ + 174.352, + 398.7, + 6.0, + 12.642 + ], + [ + 180.352, + 398.7, + 6.0, + 12.642 + ], + [ + 186.352, + 398.7, + 5.3159943, + 12.642 + ], + [ + 191.656, + 398.7, + 6.0, + 12.642 + ], + [ + 200.656, + 398.7, + 3.3240051, + 12.642 + ], + [ + 203.95601, + 398.7, + 6.0, + 12.642 + ], + [ + 213.04001, + 398.7, + 8.664001, + 12.642 + ], + [ + 221.72801, + 398.7, + 3.3240051, + 12.642 + ], + [ + 225.02802, + 398.7, + 5.3159943, + 12.642 + ], + [ + 230.33202, + 398.7, + 3.3240051, + 12.642 + ], + [ + 233.63202, + 398.7, + 3.0, + 12.642 + ], + [ + 239.63202, + 398.7, + 4.6679993, + 12.642 + ], + [ + 244.32402, + 398.7, + 6.0, + 12.642 + ], + [ + 250.32402, + 398.7, + 6.0000153, + 12.642 + ], + [ + 256.32404, + 398.7, + 6.0, + 12.642 + ], + [ + 262.32404, + 398.7, + 3.3240051, + 12.642 + ], + [ + 265.62405, + 398.7, + 6.0, + 12.642 + ], + [ + 274.62405, + 398.7, + 6.0, + 12.642 + ], + [ + 280.62405, + 398.7, + 5.3160095, + 12.642 + ], + [ + 289.01205, + 398.7, + 6.0, + 12.642 + ], + [ + 295.01205, + 398.7, + 6.0, + 12.642 + ], + [ + 301.01205, + 398.7, + 3.3240051, + 12.642 + ], + [ + 307.31207, + 398.7, + 5.3160095, + 12.642 + ], + [ + 312.6161, + 398.7, + 6.0, + 12.642 + ], + [ + 318.6161, + 398.7, + 6.0, + 12.642 + ], + [ + 324.6161, + 398.7, + 6.0, + 12.642 + ], + [ + 330.6161, + 398.7, + 3.3240051, + 12.642 + ], + [ + 333.9161, + 398.7, + 5.3160095, + 12.642 + ], + [ + 339.3041, + 398.7, + 3.3240051, + 12.642 + ], + [ + 342.60413, + 398.7, + 5.3160095, + 12.642 + ], + [ + 347.90814, + 398.7, + 6.0, + 12.642 + ] + ] + }, + { + "id": 48, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "positions": [ + [ + 56.8, + 348.3, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 348.3, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 348.3, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 348.3, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 348.3, + 4.6952972, + 13.867801 + ], + [ + 135.05501, + 348.3, + 10.180206, + 13.867801 + ], + [ + 145.23521, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 153.03252, + 348.3, + 8.600998, + 13.867801 + ], + [ + 161.71811, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 169.51541, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 177.31271, + 348.3, + 4.6952972, + 13.867801 + ], + [ + 185.9983, + 348.3, + 9.3905945, + 13.867801 + ], + [ + 195.3889, + 348.3, + 12.534897, + 13.867801 + ], + [ + 207.8956, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 215.6929, + 348.3, + 3.9057007, + 13.867801 + ], + [ + 219.5986, + 348.3, + 3.9057007, + 13.867801 + ], + [ + 223.5889, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 235.3765, + 348.3, + 8.600998, + 13.867801 + ], + [ + 243.9775, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 255.6805, + 348.3, + 10.180191, + 13.867801 + ], + [ + 265.8607, + 348.3, + 7.8395996, + 13.867801 + ], + [ + 273.658, + 348.3, + 8.601013, + 13.867801 + ], + [ + 282.259, + 348.3, + 9.3905945, + 13.867801 + ], + [ + 291.7483, + 348.3, + 7.8395996, + 13.867801 + ] + ] + }, + { + "id": 49, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 72, + 72, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 111, + 112, + 113, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 139, + 140, + 141, + 142, + 143, + 144, + 144, + 145, + 146, + 147, + 148, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 160, + 161, + 162, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 168, + 169, + 170, + 171, + 172, + 173, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 191, + 192, + 193, + 194, + 195, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 231, + 232, + 233, + 234, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 243, + 244, + 245, + 246, + 247, + 247, + 248, + 249, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 264, + 265, + 266, + 267, + 268, + 269, + 269, + 270, + 271, + 272, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 293, + 294, + 295, + 296, + 297, + 297, + 298, + 299, + 299, + 300, + 301, + 302, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310 + ], + "positions": [ + [ + 56.8, + 329.9, + 6.1000023, + 11.535 + ], + [ + 62.9, + 329.9, + 4.4300003, + 11.535 + ], + [ + 67.3, + 329.9, + 5.0, + 11.535 + ], + [ + 72.3, + 329.9, + 5.0, + 11.535 + ], + [ + 77.3, + 329.9, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 329.9, + 2.7699966, + 11.535 + ], + [ + 86.99, + 329.9, + 6.659996, + 11.535 + ], + [ + 93.67999, + 329.9, + 5.0, + 11.535 + ], + [ + 98.67999, + 329.9, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 329.9, + 5.0, + 11.535 + ], + [ + 110.66999, + 329.9, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 329.9, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 329.9, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 329.9, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 329.9, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 329.9, + 5.0, + 11.535 + ], + [ + 136.14998, + 329.9, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 329.9, + 5.0, + 11.535 + ], + [ + 145.03998, + 329.9, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 329.9, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 329.9, + 5.0, + 11.535 + ], + [ + 159.72998, + 329.9, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 329.9, + 5.0, + 11.535 + ], + [ + 167.51999, + 329.9, + 5.0, + 11.535 + ], + [ + 172.51999, + 329.9, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 329.9, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 329.9, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 329.9, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 329.9, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 329.9, + 3.8899994, + 11.535 + ], + [ + 56.8, + 318.4, + 6.1000023, + 11.535 + ], + [ + 62.9, + 318.4, + 4.4300003, + 11.535 + ], + [ + 67.3, + 318.4, + 5.0, + 11.535 + ], + [ + 72.3, + 318.4, + 5.0, + 11.535 + ], + [ + 77.3, + 318.4, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 318.4, + 2.7699966, + 11.535 + ], + [ + 86.99, + 318.4, + 6.659996, + 11.535 + ], + [ + 93.67999, + 318.4, + 5.0, + 11.535 + ], + [ + 98.67999, + 318.4, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 318.4, + 5.0, + 11.535 + ], + [ + 110.66999, + 318.4, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 318.4, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 318.4, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 318.4, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 318.4, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 318.4, + 5.0, + 11.535 + ], + [ + 136.14998, + 318.4, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 318.4, + 5.0, + 11.535 + ], + [ + 145.03998, + 318.4, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 318.4, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 318.4, + 5.0, + 11.535 + ], + [ + 159.72998, + 318.4, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 318.4, + 5.0, + 11.535 + ], + [ + 167.51999, + 318.4, + 5.0, + 11.535 + ], + [ + 172.51999, + 318.4, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 318.4, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 318.4, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 318.4, + 6.6600037, + 11.535 + ], + [ + 195.29, + 318.4, + 5.0, + 11.535 + ], + [ + 56.8, + 305.0, + 8.663998, + 12.642 + ], + [ + 65.404, + 305.0, + 6.0, + 12.642 + ], + [ + 71.404, + 305.0, + 3.3239975, + 12.642 + ], + [ + 74.703995, + 305.0, + 4.6679993, + 12.642 + ], + [ + 82.395996, + 305.0, + 5.316002, + 12.642 + ], + [ + 87.7, + 305.0, + 6.0, + 12.642 + ], + [ + 93.784, + 305.0, + 3.3239975, + 12.642 + ], + [ + 97.08399, + 305.0, + 5.316002, + 12.642 + ], + [ + 105.38799, + 305.0, + 3.3239975, + 12.642 + ], + [ + 108.68799, + 305.0, + 3.9960022, + 12.642 + ], + [ + 112.68399, + 305.0, + 6.0, + 12.642 + ], + [ + 118.68399, + 305.0, + 3.9960022, + 12.642 + ], + [ + 122.67999, + 305.0, + 5.316002, + 12.642 + ], + [ + 131.068, + 305.0, + 6.0, + 12.642 + ], + [ + 137.068, + 305.0, + 6.0, + 12.642 + ], + [ + 143.068, + 305.0, + 3.3240051, + 12.642 + ], + [ + 146.368, + 305.0, + 6.0, + 12.642 + ], + [ + 152.368, + 305.0, + 3.9960022, + 12.642 + ], + [ + 159.364, + 305.0, + 3.3240051, + 12.642 + ], + [ + 162.664, + 305.0, + 6.0, + 12.642 + ], + [ + 171.748, + 305.0, + 3.3240051, + 12.642 + ], + [ + 175.048, + 305.0, + 3.3240051, + 12.642 + ], + [ + 178.348, + 305.0, + 6.0, + 12.642 + ], + [ + 184.348, + 305.0, + 3.9960022, + 12.642 + ], + [ + 188.34401, + 305.0, + 5.3159943, + 12.642 + ], + [ + 193.64801, + 305.0, + 3.9960022, + 12.642 + ], + [ + 197.64401, + 305.0, + 6.0, + 12.642 + ], + [ + 203.64401, + 305.0, + 11.039993, + 12.642 + ], + [ + 214.73201, + 305.0, + 6.0, + 12.642 + ], + [ + 220.73201, + 305.0, + 6.0, + 12.642 + ], + [ + 226.73201, + 305.0, + 3.3240051, + 12.642 + ], + [ + 230.03201, + 305.0, + 3.3240051, + 12.642 + ], + [ + 233.33202, + 305.0, + 6.0, + 12.642 + ], + [ + 239.33202, + 305.0, + 6.0, + 12.642 + ], + [ + 245.33202, + 305.0, + 6.0, + 12.642 + ], + [ + 251.33202, + 305.0, + 3.0, + 12.642 + ], + [ + 254.33202, + 305.0, + 5.3159943, + 12.642 + ], + [ + 259.63602, + 305.0, + 6.0, + 12.642 + ], + [ + 265.72003, + 305.0, + 9.324005, + 12.642 + ], + [ + 278.02005, + 305.0, + 3.9960022, + 12.642 + ], + [ + 282.01605, + 305.0, + 5.3160095, + 12.642 + ], + [ + 287.32007, + 305.0, + 6.0, + 12.642 + ], + [ + 293.32007, + 305.0, + 3.9960022, + 12.642 + ], + [ + 297.31607, + 305.0, + 5.3160095, + 12.642 + ], + [ + 302.6201, + 305.0, + 6.0, + 12.642 + ], + [ + 308.6201, + 305.0, + 5.3160095, + 12.642 + ], + [ + 313.9241, + 305.0, + 6.0, + 12.642 + ], + [ + 319.9241, + 305.0, + 6.0, + 12.642 + ], + [ + 326.00812, + 305.0, + 5.3160095, + 12.642 + ], + [ + 331.31213, + 305.0, + 3.9960022, + 12.642 + ], + [ + 335.30814, + 305.0, + 3.3240051, + 12.642 + ], + [ + 338.60815, + 305.0, + 3.3240051, + 12.642 + ], + [ + 344.99216, + 305.0, + 3.3240051, + 12.642 + ], + [ + 348.29218, + 305.0, + 6.0, + 12.642 + ], + [ + 357.29218, + 305.0, + 6.0, + 12.642 + ], + [ + 363.29218, + 305.0, + 6.0, + 12.642 + ], + [ + 369.29218, + 305.0, + 3.3240051, + 12.642 + ], + [ + 372.5922, + 305.0, + 6.0, + 12.642 + ], + [ + 378.5922, + 305.0, + 6.0, + 12.642 + ], + [ + 384.5922, + 305.0, + 3.3240051, + 12.642 + ], + [ + 387.9762, + 305.0, + 5.3160095, + 12.642 + ], + [ + 393.2802, + 305.0, + 3.3240051, + 12.642 + ], + [ + 396.58023, + 305.0, + 5.3160095, + 12.642 + ], + [ + 404.96823, + 305.0, + 6.0, + 12.642 + ], + [ + 410.96823, + 305.0, + 6.0, + 12.642 + ], + [ + 416.96823, + 305.0, + 3.9960022, + 12.642 + ], + [ + 420.96423, + 305.0, + 6.0, + 12.642 + ], + [ + 426.96423, + 305.0, + 6.0, + 12.642 + ], + [ + 432.96423, + 305.0, + 6.0, + 12.642 + ], + [ + 438.96423, + 305.0, + 3.3240051, + 12.642 + ], + [ + 442.26425, + 305.0, + 5.3160095, + 12.642 + ], + [ + 447.56827, + 305.0, + 6.0, + 12.642 + ], + [ + 453.56827, + 305.0, + 11.040009, + 12.642 + ], + [ + 464.65628, + 305.0, + 9.324005, + 12.642 + ], + [ + 473.9563, + 305.0, + 4.6679993, + 12.642 + ], + [ + 478.6483, + 305.0, + 6.0, + 12.642 + ], + [ + 484.6483, + 305.0, + 3.0, + 12.642 + ], + [ + 487.6483, + 305.0, + 5.3160095, + 12.642 + ], + [ + 492.9523, + 305.0, + 6.0, + 12.642 + ], + [ + 498.9523, + 305.0, + 9.324005, + 12.642 + ], + [ + 511.25232, + 305.0, + 6.0, + 12.642 + ], + [ + 517.2523, + 305.0, + 5.315979, + 12.642 + ], + [ + 522.5563, + 305.0, + 3.3239746, + 12.642 + ], + [ + 525.94025, + 305.0, + 3.3239746, + 12.642 + ], + [ + 529.24023, + 305.0, + 3.3239746, + 12.642 + ], + [ + 56.8, + 291.2, + 5.315998, + 12.642 + ], + [ + 62.103996, + 291.2, + 4.6679993, + 12.642 + ], + [ + 66.7, + 291.2, + 4.6679993, + 12.642 + ], + [ + 71.392, + 291.2, + 5.316002, + 12.642 + ], + [ + 79.78, + 291.2, + 5.316002, + 12.642 + ], + [ + 85.084, + 291.2, + 3.3239975, + 12.642 + ], + [ + 88.383995, + 291.2, + 3.3239975, + 12.642 + ], + [ + 91.68399, + 291.2, + 3.3239975, + 12.642 + ], + [ + 94.983986, + 291.2, + 6.0, + 12.642 + ], + [ + 101.067986, + 291.2, + 9.3239975, + 12.642 + ], + [ + 113.36798, + 291.2, + 6.0, + 12.642 + ], + [ + 119.36798, + 291.2, + 6.0, + 12.642 + ], + [ + 125.36798, + 291.2, + 3.3240051, + 12.642 + ], + [ + 128.66798, + 291.2, + 6.0, + 12.642 + ], + [ + 134.66798, + 291.2, + 3.9960022, + 12.642 + ], + [ + 138.66399, + 291.2, + 5.3159943, + 12.642 + ], + [ + 147.05199, + 291.2, + 5.3159943, + 12.642 + ], + [ + 152.35599, + 291.2, + 6.0, + 12.642 + ], + [ + 161.35599, + 291.2, + 3.9960022, + 12.642 + ], + [ + 165.35199, + 291.2, + 6.0, + 12.642 + ], + [ + 171.35199, + 291.2, + 6.0, + 12.642 + ], + [ + 177.35199, + 291.2, + 3.3240051, + 12.642 + ], + [ + 180.652, + 291.2, + 5.3159943, + 12.642 + ], + [ + 185.956, + 291.2, + 3.3240051, + 12.642 + ], + [ + 192.34, + 291.2, + 6.0, + 12.642 + ], + [ + 198.34, + 291.2, + 6.0, + 12.642 + ], + [ + 204.34, + 291.2, + 3.3240051, + 12.642 + ], + [ + 207.64, + 291.2, + 3.3240051, + 12.642 + ], + [ + 210.94, + 291.2, + 5.3159943, + 12.642 + ], + [ + 219.328, + 291.2, + 6.0, + 12.642 + ], + [ + 225.328, + 291.2, + 5.3159943, + 12.642 + ], + [ + 230.632, + 291.2, + 3.9960022, + 12.642 + ], + [ + 234.628, + 291.2, + 3.3240051, + 12.642 + ], + [ + 237.92801, + 291.2, + 5.3159943, + 12.642 + ], + [ + 243.31601, + 291.2, + 3.3240051, + 12.642 + ], + [ + 246.61601, + 291.2, + 6.0, + 12.642 + ], + [ + 252.61601, + 291.2, + 3.995987, + 12.642 + ], + [ + 255.916, + 291.2, + 3.0000153, + 12.642 + ], + [ + 261.91602, + 291.2, + 7.3200073, + 12.642 + ], + [ + 269.21204, + 291.2, + 6.0, + 12.642 + ], + [ + 275.21204, + 291.2, + 5.3160095, + 12.642 + ], + [ + 280.60004, + 291.2, + 5.3160095, + 12.642 + ], + [ + 285.90405, + 291.2, + 6.0, + 12.642 + ], + [ + 291.90405, + 291.2, + 3.3240051, + 12.642 + ], + [ + 295.20407, + 291.2, + 5.3160095, + 12.642 + ], + [ + 300.5081, + 291.2, + 6.0, + 12.642 + ], + [ + 306.5081, + 291.2, + 3.9960022, + 12.642 + ], + [ + 313.6001, + 291.2, + 4.6679993, + 12.642 + ], + [ + 318.29208, + 291.2, + 3.3240051, + 12.642 + ], + [ + 321.5921, + 291.2, + 6.0, + 12.642 + ], + [ + 327.5921, + 291.2, + 3.3240051, + 12.642 + ], + [ + 333.89212, + 291.2, + 6.0, + 12.642 + ], + [ + 339.89212, + 291.2, + 3.3240051, + 12.642 + ], + [ + 343.19214, + 291.2, + 6.0, + 12.642 + ], + [ + 349.19214, + 291.2, + 3.3240051, + 12.642 + ], + [ + 352.49216, + 291.2, + 6.0, + 12.642 + ], + [ + 358.57617, + 291.2, + 5.3160095, + 12.642 + ], + [ + 363.8802, + 291.2, + 3.9960022, + 12.642 + ], + [ + 367.8762, + 291.2, + 11.040009, + 12.642 + ], + [ + 378.9642, + 291.2, + 5.3160095, + 12.642 + ], + [ + 384.26822, + 291.2, + 6.0, + 12.642 + ], + [ + 390.26822, + 291.2, + 9.324005, + 12.642 + ], + [ + 399.56824, + 291.2, + 5.3160095, + 12.642 + ], + [ + 404.87225, + 291.2, + 5.3160095, + 12.642 + ], + [ + 410.17627, + 291.2, + 4.6679993, + 12.642 + ], + [ + 414.86826, + 291.2, + 3.3240051, + 12.642 + ], + [ + 418.16827, + 291.2, + 3.0, + 12.642 + ], + [ + 421.16827, + 291.2, + 6.0, + 12.642 + ], + [ + 427.16827, + 291.2, + 5.3160095, + 12.642 + ], + [ + 432.55627, + 291.2, + 3.3240051, + 12.642 + ], + [ + 438.8563, + 291.2, + 6.0, + 12.642 + ], + [ + 444.8563, + 291.2, + 5.3160095, + 12.642 + ], + [ + 450.1603, + 291.2, + 5.3160095, + 12.642 + ], + [ + 455.46432, + 291.2, + 5.3160095, + 12.642 + ], + [ + 460.85233, + 291.2, + 5.3160095, + 12.642 + ], + [ + 466.15634, + 291.2, + 5.3160095, + 12.642 + ], + [ + 471.46036, + 291.2, + 5.3160095, + 12.642 + ], + [ + 476.84836, + 291.2, + 3.3240051, + 12.642 + ], + [ + 483.14838, + 291.2, + 5.3160095, + 12.642 + ], + [ + 488.4524, + 291.2, + 6.0, + 12.642 + ], + [ + 494.4524, + 291.2, + 6.0, + 12.642 + ], + [ + 500.4524, + 291.2, + 3.3240051, + 12.642 + ], + [ + 503.7524, + 291.2, + 6.0, + 12.642 + ], + [ + 509.7524, + 291.2, + 5.3160095, + 12.642 + ], + [ + 515.14044, + 291.2, + 3.3239746, + 12.642 + ], + [ + 518.4404, + 291.2, + 5.315979, + 12.642 + ], + [ + 523.7444, + 291.2, + 3.3239746, + 12.642 + ], + [ + 530.12836, + 291.2, + 6.0, + 12.642 + ], + [ + 536.12836, + 291.2, + 6.0, + 12.642 + ], + [ + 542.12836, + 291.2, + 6.0, + 12.642 + ], + [ + 56.8, + 277.40002, + 6.0, + 12.642 + ], + [ + 62.8, + 277.40002, + 3.9959984, + 12.642 + ], + [ + 66.796, + 277.40002, + 6.0, + 12.642 + ], + [ + 72.796, + 277.40002, + 3.3239975, + 12.642 + ], + [ + 76.09599, + 277.40002, + 6.0, + 12.642 + ], + [ + 82.09599, + 277.40002, + 5.316002, + 12.642 + ], + [ + 87.399994, + 277.40002, + 6.0, + 12.642 + ], + [ + 93.399994, + 277.40002, + 3.3239975, + 12.642 + ], + [ + 96.69999, + 277.40002, + 3.0, + 12.642 + ], + [ + 102.78399, + 277.40002, + 4.6679993, + 12.642 + ], + [ + 107.37999, + 277.40002, + 6.0, + 12.642 + ], + [ + 113.37999, + 277.40002, + 6.0, + 12.642 + ], + [ + 119.37999, + 277.40002, + 3.3239975, + 12.642 + ], + [ + 125.763985, + 277.40002, + 3.3239975, + 12.642 + ], + [ + 129.06398, + 277.40002, + 6.0, + 12.642 + ], + [ + 138.06398, + 277.40002, + 6.0, + 12.642 + ], + [ + 144.06398, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 149.36798, + 277.40002, + 8.664001, + 12.642 + ], + [ + 158.05598, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 163.35999, + 277.40002, + 4.6679993, + 12.642 + ], + [ + 168.05199, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 173.35599, + 277.40002, + 6.0, + 12.642 + ], + [ + 179.35599, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 182.65599, + 277.40002, + 11.039993, + 12.642 + ], + [ + 193.74399, + 277.40002, + 9.324005, + 12.642 + ], + [ + 203.04399, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 208.34799, + 277.40002, + 3.0, + 12.642 + ], + [ + 211.34799, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 216.652, + 277.40002, + 6.0, + 12.642 + ], + [ + 222.736, + 277.40002, + 9.324005, + 12.642 + ], + [ + 235.036, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 240.34, + 277.40002, + 6.0, + 12.642 + ], + [ + 246.34, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 249.64, + 277.40002, + 6.0, + 12.642 + ], + [ + 255.64, + 277.40002, + 5.3159943, + 12.642 + ], + [ + 264.02798, + 277.40002, + 6.0, + 12.642 + ], + [ + 270.02798, + 277.40002, + 6.0, + 12.642 + ], + [ + 276.02798, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 282.328, + 277.40002, + 6.0, + 12.642 + ], + [ + 288.328, + 277.40002, + 3.9960022, + 12.642 + ], + [ + 292.13202, + 277.40002, + 3.9960022, + 12.642 + ], + [ + 296.12802, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 299.42804, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 304.81604, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 308.11606, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 316.42007, + 277.40002, + 6.0, + 12.642 + ], + [ + 322.42007, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 327.7241, + 277.40002, + 4.6679993, + 12.642 + ], + [ + 332.41608, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 337.7201, + 277.40002, + 3.9960022, + 12.642 + ], + [ + 341.7161, + 277.40002, + 6.0, + 12.642 + ], + [ + 347.7161, + 277.40002, + 6.0, + 12.642 + ], + [ + 353.7161, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 360.1001, + 277.40002, + 9.324005, + 12.642 + ], + [ + 369.40012, + 277.40002, + 6.0, + 12.642 + ], + [ + 375.40012, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 378.70013, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 382.08414, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 385.38416, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 391.68417, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 396.9882, + 277.40002, + 6.0, + 12.642 + ], + [ + 403.0722, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 406.37222, + 277.40002, + 9.324005, + 12.642 + ], + [ + 418.67224, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 421.97226, + 277.40002, + 6.0, + 12.642 + ], + [ + 431.05627, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 436.3603, + 277.40002, + 4.6679993, + 12.642 + ], + [ + 441.05228, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 447.3523, + 277.40002, + 3.3240051, + 12.642 + ], + [ + 450.6523, + 277.40002, + 5.3160095, + 12.642 + ], + [ + 455.95633, + 277.40002, + 6.0, + 12.642 + ], + [ + 461.95633, + 277.40002, + 6.0, + 12.642 + ], + [ + 467.95633, + 277.40002, + 3.9960022, + 12.642 + ], + [ + 471.95233, + 277.40002, + 6.0, + 12.642 + ], + [ + 477.95233, + 277.40002, + 9.324005, + 12.642 + ], + [ + 487.25235, + 277.40002, + 3.0, + 12.642 + ] + ] + }, + { + "id": 50, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 135.05501, + 692.1, + 10.180206, + 13.867801 + ], + [ + 145.23521, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 153.03252, + 692.1, + 8.600998, + 13.867801 + ], + [ + 161.71811, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 169.51541, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 177.31271, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 185.9983, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 193.79561, + 692.1, + 8.600998, + 13.867801 + ], + [ + 202.3966, + 692.1, + 8.600998, + 13.867801 + ], + [ + 210.9976, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 215.6929, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 223.5748, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 231.3721, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 239.9731, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 243.8788, + 692.1, + 8.600998, + 13.867801 + ], + [ + 252.4798, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 257.1751, + 692.1, + 8.601013, + 13.867801 + ], + [ + 265.77612, + 692.1, + 5.484894, + 13.867801 + ], + [ + 271.26102, + 692.1, + 12.534912, + 13.867801 + ], + [ + 283.85233, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 291.64963, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 296.34494, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 300.25064, + 692.1, + 8.601013, + 13.867801 + ], + [ + 308.85165, + 692.1, + 8.601013, + 13.867801 + ], + [ + 321.44296, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 326.13828, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 333.93558, + 692.1, + 8.601013, + 13.867801 + ], + [ + 342.5366, + 692.1, + 8.601013, + 13.867801 + ], + [ + 351.1376, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 355.83292, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 363.7148, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 367.6205, + 692.1, + 8.601013, + 13.867801 + ], + [ + 376.22153, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 388.00912, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 394.69254, + 692.1, + 10.180206, + 13.867801 + ], + [ + 404.87274, + 692.1, + 8.601013, + 13.867801 + ], + [ + 413.47375, + 692.1, + 8.601013, + 13.867801 + ], + [ + 422.07477, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 426.77008, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 434.56738, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 442.3647, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 451.0503, + 692.1, + 8.601013, + 13.867801 + ], + [ + 459.6513, + 692.1, + 8.601013, + 13.867801 + ], + [ + 468.25232, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 472.15802, + 692.1, + 8.601013, + 13.867801 + ], + [ + 480.75903, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 485.45435, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 490.14966, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 496.83307, + 692.1, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 51, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 82, + 83, + 84, + 85, + 86, + 87, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 93, + 94, + 95, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103 + ], + "positions": [ + [ + 56.8, + 673.8, + 6.1000023, + 11.535 + ], + [ + 62.9, + 673.8, + 4.4300003, + 11.535 + ], + [ + 67.3, + 673.8, + 5.0, + 11.535 + ], + [ + 72.3, + 673.8, + 5.0, + 11.535 + ], + [ + 77.3, + 673.8, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 673.8, + 2.7699966, + 11.535 + ], + [ + 86.99, + 673.8, + 6.659996, + 11.535 + ], + [ + 93.67999, + 673.8, + 5.0, + 11.535 + ], + [ + 98.67999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 673.8, + 5.0, + 11.535 + ], + [ + 110.66999, + 673.8, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 673.8, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 673.8, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 673.8, + 5.0, + 11.535 + ], + [ + 136.14998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 673.8, + 5.0, + 11.535 + ], + [ + 145.03998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 673.8, + 5.0, + 11.535 + ], + [ + 159.72998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 673.8, + 5.0, + 11.535 + ], + [ + 167.51999, + 673.8, + 5.0, + 11.535 + ], + [ + 172.51999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 673.8, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 56.8, + 662.2, + 6.1000023, + 11.535 + ], + [ + 62.9, + 662.2, + 4.4300003, + 11.535 + ], + [ + 67.3, + 662.2, + 5.0, + 11.535 + ], + [ + 72.3, + 662.2, + 5.0, + 11.535 + ], + [ + 77.3, + 662.2, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 662.2, + 2.7699966, + 11.535 + ], + [ + 86.99, + 662.2, + 6.659996, + 11.535 + ], + [ + 93.67999, + 662.2, + 5.0, + 11.535 + ], + [ + 98.67999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 662.2, + 5.0, + 11.535 + ], + [ + 110.66999, + 662.2, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 662.2, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 662.2, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 662.2, + 5.0, + 11.535 + ], + [ + 136.14998, + 662.2, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 662.2, + 5.0, + 11.535 + ], + [ + 145.03998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 662.2, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 662.2, + 5.0, + 11.535 + ], + [ + 159.72998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 662.2, + 5.0, + 11.535 + ], + [ + 167.51999, + 662.2, + 5.0, + 11.535 + ], + [ + 172.51999, + 662.2, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 662.2, + 6.6600037, + 11.535 + ], + [ + 195.29, + 662.2, + 5.0, + 11.535 + ], + [ + 56.8, + 650.7, + 5.5600014, + 11.535 + ], + [ + 62.3, + 650.7, + 6.66, + 11.535 + ], + [ + 68.99, + 650.7, + 5.0, + 11.535 + ], + [ + 73.99, + 650.7, + 5.0, + 11.535 + ], + [ + 78.99, + 650.7, + 2.7699966, + 11.535 + ], + [ + 81.77999, + 650.7, + 5.0, + 11.535 + ], + [ + 86.77999, + 650.7, + 4.4300003, + 11.535 + ], + [ + 91.17999, + 650.7, + 2.7699966, + 11.535 + ], + [ + 93.969986, + 650.7, + 3.3300018, + 11.535 + ], + [ + 97.26999, + 650.7, + 3.3300018, + 11.535 + ], + [ + 100.56999, + 650.7, + 5.0, + 11.535 + ], + [ + 105.56999, + 650.7, + 2.7699966, + 11.535 + ], + [ + 108.359985, + 650.7, + 5.0, + 11.535 + ], + [ + 113.359985, + 650.7, + 3.8899994, + 11.535 + ], + [ + 117.249985, + 650.7, + 7.220001, + 11.535 + ], + [ + 124.44999, + 650.7, + 4.9999924, + 11.535 + ], + [ + 129.44998, + 650.7, + 2.7700043, + 11.535 + ], + [ + 132.23999, + 650.7, + 2.7700043, + 11.535 + ], + [ + 135.03, + 650.7, + 5.0, + 11.535 + ], + [ + 140.03, + 650.7, + 5.0, + 11.535 + ], + [ + 147.53, + 650.7, + 6.6600037, + 11.535 + ], + [ + 154.22, + 650.7, + 5.0, + 11.535 + ], + [ + 159.22, + 650.7, + 3.8899994, + 11.535 + ], + [ + 165.61, + 650.7, + 2.7700043, + 11.535 + ], + [ + 168.31, + 650.7, + 5.0, + 11.535 + ], + [ + 173.31, + 650.7, + 5.0, + 11.535 + ], + [ + 178.31, + 650.7, + 5.0, + 11.535 + ], + [ + 183.31, + 650.7, + 5.0, + 11.535 + ], + [ + 190.81, + 650.7, + 3.8899994, + 11.535 + ], + [ + 194.7, + 650.7, + 5.0, + 11.535 + ], + [ + 199.7, + 650.7, + 5.0, + 11.535 + ], + [ + 204.7, + 650.7, + 5.0, + 11.535 + ], + [ + 209.7, + 650.7, + 2.7700043, + 11.535 + ], + [ + 212.49, + 650.7, + 5.0, + 11.535 + ], + [ + 219.99, + 650.7, + 5.0, + 11.535 + ], + [ + 224.99, + 650.7, + 4.4299927, + 11.535 + ], + [ + 231.89, + 650.7, + 5.0, + 11.535 + ], + [ + 236.89, + 650.7, + 5.0, + 11.535 + ], + [ + 241.89, + 650.7, + 5.0, + 11.535 + ], + [ + 246.89, + 650.7, + 4.4299927, + 11.535 + ], + [ + 251.29, + 650.7, + 4.9999847, + 11.535 + ], + [ + 256.28998, + 650.7, + 3.8900146, + 11.535 + ], + [ + 260.18, + 650.7, + 3.8900146, + 11.535 + ], + [ + 264.07, + 650.7, + 5.5599976, + 11.535 + ] + ] + }, + { + "id": 52, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 15 + ], + "positions": [ + [ + 59.6, + 634.5, + 8.664001, + 12.642 + ], + [ + 68.288, + 634.5, + 5.316002, + 12.642 + ], + [ + 73.592, + 634.5, + 4.6679993, + 12.642 + ], + [ + 78.284004, + 634.5, + 5.316002, + 12.642 + ], + [ + 83.588005, + 634.5, + 3.9960022, + 12.642 + ], + [ + 87.58401, + 634.5, + 3.3239975, + 12.642 + ], + [ + 90.884, + 634.5, + 6.0, + 12.642 + ], + [ + 96.884, + 634.5, + 3.3239975, + 12.642 + ], + [ + 100.268, + 634.5, + 3.3239975, + 12.642 + ], + [ + 103.56799, + 634.5, + 6.0, + 12.642 + ], + [ + 109.56799, + 634.5, + 6.0, + 12.642 + ], + [ + 118.36399, + 634.5, + 7.3199997, + 12.642 + ], + [ + 124.86799, + 634.5, + 5.316002, + 12.642 + ], + [ + 130.172, + 634.5, + 6.0, + 12.642 + ], + [ + 136.172, + 634.5, + 3.3240051, + 12.642 + ] + ] + }, + { + "id": 53, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "positions": [ + [ + 308.8, + 634.5, + 7.9920044, + 12.642 + ], + [ + 316.792, + 634.5, + 6.0, + 12.642 + ], + [ + 322.792, + 634.5, + 6.0, + 12.642 + ], + [ + 328.792, + 634.5, + 3.3240051, + 12.642 + ], + [ + 332.092, + 634.5, + 5.3160095, + 12.642 + ], + [ + 337.39603, + 634.5, + 5.3160095, + 12.642 + ], + [ + 342.70004, + 634.5, + 3.3240051, + 12.642 + ], + [ + 349.08405, + 634.5, + 6.671997, + 12.642 + ], + [ + 355.76804, + 634.5, + 6.0, + 12.642 + ], + [ + 361.76804, + 634.5, + 3.3240051, + 12.642 + ], + [ + 365.06805, + 634.5, + 6.0, + 12.642 + ], + [ + 371.06805, + 634.5, + 3.3240051, + 12.642 + ] + ] + }, + { + "id": 54, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 33, + 34, + 35, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 85, + 86, + 87, + 88, + 89, + 90, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 108, + 109, + 110, + 111, + 112, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 129, + 130, + 131, + 132, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 141, + 142, + 143, + 144, + 145, + 145, + 146, + 147, + 147, + 148, + 149, + 150, + 151, + 152, + 152, + 153, + 154, + 155, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 176, + 177, + 178, + 179, + 180, + 180, + 181, + 182, + 182, + 183, + 184, + 185, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193 + ], + "positions": [ + [ + 59.6, + 617.9, + 6.498001, + 10.981501 + ], + [ + 66.098, + 617.9, + 4.5, + 10.981501 + ], + [ + 70.598, + 617.9, + 2.4930038, + 10.981501 + ], + [ + 73.091, + 617.9, + 3.5009995, + 10.981501 + ], + [ + 78.887, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 82.874, + 617.9, + 4.5, + 10.981501 + ], + [ + 87.374, + 617.9, + 2.4930038, + 10.981501 + ], + [ + 89.867004, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 96.05, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 98.543, + 617.9, + 2.9970016, + 10.981501 + ], + [ + 101.54, + 617.9, + 4.5, + 10.981501 + ], + [ + 106.04, + 617.9, + 2.9970016, + 10.981501 + ], + [ + 109.037, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 115.319, + 617.9, + 4.5, + 10.981501 + ], + [ + 119.819, + 617.9, + 4.5, + 10.981501 + ], + [ + 124.319, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 126.812, + 617.9, + 4.5, + 10.981501 + ], + [ + 131.312, + 617.9, + 2.996994, + 10.981501 + ], + [ + 136.50499, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 138.99799, + 617.9, + 4.5, + 10.981501 + ], + [ + 145.79298, + 617.9, + 2.996994, + 10.981501 + ], + [ + 148.69098, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 152.67798, + 617.9, + 4.5, + 10.981501 + ], + [ + 157.17798, + 617.9, + 2.996994, + 10.981501 + ], + [ + 160.17497, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 164.16197, + 617.9, + 4.5, + 10.981501 + ], + [ + 168.66197, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 172.64897, + 617.9, + 4.5, + 10.981501 + ], + [ + 177.14897, + 617.9, + 4.5, + 10.981501 + ], + [ + 181.64897, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 185.63597, + 617.9, + 2.996994, + 10.981501 + ], + [ + 188.63297, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 191.12596, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 195.91396, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 198.40695, + 617.9, + 4.5, + 10.981501 + ], + [ + 205.10295, + 617.9, + 4.5, + 10.981501 + ], + [ + 209.60295, + 617.9, + 4.5, + 10.981501 + ], + [ + 214.10295, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 216.59595, + 617.9, + 4.5, + 10.981501 + ], + [ + 221.09595, + 617.9, + 4.5, + 10.981501 + ], + [ + 225.59595, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 228.08894, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 232.07594, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 234.56894, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 240.85094, + 617.9, + 4.5, + 10.981501 + ], + [ + 245.25194, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 249.23894, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 251.73193, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 254.22493, + 617.9, + 2.4929962, + 10.981501 + ], + [ + 259.01294, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 262.99994, + 617.9, + 3.501007, + 10.981501 + ], + [ + 266.50095, + 617.9, + 3.501007, + 10.981501 + ], + [ + 270.00195, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 276.18497, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 280.17197, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 282.66498, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 285.158, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 287.651, + 617.9, + 4.5, + 10.981501 + ], + [ + 292.151, + 617.9, + 6.9930115, + 10.981501 + ], + [ + 59.6, + 607.6, + 5.9940033, + 10.981501 + ], + [ + 65.594, + 607.6, + 4.5, + 10.981501 + ], + [ + 70.094, + 607.6, + 4.5, + 10.981501 + ], + [ + 74.594, + 607.6, + 2.4930038, + 10.981501 + ], + [ + 77.087006, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 81.074005, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 85.061005, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 89.849, + 607.6, + 5.003998, + 10.981501 + ], + [ + 94.853, + 607.6, + 4.5, + 10.981501 + ], + [ + 99.353, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 101.84599, + 607.6, + 4.5, + 10.981501 + ], + [ + 106.34599, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 111.03499, + 607.6, + 4.5, + 10.981501 + ], + [ + 115.53499, + 607.6, + 4.5, + 10.981501 + ], + [ + 120.03499, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 122.527985, + 607.6, + 4.5, + 10.981501 + ], + [ + 127.027985, + 607.6, + 2.996994, + 10.981501 + ], + [ + 130.02498, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 136.30698, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 140.29398, + 607.6, + 4.5, + 10.981501 + ], + [ + 146.98997, + 607.6, + 2.996994, + 10.981501 + ], + [ + 149.98697, + 607.6, + 4.5, + 10.981501 + ], + [ + 154.48697, + 607.6, + 4.5, + 10.981501 + ], + [ + 158.98697, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 161.47997, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 165.46696, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 170.15596, + 607.6, + 4.5, + 10.981501 + ], + [ + 174.65596, + 607.6, + 4.5, + 10.981501 + ], + [ + 179.15596, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 181.64896, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 184.14195, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 190.42395, + 607.6, + 4.5, + 10.981501 + ], + [ + 194.92395, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 198.91095, + 607.6, + 2.996994, + 10.981501 + ], + [ + 201.90794, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 204.40094, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 208.38794, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 210.88094, + 607.6, + 4.5, + 10.981501 + ], + [ + 215.38094, + 607.6, + 2.996994, + 10.981501 + ], + [ + 217.78394, + 607.6, + 2.25, + 10.981501 + ], + [ + 222.37393, + 607.6, + 5.4900055, + 10.981501 + ], + [ + 227.86394, + 607.6, + 4.5, + 10.981501 + ], + [ + 232.36394, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 236.35094, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 240.33794, + 607.6, + 4.5, + 10.981501 + ], + [ + 244.83794, + 607.6, + 2.4929962, + 10.981501 + ], + [ + 247.24094, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 251.22794, + 607.6, + 4.5, + 10.981501 + ], + [ + 255.72794, + 607.6, + 2.9970093, + 10.981501 + ], + [ + 261.01996, + 607.6, + 3.501007, + 10.981501 + ], + [ + 264.52097, + 607.6, + 2.4930115, + 10.981501 + ], + [ + 267.01398, + 607.6, + 4.5, + 10.981501 + ], + [ + 271.51398, + 607.6, + 2.4930115, + 10.981501 + ], + [ + 59.6, + 597.2, + 4.5, + 10.981501 + ], + [ + 64.1, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 68.087, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 72.074, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 76.061, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 80.048, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 84.034996, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 88.021996, + 597.2, + 2.4930038, + 10.981501 + ], + [ + 92.711, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 96.698, + 597.2, + 4.5, + 10.981501 + ], + [ + 101.198, + 597.2, + 4.5, + 10.981501 + ], + [ + 105.698, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 108.190994, + 597.2, + 4.5, + 10.981501 + ], + [ + 112.690994, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 116.67799, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 119.17099, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 123.15799, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 127.945984, + 597.2, + 4.5, + 10.981501 + ], + [ + 132.44598, + 597.2, + 4.5, + 10.981501 + ], + [ + 136.94598, + 597.2, + 4.5, + 10.981501 + ], + [ + 143.64198, + 597.2, + 4.5, + 10.981501 + ], + [ + 148.14198, + 597.2, + 2.996994, + 10.981501 + ], + [ + 151.13898, + 597.2, + 4.5, + 10.981501 + ], + [ + 155.63898, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 158.13197, + 597.2, + 4.5, + 10.981501 + ], + [ + 162.63197, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 166.61897, + 597.2, + 4.5, + 10.981501 + ], + [ + 171.11897, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 173.52197, + 597.2, + 2.25, + 10.981501 + ], + [ + 178.11197, + 597.2, + 3.501007, + 10.981501 + ], + [ + 181.61298, + 597.2, + 4.5, + 10.981501 + ], + [ + 186.11298, + 597.2, + 4.5, + 10.981501 + ], + [ + 190.61298, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 195.30197, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 197.79497, + 597.2, + 4.5, + 10.981501 + ], + [ + 204.58997, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 208.57697, + 597.2, + 4.5, + 10.981501 + ], + [ + 213.07697, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 215.56996, + 597.2, + 4.5, + 10.981501 + ], + [ + 220.06996, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 226.25296, + 597.2, + 4.5, + 10.981501 + ], + [ + 230.75296, + 597.2, + 4.5, + 10.981501 + ], + [ + 235.25296, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 240.04095, + 597.2, + 4.5, + 10.981501 + ], + [ + 244.54095, + 597.2, + 2.996994, + 10.981501 + ], + [ + 247.33995, + 597.2, + 2.996994, + 10.981501 + ], + [ + 250.33694, + 597.2, + 2.4929962, + 10.981501 + ], + [ + 252.82994, + 597.2, + 3.9870148, + 10.981501 + ], + [ + 256.81696, + 597.2, + 2.4930115, + 10.981501 + ], + [ + 259.30997, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 265.49298, + 597.2, + 4.5, + 10.981501 + ], + [ + 269.99298, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 273.97998, + 597.2, + 3.501007, + 10.981501 + ], + [ + 277.481, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 281.468, + 597.2, + 2.9970093, + 10.981501 + ], + [ + 284.465, + 597.2, + 4.5, + 10.981501 + ], + [ + 288.965, + 597.2, + 4.5, + 10.981501 + ], + [ + 293.465, + 597.2, + 2.4930115, + 10.981501 + ], + [ + 59.6, + 586.9, + 6.993004, + 10.981501 + ], + [ + 66.593, + 586.9, + 4.5, + 10.981501 + ], + [ + 71.093, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 73.586, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 76.078995, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 78.57199, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 83.359985, + 586.9, + 3.9869995, + 10.981501 + ], + [ + 87.346985, + 586.9, + 4.5, + 10.981501 + ], + [ + 91.846985, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 94.33998, + 586.9, + 6.992996, + 10.981501 + ], + [ + 103.52898, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 106.02197, + 586.9, + 4.5, + 10.981501 + ], + [ + 112.81697, + 586.9, + 3.9869995, + 10.981501 + ], + [ + 116.80397, + 586.9, + 3.5009995, + 10.981501 + ], + [ + 120.30497, + 586.9, + 2.4930038, + 10.981501 + ], + [ + 124.99397, + 586.9, + 2.4929962, + 10.981501 + ], + [ + 127.48697, + 586.9, + 3.9869995, + 10.981501 + ], + [ + 131.47397, + 586.9, + 4.5, + 10.981501 + ], + [ + 135.97397, + 586.9, + 4.5, + 10.981501 + ], + [ + 140.47397, + 586.9, + 2.996994, + 10.981501 + ], + [ + 143.47096, + 586.9, + 4.5, + 10.981501 + ], + [ + 147.97096, + 586.9, + 6.992996, + 10.981501 + ], + [ + 154.96396, + 586.9, + 2.25, + 10.981501 + ] + ] + }, + { + "id": 55, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 42, + 43, + 44, + 45, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 91, + 92, + 93, + 94, + 95, + 95, + 96, + 97, + 98, + 98, + 99, + 100, + 101, + 102, + 102, + 103, + 104, + 105, + 106, + 107, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 293, + 294, + 295, + 296, + 296, + 297, + 298, + 299, + 300, + 300, + 301, + 302, + 303, + 304, + 304, + 305, + 306, + 307, + 308, + 308, + 309, + 310, + 311, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 318, + 319, + 320, + 321, + 322, + 322, + 323, + 324, + 325, + 326, + 326, + 327, + 328, + 329, + 330, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 340, + 341, + 342, + 343, + 344, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 352, + 353, + 354, + 355, + 356, + 357, + 357, + 358, + 359, + 360, + 360, + 361, + 362, + 363, + 364, + 364, + 365, + 366, + 367, + 368, + 368, + 369, + 370, + 371, + 372, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 380, + 381, + 382, + 383, + 383, + 384, + 385, + 386, + 387, + 387, + 388, + 389, + 390, + 391, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483 + ], + "positions": [ + [ + 308.8, + 617.9, + 5.993988, + 10.981501 + ], + [ + 314.79398, + 617.9, + 4.5, + 10.981501 + ], + [ + 319.29398, + 617.9, + 4.5, + 10.981501 + ], + [ + 323.79398, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 326.287, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 330.274, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 334.261, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 338.95, + 617.9, + 4.5, + 10.981501 + ], + [ + 343.45, + 617.9, + 4.5, + 10.981501 + ], + [ + 347.95, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 350.44302, + 617.9, + 4.5, + 10.981501 + ], + [ + 354.94302, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 357.43604, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 362.22406, + 617.9, + 5.993988, + 10.981501 + ], + [ + 368.21805, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 372.20505, + 617.9, + 4.5, + 10.981501 + ], + [ + 376.70505, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 379.19806, + 617.9, + 2.9970093, + 10.981501 + ], + [ + 382.09607, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 386.08307, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 390.8711, + 617.9, + 5.993988, + 10.981501 + ], + [ + 396.86508, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 400.85208, + 617.9, + 3.501007, + 10.981501 + ], + [ + 404.3531, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 408.3401, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 412.3271, + 617.9, + 2.9970093, + 10.981501 + ], + [ + 415.3241, + 617.9, + 3.9869995, + 10.981501 + ], + [ + 419.3111, + 617.9, + 4.5, + 10.981501 + ], + [ + 426.0071, + 617.9, + 2.9970093, + 10.981501 + ], + [ + 429.00412, + 617.9, + 4.5, + 10.981501 + ], + [ + 433.50412, + 617.9, + 4.5, + 10.981501 + ], + [ + 438.00412, + 617.9, + 4.5, + 10.981501 + ], + [ + 442.50412, + 617.9, + 3.501007, + 10.981501 + ], + [ + 446.00513, + 617.9, + 2.4930115, + 10.981501 + ], + [ + 448.49814, + 617.9, + 2.9970093, + 10.981501 + ], + [ + 451.49515, + 617.9, + 4.5, + 10.981501 + ], + [ + 308.8, + 607.6, + 5.003998, + 10.981501 + ], + [ + 313.804, + 607.6, + 4.5, + 10.981501 + ], + [ + 318.304, + 607.6, + 4.5, + 10.981501 + ], + [ + 322.804, + 607.6, + 4.5, + 10.981501 + ], + [ + 327.304, + 607.6, + 3.9869995, + 10.981501 + ], + [ + 331.291, + 607.6, + 2.4930115, + 10.981501 + ], + [ + 335.98, + 607.6, + 5.066986, + 10.981501 + ], + [ + 341.074, + 607.6, + 4.5, + 10.981501 + ], + [ + 345.574, + 607.6, + 4.5, + 10.981501 + ], + [ + 352.36902, + 607.6, + 4.5, + 10.981501 + ], + [ + 356.77002, + 607.6, + 4.5, + 10.981501 + ], + [ + 360.97302, + 607.6, + 4.5, + 10.981501 + ], + [ + 365.47302, + 607.6, + 4.5, + 10.981501 + ], + [ + 372.26804, + 607.6, + 4.5, + 10.981501 + ], + [ + 376.76804, + 607.6, + 4.5, + 10.981501 + ], + [ + 381.16904, + 607.6, + 4.5, + 10.981501 + ], + [ + 385.37204, + 607.6, + 4.5, + 10.981501 + ], + [ + 392.16705, + 607.6, + 4.5, + 10.981501 + ], + [ + 396.66705, + 607.6, + 4.5, + 10.981501 + ], + [ + 401.16705, + 607.6, + 4.5, + 10.981501 + ], + [ + 308.8, + 597.2, + 5.003998, + 10.981501 + ], + [ + 313.804, + 597.2, + 3.9869995, + 10.981501 + ], + [ + 317.791, + 597.2, + 4.5, + 10.981501 + ], + [ + 322.291, + 597.2, + 2.4930115, + 10.981501 + ], + [ + 326.98, + 597.2, + 5.066986, + 10.981501 + ], + [ + 332.074, + 597.2, + 4.5, + 10.981501 + ], + [ + 336.574, + 597.2, + 4.5, + 10.981501 + ], + [ + 343.36902, + 597.2, + 4.5, + 10.981501 + ], + [ + 347.77002, + 597.2, + 4.5, + 10.981501 + ], + [ + 351.97302, + 597.2, + 4.5, + 10.981501 + ], + [ + 356.47302, + 597.2, + 4.5, + 10.981501 + ], + [ + 363.26804, + 597.2, + 4.5, + 10.981501 + ], + [ + 367.76804, + 597.2, + 4.5, + 10.981501 + ], + [ + 372.16904, + 597.2, + 4.5, + 10.981501 + ], + [ + 376.37204, + 597.2, + 4.5, + 10.981501 + ], + [ + 383.16705, + 597.2, + 4.5, + 10.981501 + ], + [ + 387.66705, + 597.2, + 4.5, + 10.981501 + ], + [ + 392.16705, + 597.2, + 4.5, + 10.981501 + ], + [ + 308.8, + 586.9, + 5.48999, + 10.981501 + ], + [ + 313.597, + 586.9, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 586.9, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 586.9, + 2.25, + 10.981501 + ], + [ + 322.372, + 586.9, + 2.4930115, + 10.981501 + ], + [ + 327.06104, + 586.9, + 5.066986, + 10.981501 + ], + [ + 332.15503, + 586.9, + 4.5, + 10.981501 + ], + [ + 336.65503, + 586.9, + 4.5, + 10.981501 + ], + [ + 343.45004, + 586.9, + 4.5, + 10.981501 + ], + [ + 347.95004, + 586.9, + 4.5, + 10.981501 + ], + [ + 352.45004, + 586.9, + 4.5, + 10.981501 + ], + [ + 356.95004, + 586.9, + 4.5, + 10.981501 + ], + [ + 361.45004, + 586.9, + 4.5, + 10.981501 + ], + [ + 365.95004, + 586.9, + 4.5, + 10.981501 + ], + [ + 370.45004, + 586.9, + 4.5, + 10.981501 + ], + [ + 374.95004, + 586.9, + 4.5, + 10.981501 + ], + [ + 379.45004, + 586.9, + 4.5, + 10.981501 + ], + [ + 308.8, + 576.5, + 5.48999, + 10.981501 + ], + [ + 313.597, + 576.5, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 576.5, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 576.5, + 2.4930115, + 10.981501 + ], + [ + 324.86502, + 576.5, + 5.066986, + 10.981501 + ], + [ + 329.959, + 576.5, + 4.5, + 10.981501 + ], + [ + 334.459, + 576.5, + 4.5, + 10.981501 + ], + [ + 341.15503, + 576.5, + 4.5, + 10.981501 + ], + [ + 345.65503, + 576.5, + 4.5, + 10.981501 + ], + [ + 350.15503, + 576.5, + 4.5, + 10.981501 + ], + [ + 354.65503, + 576.5, + 4.5, + 10.981501 + ], + [ + 361.45004, + 576.5, + 4.5, + 10.981501 + ], + [ + 365.95004, + 576.5, + 4.5, + 10.981501 + ], + [ + 370.45004, + 576.5, + 4.5, + 10.981501 + ], + [ + 374.95004, + 576.5, + 4.5, + 10.981501 + ], + [ + 379.45004, + 576.5, + 4.5, + 10.981501 + ], + [ + 308.8, + 566.2, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 566.2, + 2.9970093, + 10.981501 + ], + [ + 317.287, + 566.2, + 6.9930115, + 10.981501 + ], + [ + 324.28, + 566.2, + 3.9869995, + 10.981501 + ], + [ + 328.267, + 566.2, + 2.4930115, + 10.981501 + ], + [ + 330.76, + 566.2, + 2.4930115, + 10.981501 + ], + [ + 333.25302, + 566.2, + 2.4930115, + 10.981501 + ], + [ + 337.94205, + 566.2, + 5.003998, + 10.981501 + ], + [ + 342.94604, + 566.2, + 3.9869995, + 10.981501 + ], + [ + 346.93304, + 566.2, + 2.9970093, + 10.981501 + ], + [ + 349.93005, + 566.2, + 2.4930115, + 10.981501 + ], + [ + 352.42307, + 566.2, + 4.5, + 10.981501 + ], + [ + 356.92307, + 566.2, + 4.5, + 10.981501 + ], + [ + 361.42307, + 566.2, + 4.5, + 10.981501 + ], + [ + 365.92307, + 566.2, + 6.497986, + 10.981501 + ], + [ + 372.42105, + 566.2, + 6.9930115, + 10.981501 + ], + [ + 379.41406, + 566.2, + 4.5, + 10.981501 + ], + [ + 383.91406, + 566.2, + 4.5, + 10.981501 + ], + [ + 388.41406, + 566.2, + 2.4930115, + 10.981501 + ], + [ + 390.90707, + 566.2, + 2.4930115, + 10.981501 + ], + [ + 393.4001, + 566.2, + 8.279999, + 10.981501 + ], + [ + 401.6891, + 566.2, + 3.9869995, + 10.981501 + ], + [ + 405.6761, + 566.2, + 4.5, + 10.981501 + ], + [ + 410.1761, + 566.2, + 2.25, + 10.981501 + ], + [ + 412.4711, + 566.2, + 4.5, + 10.981501 + ], + [ + 416.9711, + 566.2, + 4.5, + 10.981501 + ], + [ + 308.8, + 555.8, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 555.8, + 6.9930115, + 10.981501 + ], + [ + 321.283, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 325.27, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 327.763, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 330.256, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 334.94504, + 555.8, + 6.9930115, + 10.981501 + ], + [ + 341.93805, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 345.92505, + 555.8, + 4.5, + 10.981501 + ], + [ + 350.42505, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 352.91806, + 555.8, + 6.9930115, + 10.981501 + ], + [ + 359.91107, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 362.40408, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 364.8971, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 367.3901, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 371.3771, + 555.8, + 6.9930115, + 10.981501 + ], + [ + 378.37012, + 555.8, + 3.501007, + 10.981501 + ], + [ + 381.87112, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 385.85812, + 555.8, + 4.5, + 10.981501 + ], + [ + 390.35812, + 555.8, + 6.9930115, + 10.981501 + ], + [ + 397.35114, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 399.84415, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 402.33716, + 555.8, + 2.4930115, + 10.981501 + ], + [ + 404.83017, + 555.8, + 8.279999, + 10.981501 + ], + [ + 413.11917, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 417.10617, + 555.8, + 2.9970093, + 10.981501 + ], + [ + 420.10318, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 424.09018, + 555.8, + 4.5, + 10.981501 + ], + [ + 428.59018, + 555.8, + 2.9970093, + 10.981501 + ], + [ + 430.9932, + 555.8, + 2.25, + 10.981501 + ], + [ + 433.2882, + 555.8, + 4.5, + 10.981501 + ], + [ + 437.7882, + 555.8, + 3.9869995, + 10.981501 + ], + [ + 308.8, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 312.787, + 545.5, + 2.9970093, + 10.981501 + ], + [ + 315.784, + 545.5, + 6.9930115, + 10.981501 + ], + [ + 322.777, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 326.764, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 329.25702, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 331.75003, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 336.43906, + 545.5, + 6.9930115, + 10.981501 + ], + [ + 343.43207, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 347.41907, + 545.5, + 4.5, + 10.981501 + ], + [ + 351.91907, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 354.41208, + 545.5, + 6.9930115, + 10.981501 + ], + [ + 361.4051, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 363.8981, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 366.3911, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 368.88412, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 372.87112, + 545.5, + 6.9930115, + 10.981501 + ], + [ + 379.86414, + 545.5, + 3.501007, + 10.981501 + ], + [ + 383.36514, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 387.35214, + 545.5, + 4.5, + 10.981501 + ], + [ + 391.85214, + 545.5, + 6.9930115, + 10.981501 + ], + [ + 398.84515, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 401.33817, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 403.83118, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 406.3242, + 545.5, + 8.279999, + 10.981501 + ], + [ + 414.6132, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 417.1062, + 545.5, + 2.9970093, + 10.981501 + ], + [ + 420.1032, + 545.5, + 4.5, + 10.981501 + ], + [ + 424.6032, + 545.5, + 4.5, + 10.981501 + ], + [ + 429.1032, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 431.59622, + 545.5, + 2.4930115, + 10.981501 + ], + [ + 434.08923, + 545.5, + 4.5, + 10.981501 + ], + [ + 438.58923, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 442.48624, + 545.5, + 2.25, + 10.981501 + ], + [ + 444.78125, + 545.5, + 4.5, + 10.981501 + ], + [ + 449.28125, + 545.5, + 3.9869995, + 10.981501 + ], + [ + 308.8, + 535.1, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 535.1, + 2.9970093, + 10.981501 + ], + [ + 317.287, + 535.1, + 6.9930115, + 10.981501 + ], + [ + 324.28, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 328.267, + 535.1, + 2.4930115, + 10.981501 + ], + [ + 330.76, + 535.1, + 2.4930115, + 10.981501 + ], + [ + 335.44904, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 339.43604, + 535.1, + 4.5, + 10.981501 + ], + [ + 343.93604, + 535.1, + 4.5, + 10.981501 + ], + [ + 348.43604, + 535.1, + 2.9970093, + 10.981501 + ], + [ + 351.43304, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 355.42004, + 535.1, + 3.501007, + 10.981501 + ], + [ + 358.92105, + 535.1, + 3.501007, + 10.981501 + ], + [ + 362.42206, + 535.1, + 2.4930115, + 10.981501 + ], + [ + 367.21008, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 371.1071, + 535.1, + 4.5, + 10.981501 + ], + [ + 375.6071, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 379.5941, + 535.1, + 6.9930115, + 10.981501 + ], + [ + 386.5871, + 535.1, + 4.5, + 10.981501 + ], + [ + 391.0871, + 535.1, + 2.4930115, + 10.981501 + ], + [ + 393.5801, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 397.5671, + 535.1, + 8.279999, + 10.981501 + ], + [ + 405.8561, + 535.1, + 6.9930115, + 10.981501 + ], + [ + 412.84912, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 416.83612, + 535.1, + 2.4930115, + 10.981501 + ], + [ + 419.32913, + 535.1, + 2.4930115, + 10.981501 + ], + [ + 421.82214, + 535.1, + 2.25, + 10.981501 + ], + [ + 424.11716, + 535.1, + 3.9869995, + 10.981501 + ], + [ + 428.10416, + 535.1, + 4.5, + 10.981501 + ], + [ + 432.60416, + 535.1, + 6.9930115, + 10.981501 + ], + [ + 308.8, + 524.8, + 5.993988, + 10.981501 + ], + [ + 314.79398, + 524.8, + 4.5, + 10.981501 + ], + [ + 319.29398, + 524.8, + 4.5, + 10.981501 + ], + [ + 323.79398, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 326.287, + 524.8, + 3.9869995, + 10.981501 + ], + [ + 330.274, + 524.8, + 3.9869995, + 10.981501 + ], + [ + 334.261, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 336.754, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 341.44302, + 524.8, + 8.001007, + 10.981501 + ], + [ + 349.44403, + 524.8, + 3.9869995, + 10.981501 + ], + [ + 353.43103, + 524.8, + 4.5, + 10.981501 + ], + [ + 357.93103, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 360.42404, + 524.8, + 6.9930115, + 10.981501 + ], + [ + 367.41705, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 369.91006, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 372.40308, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 374.8961, + 524.8, + 3.9869995, + 10.981501 + ], + [ + 378.8831, + 524.8, + 6.9930115, + 10.981501 + ], + [ + 388.0721, + 524.8, + 5.003998, + 10.981501 + ], + [ + 393.0761, + 524.8, + 3.9869995, + 10.981501 + ], + [ + 397.0631, + 524.8, + 4.5, + 10.981501 + ], + [ + 401.5631, + 524.8, + 6.9930115, + 10.981501 + ], + [ + 408.55612, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 411.04913, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 413.54214, + 524.8, + 2.4930115, + 10.981501 + ], + [ + 308.8, + 514.4, + 5.48999, + 10.981501 + ], + [ + 313.597, + 514.4, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 514.4, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 514.4, + 3.9869995, + 10.981501 + ], + [ + 324.064, + 514.4, + 4.5, + 10.981501 + ], + [ + 328.564, + 514.4, + 4.5, + 10.981501 + ], + [ + 333.064, + 514.4, + 4.5, + 10.981501 + ], + [ + 337.564, + 514.4, + 4.5, + 10.981501 + ], + [ + 342.064, + 514.4, + 3.9869995, + 10.981501 + ], + [ + 348.346, + 514.4, + 4.5, + 10.981501 + ], + [ + 352.846, + 514.4, + 4.5, + 10.981501 + ], + [ + 357.346, + 514.4, + 6.9930115, + 10.981501 + ], + [ + 364.33902, + 514.4, + 4.5, + 10.981501 + ], + [ + 368.83902, + 514.4, + 3.9869995, + 10.981501 + ], + [ + 372.82602, + 514.4, + 2.9970093, + 10.981501 + ], + [ + 375.82303, + 514.4, + 2.4930115, + 10.981501 + ], + [ + 380.51205, + 514.4, + 5.066986, + 10.981501 + ], + [ + 385.60605, + 514.4, + 4.5, + 10.981501 + ], + [ + 390.10605, + 514.4, + 4.5, + 10.981501 + ], + [ + 394.60605, + 514.4, + 4.5, + 10.981501 + ], + [ + 399.10605, + 514.4, + 4.5, + 10.981501 + ], + [ + 403.60605, + 514.4, + 4.5, + 10.981501 + ], + [ + 408.10605, + 514.4, + 4.5, + 10.981501 + ], + [ + 412.60605, + 514.4, + 4.5, + 10.981501 + ], + [ + 417.10605, + 514.4, + 4.5, + 10.981501 + ], + [ + 421.60605, + 514.4, + 4.5, + 10.981501 + ], + [ + 426.10605, + 514.4, + 4.5, + 10.981501 + ], + [ + 430.60605, + 514.4, + 4.5, + 10.981501 + ], + [ + 308.8, + 504.1, + 5.48999, + 10.981501 + ], + [ + 313.597, + 504.1, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 504.1, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 504.1, + 3.9869995, + 10.981501 + ], + [ + 324.064, + 504.1, + 4.5, + 10.981501 + ], + [ + 328.564, + 504.1, + 4.5, + 10.981501 + ], + [ + 333.064, + 504.1, + 4.5, + 10.981501 + ], + [ + 337.564, + 504.1, + 4.5, + 10.981501 + ], + [ + 342.064, + 504.1, + 3.9869995, + 10.981501 + ], + [ + 348.346, + 504.1, + 6.497986, + 10.981501 + ], + [ + 354.844, + 504.1, + 4.5, + 10.981501 + ], + [ + 359.344, + 504.1, + 2.4930115, + 10.981501 + ], + [ + 364.03302, + 504.1, + 5.066986, + 10.981501 + ], + [ + 369.127, + 504.1, + 4.5, + 10.981501 + ], + [ + 373.627, + 504.1, + 4.5, + 10.981501 + ], + [ + 378.127, + 504.1, + 4.5, + 10.981501 + ], + [ + 384.82303, + 504.1, + 4.5, + 10.981501 + ], + [ + 389.32303, + 504.1, + 4.5, + 10.981501 + ], + [ + 393.82303, + 504.1, + 4.5, + 10.981501 + ], + [ + 398.32303, + 504.1, + 4.5, + 10.981501 + ], + [ + 405.11804, + 504.1, + 4.5, + 10.981501 + ], + [ + 409.61804, + 504.1, + 4.5, + 10.981501 + ], + [ + 414.11804, + 504.1, + 4.5, + 10.981501 + ], + [ + 418.61804, + 504.1, + 4.5, + 10.981501 + ], + [ + 308.8, + 493.7, + 5.003998, + 10.981501 + ], + [ + 313.804, + 493.7, + 3.9869995, + 10.981501 + ], + [ + 317.791, + 493.7, + 4.5, + 10.981501 + ], + [ + 324.487, + 493.7, + 4.5, + 10.981501 + ], + [ + 328.987, + 493.7, + 4.5, + 10.981501 + ], + [ + 333.487, + 493.7, + 6.9930115, + 10.981501 + ], + [ + 340.48, + 493.7, + 4.5, + 10.981501 + ], + [ + 344.98, + 493.7, + 3.9869995, + 10.981501 + ], + [ + 348.967, + 493.7, + 2.9970093, + 10.981501 + ], + [ + 351.96402, + 493.7, + 2.4930115, + 10.981501 + ], + [ + 356.75204, + 493.7, + 5.066986, + 10.981501 + ], + [ + 361.75604, + 493.7, + 4.5, + 10.981501 + ], + [ + 366.25604, + 493.7, + 4.5, + 10.981501 + ], + [ + 370.75604, + 493.7, + 4.5, + 10.981501 + ], + [ + 377.55106, + 493.7, + 4.5, + 10.981501 + ], + [ + 382.05106, + 493.7, + 4.5, + 10.981501 + ], + [ + 386.55106, + 493.7, + 4.5, + 10.981501 + ], + [ + 391.05106, + 493.7, + 4.5, + 10.981501 + ], + [ + 397.74707, + 493.7, + 4.5, + 10.981501 + ], + [ + 402.24707, + 493.7, + 4.5, + 10.981501 + ], + [ + 406.74707, + 493.7, + 4.5, + 10.981501 + ], + [ + 411.24707, + 493.7, + 4.5, + 10.981501 + ], + [ + 308.8, + 483.4, + 5.48999, + 10.981501 + ], + [ + 313.597, + 483.4, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 483.4, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 483.4, + 3.9869995, + 10.981501 + ], + [ + 324.064, + 483.4, + 4.5, + 10.981501 + ], + [ + 328.564, + 483.4, + 4.5, + 10.981501 + ], + [ + 333.064, + 483.4, + 4.5, + 10.981501 + ], + [ + 337.564, + 483.4, + 4.5, + 10.981501 + ], + [ + 342.064, + 483.4, + 3.9869995, + 10.981501 + ], + [ + 346.051, + 483.4, + 2.4930115, + 10.981501 + ], + [ + 350.83902, + 483.4, + 5.066986, + 10.981501 + ], + [ + 355.84302, + 483.4, + 4.5, + 10.981501 + ], + [ + 360.34302, + 483.4, + 4.5, + 10.981501 + ], + [ + 364.84302, + 483.4, + 4.5, + 10.981501 + ], + [ + 371.63803, + 483.4, + 4.5, + 10.981501 + ], + [ + 376.13803, + 483.4, + 4.5, + 10.981501 + ], + [ + 380.63803, + 483.4, + 4.5, + 10.981501 + ], + [ + 385.13803, + 483.4, + 4.5, + 10.981501 + ], + [ + 389.63803, + 483.4, + 4.5, + 10.981501 + ], + [ + 394.13803, + 483.4, + 4.5, + 10.981501 + ], + [ + 398.63803, + 483.4, + 4.5, + 10.981501 + ], + [ + 403.13803, + 483.4, + 4.5, + 10.981501 + ], + [ + 308.8, + 473.0, + 5.003998, + 10.981501 + ], + [ + 313.804, + 473.0, + 4.5, + 10.981501 + ], + [ + 318.304, + 473.0, + 4.5, + 10.981501 + ], + [ + 322.804, + 473.0, + 4.5, + 10.981501 + ], + [ + 327.304, + 473.0, + 3.9869995, + 10.981501 + ], + [ + 333.487, + 473.0, + 6.497986, + 10.981501 + ], + [ + 339.985, + 473.0, + 4.5, + 10.981501 + ], + [ + 344.485, + 473.0, + 2.25, + 10.981501 + ], + [ + 348.976, + 473.0, + 5.066986, + 10.981501 + ], + [ + 354.07, + 473.0, + 4.5, + 10.981501 + ], + [ + 358.57, + 473.0, + 4.5, + 10.981501 + ], + [ + 363.07, + 473.0, + 4.5, + 10.981501 + ], + [ + 369.86502, + 473.0, + 4.5, + 10.981501 + ], + [ + 374.36502, + 473.0, + 4.5, + 10.981501 + ], + [ + 378.86502, + 473.0, + 4.5, + 10.981501 + ], + [ + 383.36502, + 473.0, + 4.5, + 10.981501 + ], + [ + 390.06104, + 473.0, + 4.5, + 10.981501 + ], + [ + 394.56104, + 473.0, + 4.5, + 10.981501 + ], + [ + 399.06104, + 473.0, + 4.5, + 10.981501 + ], + [ + 403.56104, + 473.0, + 4.5, + 10.981501 + ], + [ + 308.8, + 462.7, + 5.993988, + 10.981501 + ], + [ + 314.79398, + 462.7, + 4.5, + 10.981501 + ], + [ + 319.29398, + 462.7, + 4.5, + 10.981501 + ], + [ + 323.79398, + 462.7, + 2.4930115, + 10.981501 + ], + [ + 326.287, + 462.7, + 3.9869995, + 10.981501 + ], + [ + 330.274, + 462.7, + 3.9869995, + 10.981501 + ], + [ + 334.261, + 462.7, + 2.4930115, + 10.981501 + ], + [ + 336.754, + 462.7, + 2.4930115, + 10.981501 + ], + [ + 341.44302, + 462.7, + 4.5, + 10.981501 + ], + [ + 345.94302, + 462.7, + 4.5, + 10.981501 + ], + [ + 350.44302, + 462.7, + 4.5, + 10.981501 + ], + [ + 357.23804, + 462.7, + 4.5, + 10.981501 + ], + [ + 361.73804, + 462.7, + 4.5, + 10.981501 + ], + [ + 366.23804, + 462.7, + 4.5, + 10.981501 + ], + [ + 370.73804, + 462.7, + 4.5, + 10.981501 + ], + [ + 377.43405, + 462.7, + 4.5, + 10.981501 + ], + [ + 381.93405, + 462.7, + 4.5, + 10.981501 + ], + [ + 386.43405, + 462.7, + 4.5, + 10.981501 + ], + [ + 390.93405, + 462.7, + 4.5, + 10.981501 + ], + [ + 308.8, + 452.3, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 452.3, + 4.5, + 10.981501 + ], + [ + 318.78998, + 452.3, + 2.9970093, + 10.981501 + ], + [ + 321.787, + 452.3, + 4.5, + 10.981501 + ], + [ + 326.287, + 452.3, + 4.5, + 10.981501 + ], + [ + 330.787, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 334.774, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 338.761, + 452.3, + 4.5, + 10.981501 + ], + [ + 345.457, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 349.444, + 452.3, + 4.5, + 10.981501 + ], + [ + 353.944, + 452.3, + 4.5, + 10.981501 + ], + [ + 358.444, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 360.937, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 364.924, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 368.911, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 371.40402, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 376.09305, + 452.3, + 5.48999, + 10.981501 + ], + [ + 381.58304, + 452.3, + 4.5, + 10.981501 + ], + [ + 386.08304, + 452.3, + 2.9970093, + 10.981501 + ], + [ + 389.08005, + 452.3, + 4.5, + 10.981501 + ], + [ + 393.58005, + 452.3, + 4.5, + 10.981501 + ], + [ + 398.08005, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 402.06705, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 406.05405, + 452.3, + 4.5, + 10.981501 + ], + [ + 412.84906, + 452.3, + 5.993988, + 10.981501 + ], + [ + 418.84305, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 422.83005, + 452.3, + 4.5, + 10.981501 + ], + [ + 427.33005, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 429.82306, + 452.3, + 2.9970093, + 10.981501 + ], + [ + 432.82007, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 436.80707, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 441.4961, + 452.3, + 2.9970093, + 10.981501 + ], + [ + 444.4931, + 452.3, + 4.5, + 10.981501 + ], + [ + 448.9931, + 452.3, + 3.501007, + 10.981501 + ], + [ + 452.4941, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 454.98712, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 457.48013, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 459.97314, + 452.3, + 4.5, + 10.981501 + ], + [ + 464.47314, + 452.3, + 2.4930115, + 10.981501 + ], + [ + 466.96616, + 452.3, + 3.9869995, + 10.981501 + ], + [ + 308.8, + 442.0, + 6.497986, + 10.981501 + ], + [ + 315.29797, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 317.791, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 320.284, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 324.271, + 442.0, + 2.9970093, + 10.981501 + ], + [ + 327.268, + 442.0, + 4.5, + 10.981501 + ], + [ + 331.768, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 335.755, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 338.24802, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 340.74103, + 442.0, + 4.5, + 10.981501 + ], + [ + 345.24103, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 351.42404, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 355.41104, + 442.0, + 4.5, + 10.981501 + ], + [ + 359.91104, + 442.0, + 4.5, + 10.981501 + ], + [ + 364.41104, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 366.90405, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 370.89105, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 374.87805, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 377.37106, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 382.0601, + 442.0, + 5.48999, + 10.981501 + ], + [ + 387.55008, + 442.0, + 6.9930115, + 10.981501 + ], + [ + 394.5431, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 397.0361, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 399.5291, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 402.02213, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 408.30414, + 442.0, + 5.48999, + 10.981501 + ], + [ + 413.79413, + 442.0, + 4.5, + 10.981501 + ], + [ + 418.29413, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 422.28113, + 442.0, + 4.5, + 10.981501 + ], + [ + 426.78113, + 442.0, + 4.5, + 10.981501 + ], + [ + 431.28113, + 442.0, + 3.9869995, + 10.981501 + ], + [ + 435.26813, + 442.0, + 2.9970093, + 10.981501 + ], + [ + 438.26514, + 442.0, + 2.4930115, + 10.981501 + ], + [ + 308.8, + 431.6, + 6.497986, + 10.981501 + ], + [ + 315.29797, + 431.6, + 2.4930115, + 10.981501 + ], + [ + 317.791, + 431.6, + 2.4930115, + 10.981501 + ], + [ + 320.284, + 431.6, + 3.9869995, + 10.981501 + ], + [ + 324.271, + 431.6, + 2.9970093, + 10.981501 + ], + [ + 327.268, + 431.6, + 4.5, + 10.981501 + ], + [ + 331.768, + 431.6, + 3.9869995, + 10.981501 + ], + [ + 335.755, + 431.6, + 2.4930115, + 10.981501 + ], + [ + 338.24802, + 431.6, + 2.4930115, + 10.981501 + ], + [ + 340.74103, + 431.6, + 4.5, + 10.981501 + ], + [ + 345.24103, + 431.6, + 3.9869995, + 10.981501 + ], + [ + 351.42404, + 431.6, + 3.9869995, + 10.981501 + ], + [ + 355.41104, + 431.6, + 4.5, + 10.981501 + ], + [ + 359.91104, + 431.6, + 4.5, + 10.981501 + ], + [ + 364.41104, + 431.6, + 2.4930115, + 10.981501 + ], + [ + 366.90405, + 431.6, + 3.9869995, + 10.981501 + ], + [ + 370.89105, + 431.6, + 3.9869995, + 10.981501 + ], + [ + 374.87805, + 431.6, + 2.4930115, + 10.981501 + ], + [ + 377.37106, + 431.6, + 2.4930115, + 10.981501 + ] + ] + }, + { + "id": 56, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51 + ], + "positions": [ + [ + 394.9, + 421.3, + 5.993988, + 10.981501 + ], + [ + 400.89398, + 421.3, + 4.5, + 10.981501 + ], + [ + 405.39398, + 421.3, + 4.5, + 10.981501 + ], + [ + 409.89398, + 421.3, + 3.9869995, + 10.981501 + ], + [ + 413.88098, + 421.3, + 2.9970093, + 10.981501 + ], + [ + 416.878, + 421.3, + 4.5, + 10.981501 + ], + [ + 421.378, + 421.3, + 4.5, + 10.981501 + ], + [ + 425.878, + 421.3, + 4.5, + 10.981501 + ], + [ + 430.378, + 421.3, + 3.9869995, + 10.981501 + ], + [ + 436.66, + 421.3, + 5.003998, + 10.981501 + ], + [ + 441.664, + 421.3, + 4.5, + 10.981501 + ], + [ + 446.164, + 421.3, + 3.501007, + 10.981501 + ], + [ + 449.665, + 421.3, + 2.4930115, + 10.981501 + ], + [ + 452.15802, + 421.3, + 3.9869995, + 10.981501 + ], + [ + 456.14502, + 421.3, + 6.9930115, + 10.981501 + ], + [ + 463.13803, + 421.3, + 3.501007, + 10.981501 + ], + [ + 393.6, + 410.9, + 5.48999, + 10.981501 + ], + [ + 398.496, + 410.9, + 4.5, + 10.981501 + ], + [ + 402.996, + 410.9, + 6.497986, + 10.981501 + ], + [ + 409.494, + 410.9, + 3.9869995, + 10.981501 + ], + [ + 413.481, + 410.9, + 2.9970093, + 10.981501 + ], + [ + 418.674, + 410.9, + 6.497986, + 10.981501 + ], + [ + 425.172, + 410.9, + 3.9869995, + 10.981501 + ], + [ + 429.159, + 410.9, + 2.9970093, + 10.981501 + ], + [ + 432.156, + 410.9, + 3.9869995, + 10.981501 + ], + [ + 436.143, + 410.9, + 4.5, + 10.981501 + ], + [ + 440.643, + 410.9, + 3.501007, + 10.981501 + ], + [ + 444.144, + 410.9, + 3.9869995, + 10.981501 + ], + [ + 450.42603, + 410.9, + 4.5, + 10.981501 + ], + [ + 454.92603, + 410.9, + 4.5, + 10.981501 + ], + [ + 459.42603, + 410.9, + 4.5, + 10.981501 + ], + [ + 463.92603, + 410.9, + 3.9869995, + 10.981501 + ], + [ + 387.1, + 400.6, + 6.497986, + 10.981501 + ], + [ + 393.598, + 400.6, + 4.5, + 10.981501 + ], + [ + 398.098, + 400.6, + 4.5, + 10.981501 + ], + [ + 402.598, + 400.6, + 4.5, + 10.981501 + ], + [ + 409.393, + 400.6, + 6.497986, + 10.981501 + ], + [ + 415.891, + 400.6, + 4.5, + 10.981501 + ], + [ + 420.391, + 400.6, + 4.5, + 10.981501 + ], + [ + 424.891, + 400.6, + 4.5, + 10.981501 + ], + [ + 429.292, + 400.6, + 2.25, + 10.981501 + ], + [ + 433.88202, + 400.6, + 5.993988, + 10.981501 + ], + [ + 439.876, + 400.6, + 5.48999, + 10.981501 + ], + [ + 447.47202, + 400.6, + 6.497986, + 10.981501 + ], + [ + 453.97, + 400.6, + 2.4930115, + 10.981501 + ], + [ + 456.463, + 400.6, + 3.501007, + 10.981501 + ], + [ + 459.96402, + 400.6, + 2.4930115, + 10.981501 + ], + [ + 462.45703, + 400.6, + 2.9970093, + 10.981501 + ], + [ + 465.45404, + 400.6, + 2.4930115, + 10.981501 + ], + [ + 467.94705, + 400.6, + 3.9869995, + 10.981501 + ], + [ + 471.93405, + 400.6, + 2.4930115, + 10.981501 + ] + ] + }, + { + "id": 57, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.07181, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 106.86911, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 110.77481, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 118.65671, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 126.45401, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 135.05501, + 692.1, + 10.180206, + 13.867801 + ], + [ + 145.23521, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 153.03252, + 692.1, + 8.600998, + 13.867801 + ], + [ + 161.71811, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 169.51541, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 177.31271, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 185.9983, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 193.79561, + 692.1, + 8.600998, + 13.867801 + ], + [ + 202.3966, + 692.1, + 8.600998, + 13.867801 + ], + [ + 210.9976, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 215.6929, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 223.5748, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 231.3721, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 239.9731, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 243.8788, + 692.1, + 8.600998, + 13.867801 + ], + [ + 252.4798, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 257.1751, + 692.1, + 8.601013, + 13.867801 + ], + [ + 265.77612, + 692.1, + 5.484894, + 13.867801 + ], + [ + 271.26102, + 692.1, + 12.534912, + 13.867801 + ], + [ + 283.85233, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 291.64963, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 296.34494, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 300.25064, + 692.1, + 8.601013, + 13.867801 + ], + [ + 308.85165, + 692.1, + 8.601013, + 13.867801 + ], + [ + 321.44296, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 326.13828, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 333.93558, + 692.1, + 8.601013, + 13.867801 + ], + [ + 342.5366, + 692.1, + 8.601013, + 13.867801 + ], + [ + 351.1376, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 355.83292, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 363.7148, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 367.6205, + 692.1, + 8.601013, + 13.867801 + ], + [ + 376.22153, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 388.00912, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 394.9, + 692.1, + 10.180206, + 13.867801 + ], + [ + 405.0802, + 692.1, + 8.601013, + 13.867801 + ], + [ + 413.6812, + 692.1, + 8.601013, + 13.867801 + ], + [ + 422.28223, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 426.18793, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 430.09363, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 437.97552, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 445.77283, + 692.1, + 8.601013, + 13.867801 + ], + [ + 454.37384, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 459.2, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 469.78912, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 477.67102, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 489.37402, + 692.1, + 10.180206, + 13.867801 + ], + [ + 499.55423, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 507.35153, + 692.1, + 7.83963, + 13.867801 + ], + [ + 515.23346, + 692.1, + 8.601013, + 13.867801 + ], + [ + 523.8345, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 527.7402, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 531.6459, + 692.1, + 8.601013, + 13.867801 + ], + [ + 540.3315, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 56.8, + 675.9, + 8.601002, + 13.867801 + ], + [ + 65.401, + 675.9, + 5.4849014, + 13.867801 + ], + [ + 74.7916, + 675.9, + 8.600998, + 13.867801 + ], + [ + 82.3915, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 90.188805, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 97.98611, + 675.9, + 4.6952972, + 13.867801 + ], + [ + 102.681404, + 675.9, + 4.6952972, + 13.867801 + ] + ] + }, + { + "id": 58, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 86, + 87, + 88, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 94, + 95, + 96, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104 + ], + "positions": [ + [ + 56.8, + 657.6, + 6.1000023, + 11.535 + ], + [ + 62.9, + 657.6, + 4.4300003, + 11.535 + ], + [ + 67.3, + 657.6, + 5.0, + 11.535 + ], + [ + 72.3, + 657.6, + 5.0, + 11.535 + ], + [ + 77.3, + 657.6, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 657.6, + 2.7699966, + 11.535 + ], + [ + 86.99, + 657.6, + 6.659996, + 11.535 + ], + [ + 93.67999, + 657.6, + 5.0, + 11.535 + ], + [ + 98.67999, + 657.6, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 657.6, + 5.0, + 11.535 + ], + [ + 110.66999, + 657.6, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 657.6, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 657.6, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 657.6, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 657.6, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 657.6, + 5.0, + 11.535 + ], + [ + 136.14998, + 657.6, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 657.6, + 5.0, + 11.535 + ], + [ + 145.03998, + 657.6, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 657.6, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 657.6, + 5.0, + 11.535 + ], + [ + 159.72998, + 657.6, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 657.6, + 5.0, + 11.535 + ], + [ + 167.51999, + 657.6, + 5.0, + 11.535 + ], + [ + 172.51999, + 657.6, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 657.6, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 657.6, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 657.6, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 657.6, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 657.6, + 3.8899994, + 11.535 + ], + [ + 56.8, + 646.0, + 6.1000023, + 11.535 + ], + [ + 62.9, + 646.0, + 4.4300003, + 11.535 + ], + [ + 67.3, + 646.0, + 5.0, + 11.535 + ], + [ + 72.3, + 646.0, + 5.0, + 11.535 + ], + [ + 77.3, + 646.0, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 646.0, + 2.7699966, + 11.535 + ], + [ + 86.99, + 646.0, + 6.659996, + 11.535 + ], + [ + 93.67999, + 646.0, + 5.0, + 11.535 + ], + [ + 98.67999, + 646.0, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 646.0, + 5.0, + 11.535 + ], + [ + 110.66999, + 646.0, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 646.0, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 646.0, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 646.0, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 646.0, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 646.0, + 5.0, + 11.535 + ], + [ + 136.14998, + 646.0, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 646.0, + 5.0, + 11.535 + ], + [ + 145.03998, + 646.0, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 646.0, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 646.0, + 5.0, + 11.535 + ], + [ + 159.72998, + 646.0, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 646.0, + 5.0, + 11.535 + ], + [ + 167.51999, + 646.0, + 5.0, + 11.535 + ], + [ + 172.51999, + 646.0, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 646.0, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 646.0, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 646.0, + 6.6600037, + 11.535 + ], + [ + 195.29, + 646.0, + 5.0, + 11.535 + ], + [ + 56.8, + 634.5, + 5.5600014, + 11.535 + ], + [ + 62.3, + 634.5, + 6.1000023, + 11.535 + ], + [ + 68.5, + 634.5, + 5.0, + 11.535 + ], + [ + 73.5, + 634.5, + 5.0, + 11.535 + ], + [ + 78.5, + 634.5, + 2.7699966, + 11.535 + ], + [ + 81.28999, + 634.5, + 2.7699966, + 11.535 + ], + [ + 84.07999, + 634.5, + 4.4300003, + 11.535 + ], + [ + 88.47999, + 634.5, + 5.0, + 11.535 + ], + [ + 93.47999, + 634.5, + 5.0, + 11.535 + ], + [ + 98.47999, + 634.5, + 2.7699966, + 11.535 + ], + [ + 103.76998, + 634.5, + 3.3300018, + 11.535 + ], + [ + 107.069984, + 634.5, + 5.0, + 11.535 + ], + [ + 112.069984, + 634.5, + 2.7699966, + 11.535 + ], + [ + 114.85998, + 634.5, + 5.0, + 11.535 + ], + [ + 119.85998, + 634.5, + 3.8899994, + 11.535 + ], + [ + 123.74998, + 634.5, + 7.2199936, + 11.535 + ], + [ + 130.94997, + 634.5, + 5.0, + 11.535 + ], + [ + 135.94997, + 634.5, + 2.7700043, + 11.535 + ], + [ + 138.73997, + 634.5, + 2.7700043, + 11.535 + ], + [ + 141.52998, + 634.5, + 5.0, + 11.535 + ], + [ + 146.52998, + 634.5, + 5.0, + 11.535 + ], + [ + 154.02998, + 634.5, + 6.6600037, + 11.535 + ], + [ + 160.62999, + 634.5, + 5.0, + 11.535 + ], + [ + 165.62999, + 634.5, + 3.8899994, + 11.535 + ], + [ + 172.01999, + 634.5, + 2.7700043, + 11.535 + ], + [ + 174.81, + 634.5, + 5.0, + 11.535 + ], + [ + 179.81, + 634.5, + 5.0, + 11.535 + ], + [ + 184.81, + 634.5, + 5.0, + 11.535 + ], + [ + 189.81, + 634.5, + 5.0, + 11.535 + ], + [ + 197.31, + 634.5, + 3.8899994, + 11.535 + ], + [ + 201.2, + 634.5, + 5.0, + 11.535 + ], + [ + 206.2, + 634.5, + 5.0, + 11.535 + ], + [ + 211.2, + 634.5, + 5.0, + 11.535 + ], + [ + 216.2, + 634.5, + 2.7700043, + 11.535 + ], + [ + 218.99, + 634.5, + 5.0, + 11.535 + ], + [ + 226.49, + 634.5, + 5.0, + 11.535 + ], + [ + 231.49, + 634.5, + 4.4299927, + 11.535 + ], + [ + 238.39, + 634.5, + 5.0, + 11.535 + ], + [ + 243.39, + 634.5, + 5.0, + 11.535 + ], + [ + 248.39, + 634.5, + 5.0, + 11.535 + ], + [ + 253.39, + 634.5, + 4.430008, + 11.535 + ], + [ + 257.79, + 634.5, + 5.0, + 11.535 + ], + [ + 262.79, + 634.5, + 3.8900146, + 11.535 + ], + [ + 266.68002, + 634.5, + 3.8900146, + 11.535 + ], + [ + 270.57004, + 634.5, + 5.5599976, + 11.535 + ] + ] + }, + { + "id": 59, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "positions": [ + [ + 56.8, + 621.1, + 8.663998, + 12.642 + ], + [ + 65.404, + 621.1, + 6.671997, + 12.642 + ], + [ + 72.088, + 621.1, + 6.671997, + 12.642 + ], + [ + 78.771996, + 621.1, + 3.3239975, + 12.642 + ], + [ + 82.07199, + 621.1, + 3.3239975, + 12.642 + ], + [ + 85.37199, + 621.1, + 5.316002, + 12.642 + ], + [ + 90.67599, + 621.1, + 6.0, + 12.642 + ], + [ + 96.67599, + 621.1, + 6.671997, + 12.642 + ], + [ + 103.359985, + 621.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 60, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 87, + 88, + 89, + 90, + 91, + 92, + 92, + 93, + 94, + 95, + 96, + 97, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 103, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 109, + 110, + 111, + 112, + 113, + 114, + 114, + 115, + 116, + 117, + 118, + 118, + 119, + 120, + 121, + 121, + 122, + 123, + 124, + 124, + 125, + 126, + 127, + 128, + 129, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 167, + 168, + 169, + 170, + 171, + 171, + 172, + 173, + 173, + 174, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 181, + 182, + 183, + 184, + 185, + 186, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 203, + 204, + 205, + 206, + 207, + 207, + 208, + 209, + 210, + 210, + 211, + 212, + 213, + 213, + 214, + 215, + 216, + 217, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 230, + 231, + 232, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 240, + 241, + 242, + 243, + 244, + 245, + 245, + 246, + 247, + 248, + 249, + 249, + 250, + 251, + 252, + 253, + 253, + 254, + 255, + 256, + 257, + 257, + 258, + 259, + 260 + ], + "positions": [ + [ + 56.8, + 593.5, + 8.663998, + 12.642 + ], + [ + 65.488, + 593.5, + 5.316002, + 12.642 + ], + [ + 70.792, + 593.5, + 9.3239975, + 12.642 + ], + [ + 80.091995, + 593.5, + 5.316002, + 12.642 + ], + [ + 85.395996, + 593.5, + 3.3239975, + 12.642 + ], + [ + 164.8, + 593.5, + 6.671997, + 12.642 + ], + [ + 171.484, + 593.5, + 6.0, + 12.642 + ], + [ + 177.484, + 593.5, + 6.0, + 12.642 + ], + [ + 183.484, + 593.5, + 3.3240051, + 12.642 + ], + [ + 186.784, + 593.5, + 5.3159943, + 12.642 + ], + [ + 192.088, + 593.5, + 6.0, + 12.642 + ], + [ + 198.088, + 593.5, + 3.3240051, + 12.642 + ], + [ + 204.388, + 593.5, + 7.9920044, + 12.642 + ], + [ + 212.38, + 593.5, + 6.0, + 12.642 + ], + [ + 218.38, + 593.5, + 3.9960022, + 12.642 + ], + [ + 222.376, + 593.5, + 6.0, + 12.642 + ], + [ + 228.376, + 593.5, + 6.0, + 12.642 + ], + [ + 234.376, + 593.5, + 3.9960022, + 12.642 + ], + [ + 238.37201, + 593.5, + 5.3159943, + 12.642 + ], + [ + 243.76001, + 593.5, + 3.3240051, + 12.642 + ], + [ + 247.06001, + 593.5, + 3.3240051, + 12.642 + ], + [ + 250.36002, + 593.5, + 6.0, + 12.642 + ], + [ + 256.36002, + 593.5, + 6.0, + 12.642 + ], + [ + 56.8, + 579.7, + 7.9920006, + 12.642 + ], + [ + 64.792, + 579.7, + 6.0, + 12.642 + ], + [ + 70.792, + 579.7, + 6.0, + 12.642 + ], + [ + 76.792, + 579.7, + 3.3239975, + 12.642 + ], + [ + 80.091995, + 579.7, + 5.316002, + 12.642 + ], + [ + 85.395996, + 579.7, + 5.316002, + 12.642 + ], + [ + 90.7, + 579.7, + 3.3239975, + 12.642 + ], + [ + 97.08399, + 579.7, + 6.0, + 12.642 + ], + [ + 103.08399, + 579.7, + 6.0, + 12.642 + ], + [ + 109.08399, + 579.7, + 3.3239975, + 12.642 + ], + [ + 112.38399, + 579.7, + 6.0, + 12.642 + ], + [ + 118.38399, + 579.7, + 3.3239975, + 12.642 + ], + [ + 121.68398, + 579.7, + 3.3239975, + 12.642 + ], + [ + 164.8, + 579.7, + 7.9920044, + 12.642 + ], + [ + 172.792, + 579.7, + 3.3240051, + 12.642 + ], + [ + 176.09201, + 579.7, + 6.0, + 12.642 + ], + [ + 182.09201, + 579.7, + 6.0, + 12.642 + ], + [ + 188.09201, + 579.7, + 3.3240051, + 12.642 + ], + [ + 191.39201, + 579.7, + 5.3159943, + 12.642 + ], + [ + 196.69601, + 579.7, + 6.0, + 12.642 + ], + [ + 205.78001, + 579.7, + 6.671997, + 12.642 + ], + [ + 212.464, + 579.7, + 5.3159943, + 12.642 + ], + [ + 217.768, + 579.7, + 6.0, + 12.642 + ], + [ + 223.768, + 579.7, + 3.3240051, + 12.642 + ], + [ + 227.06801, + 579.7, + 3.3240051, + 12.642 + ], + [ + 56.8, + 565.9, + 8.663998, + 12.642 + ], + [ + 65.404, + 565.9, + 6.0, + 12.642 + ], + [ + 71.404, + 565.9, + 6.0, + 12.642 + ], + [ + 77.404, + 565.9, + 3.9960022, + 12.642 + ], + [ + 81.4, + 565.9, + 5.316002, + 12.642 + ], + [ + 86.704, + 565.9, + 4.6679993, + 12.642 + ], + [ + 91.396, + 565.9, + 4.6679993, + 12.642 + ], + [ + 96.088005, + 565.9, + 3.3239975, + 12.642 + ], + [ + 164.8, + 565.9, + 6.0, + 12.642 + ], + [ + 170.8, + 565.9, + 6.0, + 12.642 + ], + [ + 176.8, + 565.9, + 6.0, + 12.642 + ], + [ + 182.8, + 565.9, + 3.9960022, + 12.642 + ], + [ + 186.796, + 565.9, + 6.0, + 12.642 + ], + [ + 192.796, + 565.9, + 6.0, + 12.642 + ], + [ + 201.796, + 565.9, + 8.664001, + 12.642 + ], + [ + 210.40001, + 565.9, + 6.0, + 12.642 + ], + [ + 216.40001, + 565.9, + 5.3159943, + 12.642 + ], + [ + 221.78801, + 565.9, + 9.324005, + 12.642 + ], + [ + 231.08801, + 565.9, + 3.9960022, + 12.642 + ], + [ + 235.08401, + 565.9, + 6.0, + 12.642 + ], + [ + 241.08401, + 565.9, + 6.0, + 12.642 + ], + [ + 247.08401, + 565.9, + 6.0, + 12.642 + ], + [ + 253.08401, + 565.9, + 6.0, + 12.642 + ], + [ + 164.8, + 552.1, + 8.664001, + 12.642 + ], + [ + 172.20401, + 552.1, + 6.0, + 12.642 + ], + [ + 178.20401, + 552.1, + 6.0, + 12.642 + ], + [ + 184.20401, + 552.1, + 6.0, + 12.642 + ], + [ + 190.20401, + 552.1, + 4.6679993, + 12.642 + ], + [ + 194.89601, + 552.1, + 5.3159943, + 12.642 + ], + [ + 200.20001, + 552.1, + 6.0, + 12.642 + ], + [ + 206.20001, + 552.1, + 3.9960022, + 12.642 + ], + [ + 210.19601, + 552.1, + 6.0, + 12.642 + ], + [ + 216.19601, + 552.1, + 6.0, + 12.642 + ], + [ + 164.8, + 538.3, + 6.671997, + 12.642 + ], + [ + 171.484, + 538.3, + 5.3159943, + 12.642 + ], + [ + 176.788, + 538.3, + 6.0, + 12.642 + ], + [ + 182.788, + 538.3, + 6.0, + 12.642 + ], + [ + 188.788, + 538.3, + 3.3240051, + 12.642 + ], + [ + 192.088, + 538.3, + 3.0, + 12.642 + ], + [ + 198.088, + 538.3, + 6.671997, + 12.642 + ], + [ + 204.77199, + 538.3, + 6.0, + 12.642 + ], + [ + 210.77199, + 538.3, + 6.0, + 12.642 + ], + [ + 216.77199, + 538.3, + 3.3240051, + 12.642 + ], + [ + 220.07199, + 538.3, + 6.0, + 12.642 + ], + [ + 229.07199, + 538.3, + 8.664001, + 12.642 + ], + [ + 237.76, + 538.3, + 6.0, + 12.642 + ], + [ + 243.76, + 538.3, + 3.9960022, + 12.642 + ], + [ + 247.756, + 538.3, + 5.3159943, + 12.642 + ], + [ + 253.06, + 538.3, + 5.3160095, + 12.642 + ], + [ + 56.8, + 524.5, + 6.672001, + 12.642 + ], + [ + 63.484, + 524.5, + 6.0, + 12.642 + ], + [ + 69.484, + 524.5, + 6.0, + 12.642 + ], + [ + 75.484, + 524.5, + 6.0, + 12.642 + ], + [ + 81.484, + 524.5, + 5.316002, + 12.642 + ], + [ + 86.788, + 524.5, + 3.3239975, + 12.642 + ], + [ + 164.8, + 524.5, + 6.7559967, + 12.642 + ], + [ + 171.496, + 524.5, + 6.0, + 12.642 + ], + [ + 177.496, + 524.5, + 6.0, + 12.642 + ], + [ + 186.496, + 524.5, + 6.0, + 12.642 + ], + [ + 192.496, + 524.5, + 6.0, + 12.642 + ], + [ + 198.496, + 524.5, + 6.0, + 12.642 + ], + [ + 207.496, + 524.5, + 6.0, + 12.642 + ], + [ + 213.496, + 524.5, + 6.0, + 12.642 + ], + [ + 219.496, + 524.5, + 6.0, + 12.642 + ], + [ + 225.496, + 524.5, + 6.0, + 12.642 + ], + [ + 231.496, + 524.5, + 6.0, + 12.642 + ], + [ + 56.8, + 510.7, + 6.672001, + 12.642 + ], + [ + 63.484, + 510.7, + 5.316002, + 12.642 + ], + [ + 68.788, + 510.7, + 6.0, + 12.642 + ], + [ + 74.788, + 510.7, + 3.3239975, + 12.642 + ], + [ + 164.8, + 510.7, + 6.7559967, + 12.642 + ], + [ + 171.496, + 510.7, + 6.0, + 12.642 + ], + [ + 177.496, + 510.7, + 6.0, + 12.642 + ], + [ + 186.496, + 510.7, + 6.0, + 12.642 + ], + [ + 192.496, + 510.7, + 6.0, + 12.642 + ], + [ + 198.496, + 510.7, + 6.0, + 12.642 + ], + [ + 207.496, + 510.7, + 6.0, + 12.642 + ], + [ + 213.496, + 510.7, + 6.0, + 12.642 + ], + [ + 219.496, + 510.7, + 6.0, + 12.642 + ], + [ + 225.496, + 510.7, + 6.0, + 12.642 + ], + [ + 231.496, + 510.7, + 6.0, + 12.642 + ], + [ + 56.8, + 496.9, + 7.3200035, + 12.642 + ], + [ + 64.096, + 496.9, + 3.9960022, + 12.642 + ], + [ + 68.092, + 496.9, + 9.3239975, + 12.642 + ], + [ + 77.392, + 496.9, + 5.316002, + 12.642 + ], + [ + 82.78, + 496.9, + 3.3239975, + 12.642 + ], + [ + 86.079994, + 496.9, + 3.3239975, + 12.642 + ], + [ + 89.37999, + 496.9, + 3.3239975, + 12.642 + ], + [ + 164.8, + 496.9, + 3.9960022, + 12.642 + ], + [ + 168.796, + 496.9, + 6.0, + 12.642 + ], + [ + 174.796, + 496.9, + 6.0, + 12.642 + ], + [ + 180.796, + 496.9, + 6.0, + 12.642 + ], + [ + 186.796, + 496.9, + 3.9960022, + 12.642 + ], + [ + 190.792, + 496.9, + 3.3240051, + 12.642 + ], + [ + 194.09201, + 496.9, + 6.0, + 12.642 + ], + [ + 200.09201, + 496.9, + 6.0, + 12.642 + ], + [ + 206.09201, + 496.9, + 6.0, + 12.642 + ], + [ + 212.09201, + 496.9, + 4.6679993, + 12.642 + ], + [ + 216.78401, + 496.9, + 3.3240051, + 12.642 + ], + [ + 220.08401, + 496.9, + 3.9960022, + 12.642 + ], + [ + 224.08002, + 496.9, + 6.0, + 12.642 + ], + [ + 230.08002, + 496.9, + 11.039993, + 12.642 + ], + [ + 241.16801, + 496.9, + 6.0, + 12.642 + ], + [ + 247.16801, + 496.9, + 6.0, + 12.642 + ], + [ + 253.16801, + 496.9, + 3.995987, + 12.642 + ], + [ + 257.164, + 496.9, + 5.3160095, + 12.642 + ], + [ + 262.46802, + 496.9, + 5.3160095, + 12.642 + ], + [ + 267.77203, + 496.9, + 3.0, + 12.642 + ], + [ + 270.77203, + 496.9, + 5.3160095, + 12.642 + ], + [ + 276.07605, + 496.9, + 6.0, + 12.642 + ], + [ + 282.07605, + 496.9, + 9.324005, + 12.642 + ], + [ + 56.8, + 483.1, + 7.9920006, + 12.642 + ], + [ + 64.792, + 483.1, + 6.0, + 12.642 + ], + [ + 70.792, + 483.1, + 6.0, + 12.642 + ], + [ + 76.792, + 483.1, + 3.3239975, + 12.642 + ], + [ + 80.091995, + 483.1, + 5.316002, + 12.642 + ], + [ + 85.395996, + 483.1, + 5.316002, + 12.642 + ], + [ + 90.7, + 483.1, + 3.3239975, + 12.642 + ], + [ + 94.08399, + 483.1, + 3.3239975, + 12.642 + ], + [ + 164.8, + 483.1, + 7.3200073, + 12.642 + ], + [ + 172.09601, + 483.1, + 6.0, + 12.642 + ], + [ + 178.09601, + 483.1, + 3.3240051, + 12.642 + ], + [ + 181.39601, + 483.1, + 4.6679993, + 12.642 + ], + [ + 189.08801, + 483.1, + 3.3240051, + 12.642 + ], + [ + 192.38802, + 483.1, + 4.6679993, + 12.642 + ], + [ + 200.08002, + 483.1, + 5.3159943, + 12.642 + ], + [ + 208.38402, + 483.1, + 4.6679993, + 12.642 + ], + [ + 213.07602, + 483.1, + 6.0, + 12.642 + ], + [ + 219.07602, + 483.1, + 5.3159943, + 12.642 + ], + [ + 224.38002, + 483.1, + 5.3159943, + 12.642 + ], + [ + 229.68402, + 483.1, + 3.3240051, + 12.642 + ], + [ + 233.06802, + 483.1, + 5.3159943, + 12.642 + ], + [ + 238.37202, + 483.1, + 3.3240051, + 12.642 + ], + [ + 244.67203, + 483.1, + 5.3159943, + 12.642 + ], + [ + 249.97603, + 483.1, + 5.3159943, + 12.642 + ], + [ + 255.28003, + 483.1, + 4.6679993, + 12.642 + ], + [ + 259.97202, + 483.1, + 5.3160095, + 12.642 + ], + [ + 265.27603, + 483.1, + 3.0, + 12.642 + ], + [ + 271.36005, + 483.1, + 5.3160095, + 12.642 + ], + [ + 276.66406, + 483.1, + 6.0, + 12.642 + ], + [ + 282.66406, + 483.1, + 5.3160095, + 12.642 + ], + [ + 287.96808, + 483.1, + 3.9960022, + 12.642 + ], + [ + 291.96408, + 483.1, + 6.0, + 12.642 + ], + [ + 297.96408, + 483.1, + 3.3240051, + 12.642 + ], + [ + 301.2641, + 483.1, + 6.0, + 12.642 + ], + [ + 307.3481, + 483.1, + 3.3240051, + 12.642 + ], + [ + 310.64813, + 483.1, + 6.0, + 12.642 + ], + [ + 316.64813, + 483.1, + 6.0, + 12.642 + ], + [ + 325.64813, + 483.1, + 6.0, + 12.642 + ], + [ + 331.64813, + 483.1, + 5.3160095, + 12.642 + ], + [ + 336.95215, + 483.1, + 3.3240051, + 12.642 + ], + [ + 340.25217, + 483.1, + 8.664001, + 12.642 + ], + [ + 348.94016, + 483.1, + 5.3160095, + 12.642 + ], + [ + 354.24417, + 483.1, + 5.3160095, + 12.642 + ], + [ + 359.5482, + 483.1, + 6.0, + 12.642 + ], + [ + 368.6322, + 483.1, + 3.3240051, + 12.642 + ], + [ + 371.93222, + 483.1, + 6.0, + 12.642 + ], + [ + 377.93222, + 483.1, + 3.3240051, + 12.642 + ], + [ + 381.23224, + 483.1, + 4.6679993, + 12.642 + ], + [ + 388.92422, + 483.1, + 5.3160095, + 12.642 + ], + [ + 394.22824, + 483.1, + 6.0, + 12.642 + ], + [ + 400.22824, + 483.1, + 6.0, + 12.642 + ], + [ + 409.22824, + 483.1, + 3.3240051, + 12.642 + ], + [ + 412.52826, + 483.1, + 6.0, + 12.642 + ], + [ + 418.52826, + 483.1, + 5.3160095, + 12.642 + ], + [ + 426.91626, + 483.1, + 6.0, + 12.642 + ], + [ + 432.91626, + 483.1, + 5.3160095, + 12.642 + ], + [ + 438.22028, + 483.1, + 6.0, + 12.642 + ], + [ + 444.22028, + 483.1, + 3.3240051, + 12.642 + ], + [ + 164.8, + 469.3, + 6.0, + 12.642 + ], + [ + 170.8, + 469.3, + 5.3159943, + 12.642 + ], + [ + 176.104, + 469.3, + 6.0, + 12.642 + ], + [ + 182.104, + 469.3, + 8.664001, + 12.642 + ], + [ + 190.792, + 469.3, + 6.0, + 12.642 + ], + [ + 196.792, + 469.3, + 3.9960022, + 12.642 + ], + [ + 200.78801, + 469.3, + 6.0, + 12.642 + ], + [ + 209.78801, + 469.3, + 4.6679993, + 12.642 + ], + [ + 214.384, + 469.3, + 6.0, + 12.642 + ], + [ + 220.384, + 469.3, + 6.0, + 12.642 + ], + [ + 226.384, + 469.3, + 6.0, + 12.642 + ], + [ + 232.384, + 469.3, + 3.3240051, + 12.642 + ], + [ + 235.684, + 469.3, + 6.0, + 12.642 + ], + [ + 244.768, + 469.3, + 6.0, + 12.642 + ], + [ + 250.768, + 469.3, + 5.3160095, + 12.642 + ], + [ + 259.07202, + 469.3, + 3.9960022, + 12.642 + ], + [ + 263.06802, + 469.3, + 5.3160095, + 12.642 + ], + [ + 268.37204, + 469.3, + 6.0, + 12.642 + ], + [ + 274.37204, + 469.3, + 5.3160095, + 12.642 + ], + [ + 279.67606, + 469.3, + 5.3160095, + 12.642 + ], + [ + 285.06406, + 469.3, + 3.3240051, + 12.642 + ], + [ + 288.36407, + 469.3, + 5.3160095, + 12.642 + ], + [ + 293.6681, + 469.3, + 6.0, + 12.642 + ], + [ + 56.8, + 455.5, + 7.3200035, + 12.642 + ], + [ + 63.304, + 455.5, + 5.316002, + 12.642 + ], + [ + 68.608, + 455.5, + 3.3239975, + 12.642 + ], + [ + 71.908, + 455.5, + 3.0, + 12.642 + ], + [ + 74.908, + 455.5, + 3.3239975, + 12.642 + ], + [ + 164.8, + 455.5, + 6.7559967, + 12.642 + ], + [ + 171.496, + 455.5, + 6.0, + 12.642 + ], + [ + 177.496, + 455.5, + 6.0, + 12.642 + ], + [ + 183.496, + 455.5, + 6.0, + 12.642 + ], + [ + 192.496, + 455.5, + 6.0, + 12.642 + ], + [ + 198.496, + 455.5, + 6.0, + 12.642 + ], + [ + 204.496, + 455.5, + 6.0, + 12.642 + ], + [ + 210.496, + 455.5, + 6.0, + 12.642 + ], + [ + 219.496, + 455.5, + 6.0, + 12.642 + ], + [ + 225.496, + 455.5, + 6.0, + 12.642 + ], + [ + 231.496, + 455.5, + 6.0, + 12.642 + ], + [ + 237.496, + 455.5, + 6.0, + 12.642 + ], + [ + 246.496, + 455.5, + 6.0, + 12.642 + ], + [ + 252.496, + 455.5, + 6.0, + 12.642 + ], + [ + 258.496, + 455.5, + 6.0, + 12.642 + ] + ] + }, + { + "id": 61, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 15 + ], + "positions": [ + [ + 59.6, + 438.9, + 8.664001, + 12.642 + ], + [ + 68.288, + 438.9, + 5.316002, + 12.642 + ], + [ + 73.592, + 438.9, + 4.6679993, + 12.642 + ], + [ + 78.284004, + 438.9, + 5.316002, + 12.642 + ], + [ + 83.588005, + 438.9, + 3.9960022, + 12.642 + ], + [ + 87.58401, + 438.9, + 3.3239975, + 12.642 + ], + [ + 90.884, + 438.9, + 6.0, + 12.642 + ], + [ + 96.884, + 438.9, + 3.3239975, + 12.642 + ], + [ + 100.268, + 438.9, + 3.3239975, + 12.642 + ], + [ + 103.56799, + 438.9, + 6.0, + 12.642 + ], + [ + 109.56799, + 438.9, + 6.0, + 12.642 + ], + [ + 118.36399, + 438.9, + 7.3199997, + 12.642 + ], + [ + 124.86799, + 438.9, + 5.316002, + 12.642 + ], + [ + 130.172, + 438.9, + 6.0, + 12.642 + ], + [ + 136.172, + 438.9, + 3.3240051, + 12.642 + ] + ] + }, + { + "id": 62, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "positions": [ + [ + 308.8, + 438.9, + 8.664001, + 12.642 + ], + [ + 317.404, + 438.9, + 6.671997, + 12.642 + ], + [ + 324.08798, + 438.9, + 6.671997, + 12.642 + ], + [ + 330.77197, + 438.9, + 3.3240051, + 12.642 + ], + [ + 334.072, + 438.9, + 3.3240051, + 12.642 + ], + [ + 337.372, + 438.9, + 5.3160095, + 12.642 + ], + [ + 342.67603, + 438.9, + 6.0, + 12.642 + ], + [ + 348.67603, + 438.9, + 6.671997, + 12.642 + ], + [ + 355.36002, + 438.9, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 63, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 33, + 34, + 35, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 44, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 85, + 86, + 87, + 88, + 89, + 90, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 108, + 109, + 110, + 111, + 112, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 129, + 130, + 131, + 132, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 141, + 142, + 143, + 144, + 145, + 145, + 146, + 147, + 147, + 148, + 149, + 150, + 151, + 152, + 152, + 153, + 154, + 155, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 176, + 177, + 178, + 179, + 180, + 180, + 181, + 182, + 182, + 183, + 184, + 185, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193 + ], + "positions": [ + [ + 59.6, + 422.3, + 6.498001, + 10.981501 + ], + [ + 66.098, + 422.3, + 4.5, + 10.981501 + ], + [ + 70.598, + 422.3, + 2.4930038, + 10.981501 + ], + [ + 73.091, + 422.3, + 3.5009995, + 10.981501 + ], + [ + 78.887, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 82.874, + 422.3, + 4.5, + 10.981501 + ], + [ + 87.374, + 422.3, + 2.4930038, + 10.981501 + ], + [ + 89.867004, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 96.05, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 98.543, + 422.3, + 2.9970016, + 10.981501 + ], + [ + 101.54, + 422.3, + 4.5, + 10.981501 + ], + [ + 106.04, + 422.3, + 2.9970016, + 10.981501 + ], + [ + 109.037, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 115.319, + 422.3, + 4.5, + 10.981501 + ], + [ + 119.819, + 422.3, + 4.5, + 10.981501 + ], + [ + 124.319, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 126.812, + 422.3, + 4.5, + 10.981501 + ], + [ + 131.312, + 422.3, + 2.996994, + 10.981501 + ], + [ + 136.50499, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 138.99799, + 422.3, + 4.5, + 10.981501 + ], + [ + 145.79298, + 422.3, + 2.996994, + 10.981501 + ], + [ + 148.69098, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 152.67798, + 422.3, + 4.5, + 10.981501 + ], + [ + 157.17798, + 422.3, + 2.996994, + 10.981501 + ], + [ + 160.17497, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 164.16197, + 422.3, + 4.5, + 10.981501 + ], + [ + 168.66197, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 172.64897, + 422.3, + 4.5, + 10.981501 + ], + [ + 177.14897, + 422.3, + 4.5, + 10.981501 + ], + [ + 181.64897, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 185.63597, + 422.3, + 2.996994, + 10.981501 + ], + [ + 188.63297, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 191.12596, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 195.91396, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 198.40695, + 422.3, + 4.5, + 10.981501 + ], + [ + 205.10295, + 422.3, + 4.5, + 10.981501 + ], + [ + 209.60295, + 422.3, + 4.5, + 10.981501 + ], + [ + 214.10295, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 216.59595, + 422.3, + 4.5, + 10.981501 + ], + [ + 221.09595, + 422.3, + 4.5, + 10.981501 + ], + [ + 225.59595, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 228.08894, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 232.07594, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 234.56894, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 240.85094, + 422.3, + 4.5, + 10.981501 + ], + [ + 245.25194, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 249.23894, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 251.73193, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 254.22493, + 422.3, + 2.4929962, + 10.981501 + ], + [ + 259.01294, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 262.99994, + 422.3, + 3.501007, + 10.981501 + ], + [ + 266.50095, + 422.3, + 3.501007, + 10.981501 + ], + [ + 270.00195, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 276.18497, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 280.17197, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 282.66498, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 285.158, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 287.651, + 422.3, + 4.5, + 10.981501 + ], + [ + 292.151, + 422.3, + 6.9930115, + 10.981501 + ], + [ + 59.6, + 412.0, + 5.9940033, + 10.981501 + ], + [ + 65.594, + 412.0, + 4.5, + 10.981501 + ], + [ + 70.094, + 412.0, + 4.5, + 10.981501 + ], + [ + 74.594, + 412.0, + 2.4930038, + 10.981501 + ], + [ + 77.087006, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 81.074005, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 85.061005, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 89.849, + 412.0, + 5.003998, + 10.981501 + ], + [ + 94.853, + 412.0, + 4.5, + 10.981501 + ], + [ + 99.353, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 101.84599, + 412.0, + 4.5, + 10.981501 + ], + [ + 106.34599, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 111.03499, + 412.0, + 4.5, + 10.981501 + ], + [ + 115.53499, + 412.0, + 4.5, + 10.981501 + ], + [ + 120.03499, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 122.527985, + 412.0, + 4.5, + 10.981501 + ], + [ + 127.027985, + 412.0, + 2.996994, + 10.981501 + ], + [ + 130.02498, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 136.30698, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 140.29398, + 412.0, + 4.5, + 10.981501 + ], + [ + 146.98997, + 412.0, + 2.996994, + 10.981501 + ], + [ + 149.98697, + 412.0, + 4.5, + 10.981501 + ], + [ + 154.48697, + 412.0, + 4.5, + 10.981501 + ], + [ + 158.98697, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 161.47997, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 165.46696, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 170.15596, + 412.0, + 4.5, + 10.981501 + ], + [ + 174.65596, + 412.0, + 4.5, + 10.981501 + ], + [ + 179.15596, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 181.64896, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 184.14195, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 190.42395, + 412.0, + 4.5, + 10.981501 + ], + [ + 194.92395, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 198.91095, + 412.0, + 2.996994, + 10.981501 + ], + [ + 201.90794, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 204.40094, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 208.38794, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 210.88094, + 412.0, + 4.5, + 10.981501 + ], + [ + 215.38094, + 412.0, + 2.996994, + 10.981501 + ], + [ + 217.78394, + 412.0, + 2.25, + 10.981501 + ], + [ + 222.37393, + 412.0, + 5.4900055, + 10.981501 + ], + [ + 227.86394, + 412.0, + 4.5, + 10.981501 + ], + [ + 232.36394, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 236.35094, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 240.33794, + 412.0, + 4.5, + 10.981501 + ], + [ + 244.83794, + 412.0, + 2.4929962, + 10.981501 + ], + [ + 247.24094, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 251.22794, + 412.0, + 4.5, + 10.981501 + ], + [ + 255.72794, + 412.0, + 2.9970093, + 10.981501 + ], + [ + 261.01996, + 412.0, + 3.501007, + 10.981501 + ], + [ + 264.52097, + 412.0, + 2.4930115, + 10.981501 + ], + [ + 267.01398, + 412.0, + 4.5, + 10.981501 + ], + [ + 271.51398, + 412.0, + 2.4930115, + 10.981501 + ], + [ + 59.6, + 401.6, + 4.5, + 10.981501 + ], + [ + 64.1, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 68.087, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 72.074, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 76.061, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 80.048, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 84.034996, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 88.021996, + 401.6, + 2.4930038, + 10.981501 + ], + [ + 92.711, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 96.698, + 401.6, + 4.5, + 10.981501 + ], + [ + 101.198, + 401.6, + 4.5, + 10.981501 + ], + [ + 105.698, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 108.190994, + 401.6, + 4.5, + 10.981501 + ], + [ + 112.690994, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 116.67799, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 119.17099, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 123.15799, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 127.945984, + 401.6, + 4.5, + 10.981501 + ], + [ + 132.44598, + 401.6, + 4.5, + 10.981501 + ], + [ + 136.94598, + 401.6, + 4.5, + 10.981501 + ], + [ + 143.64198, + 401.6, + 4.5, + 10.981501 + ], + [ + 148.14198, + 401.6, + 2.996994, + 10.981501 + ], + [ + 151.13898, + 401.6, + 4.5, + 10.981501 + ], + [ + 155.63898, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 158.13197, + 401.6, + 4.5, + 10.981501 + ], + [ + 162.63197, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 166.61897, + 401.6, + 4.5, + 10.981501 + ], + [ + 171.11897, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 173.52197, + 401.6, + 2.25, + 10.981501 + ], + [ + 178.11197, + 401.6, + 3.501007, + 10.981501 + ], + [ + 181.61298, + 401.6, + 4.5, + 10.981501 + ], + [ + 186.11298, + 401.6, + 4.5, + 10.981501 + ], + [ + 190.61298, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 195.30197, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 197.79497, + 401.6, + 4.5, + 10.981501 + ], + [ + 204.58997, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 208.57697, + 401.6, + 4.5, + 10.981501 + ], + [ + 213.07697, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 215.56996, + 401.6, + 4.5, + 10.981501 + ], + [ + 220.06996, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 226.25296, + 401.6, + 4.5, + 10.981501 + ], + [ + 230.75296, + 401.6, + 4.5, + 10.981501 + ], + [ + 235.25296, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 240.04095, + 401.6, + 4.5, + 10.981501 + ], + [ + 244.54095, + 401.6, + 2.996994, + 10.981501 + ], + [ + 247.33995, + 401.6, + 2.996994, + 10.981501 + ], + [ + 250.33694, + 401.6, + 2.4929962, + 10.981501 + ], + [ + 252.82994, + 401.6, + 3.9870148, + 10.981501 + ], + [ + 256.81696, + 401.6, + 2.4930115, + 10.981501 + ], + [ + 259.30997, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 265.49298, + 401.6, + 4.5, + 10.981501 + ], + [ + 269.99298, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 273.97998, + 401.6, + 3.501007, + 10.981501 + ], + [ + 277.481, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 281.468, + 401.6, + 2.9970093, + 10.981501 + ], + [ + 284.465, + 401.6, + 4.5, + 10.981501 + ], + [ + 288.965, + 401.6, + 4.5, + 10.981501 + ], + [ + 293.465, + 401.6, + 2.4930115, + 10.981501 + ], + [ + 59.6, + 391.3, + 6.993004, + 10.981501 + ], + [ + 66.593, + 391.3, + 4.5, + 10.981501 + ], + [ + 71.093, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 73.586, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 76.078995, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 78.57199, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 83.359985, + 391.3, + 3.9869995, + 10.981501 + ], + [ + 87.346985, + 391.3, + 4.5, + 10.981501 + ], + [ + 91.846985, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 94.33998, + 391.3, + 6.992996, + 10.981501 + ], + [ + 103.52898, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 106.02197, + 391.3, + 4.5, + 10.981501 + ], + [ + 112.81697, + 391.3, + 3.9869995, + 10.981501 + ], + [ + 116.80397, + 391.3, + 3.5009995, + 10.981501 + ], + [ + 120.30497, + 391.3, + 2.4930038, + 10.981501 + ], + [ + 124.99397, + 391.3, + 2.4929962, + 10.981501 + ], + [ + 127.48697, + 391.3, + 3.9869995, + 10.981501 + ], + [ + 131.47397, + 391.3, + 4.5, + 10.981501 + ], + [ + 135.97397, + 391.3, + 4.5, + 10.981501 + ], + [ + 140.47397, + 391.3, + 2.996994, + 10.981501 + ], + [ + 143.47096, + 391.3, + 4.5, + 10.981501 + ], + [ + 147.97096, + 391.3, + 6.992996, + 10.981501 + ], + [ + 154.96396, + 391.3, + 2.25, + 10.981501 + ] + ] + }, + { + "id": 64, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 42, + 43, + 44, + 45, + 45, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 91, + 92, + 93, + 94, + 95, + 95, + 96, + 97, + 98, + 98, + 99, + 100, + 101, + 102, + 102, + 103, + 104, + 105, + 106, + 107, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 293, + 294, + 295, + 296, + 296, + 297, + 298, + 299, + 300, + 300, + 301, + 302, + 303, + 304, + 304, + 305, + 306, + 307, + 308, + 308, + 309, + 310, + 311, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 318, + 319, + 320, + 321, + 322, + 322, + 323, + 324, + 325, + 326, + 326, + 327, + 328, + 329, + 330, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 340, + 341, + 342, + 343, + 344, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 352, + 353, + 354, + 355, + 356, + 357, + 357, + 358, + 359, + 360, + 360, + 361, + 362, + 363, + 364, + 364, + 365, + 366, + 367, + 368, + 368, + 369, + 370, + 371, + 372, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 380, + 381, + 382, + 383, + 383, + 384, + 385, + 386, + 387, + 387, + 388, + 389, + 390, + 391, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483 + ], + "positions": [ + [ + 308.8, + 422.3, + 5.993988, + 10.981501 + ], + [ + 314.79398, + 422.3, + 4.5, + 10.981501 + ], + [ + 319.29398, + 422.3, + 4.5, + 10.981501 + ], + [ + 323.79398, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 326.287, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 330.274, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 334.261, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 338.95, + 422.3, + 4.5, + 10.981501 + ], + [ + 343.45, + 422.3, + 4.5, + 10.981501 + ], + [ + 347.95, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 350.44302, + 422.3, + 4.5, + 10.981501 + ], + [ + 354.94302, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 357.43604, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 362.22406, + 422.3, + 5.993988, + 10.981501 + ], + [ + 368.21805, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 372.20505, + 422.3, + 4.5, + 10.981501 + ], + [ + 376.70505, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 379.19806, + 422.3, + 2.9970093, + 10.981501 + ], + [ + 382.09607, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 386.08307, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 390.8711, + 422.3, + 5.993988, + 10.981501 + ], + [ + 396.86508, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 400.85208, + 422.3, + 3.501007, + 10.981501 + ], + [ + 404.3531, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 408.3401, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 412.3271, + 422.3, + 2.9970093, + 10.981501 + ], + [ + 415.3241, + 422.3, + 3.9869995, + 10.981501 + ], + [ + 419.3111, + 422.3, + 4.5, + 10.981501 + ], + [ + 426.0071, + 422.3, + 2.9970093, + 10.981501 + ], + [ + 429.00412, + 422.3, + 4.5, + 10.981501 + ], + [ + 433.50412, + 422.3, + 4.5, + 10.981501 + ], + [ + 438.00412, + 422.3, + 4.5, + 10.981501 + ], + [ + 442.50412, + 422.3, + 3.501007, + 10.981501 + ], + [ + 446.00513, + 422.3, + 2.4930115, + 10.981501 + ], + [ + 448.49814, + 422.3, + 2.9970093, + 10.981501 + ], + [ + 451.49515, + 422.3, + 4.5, + 10.981501 + ], + [ + 308.8, + 412.0, + 5.003998, + 10.981501 + ], + [ + 313.804, + 412.0, + 4.5, + 10.981501 + ], + [ + 318.304, + 412.0, + 4.5, + 10.981501 + ], + [ + 322.804, + 412.0, + 4.5, + 10.981501 + ], + [ + 327.304, + 412.0, + 3.9869995, + 10.981501 + ], + [ + 331.291, + 412.0, + 2.4930115, + 10.981501 + ], + [ + 335.98, + 412.0, + 5.066986, + 10.981501 + ], + [ + 341.074, + 412.0, + 4.5, + 10.981501 + ], + [ + 345.574, + 412.0, + 4.5, + 10.981501 + ], + [ + 352.36902, + 412.0, + 4.5, + 10.981501 + ], + [ + 356.77002, + 412.0, + 4.5, + 10.981501 + ], + [ + 360.97302, + 412.0, + 4.5, + 10.981501 + ], + [ + 365.47302, + 412.0, + 4.5, + 10.981501 + ], + [ + 372.26804, + 412.0, + 4.5, + 10.981501 + ], + [ + 376.76804, + 412.0, + 4.5, + 10.981501 + ], + [ + 381.16904, + 412.0, + 4.5, + 10.981501 + ], + [ + 385.37204, + 412.0, + 4.5, + 10.981501 + ], + [ + 392.16705, + 412.0, + 4.5, + 10.981501 + ], + [ + 396.66705, + 412.0, + 4.5, + 10.981501 + ], + [ + 401.16705, + 412.0, + 4.5, + 10.981501 + ], + [ + 308.8, + 401.6, + 5.003998, + 10.981501 + ], + [ + 313.804, + 401.6, + 3.9869995, + 10.981501 + ], + [ + 317.791, + 401.6, + 4.5, + 10.981501 + ], + [ + 322.291, + 401.6, + 2.4930115, + 10.981501 + ], + [ + 326.98, + 401.6, + 5.066986, + 10.981501 + ], + [ + 332.074, + 401.6, + 4.5, + 10.981501 + ], + [ + 336.574, + 401.6, + 4.5, + 10.981501 + ], + [ + 343.36902, + 401.6, + 4.5, + 10.981501 + ], + [ + 347.77002, + 401.6, + 4.5, + 10.981501 + ], + [ + 351.97302, + 401.6, + 4.5, + 10.981501 + ], + [ + 356.47302, + 401.6, + 4.5, + 10.981501 + ], + [ + 363.26804, + 401.6, + 4.5, + 10.981501 + ], + [ + 367.76804, + 401.6, + 4.5, + 10.981501 + ], + [ + 372.16904, + 401.6, + 4.5, + 10.981501 + ], + [ + 376.37204, + 401.6, + 4.5, + 10.981501 + ], + [ + 383.16705, + 401.6, + 4.5, + 10.981501 + ], + [ + 387.66705, + 401.6, + 4.5, + 10.981501 + ], + [ + 392.16705, + 401.6, + 4.5, + 10.981501 + ], + [ + 308.8, + 391.3, + 5.48999, + 10.981501 + ], + [ + 313.597, + 391.3, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 391.3, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 391.3, + 2.25, + 10.981501 + ], + [ + 322.372, + 391.3, + 2.4930115, + 10.981501 + ], + [ + 327.06104, + 391.3, + 5.066986, + 10.981501 + ], + [ + 332.15503, + 391.3, + 4.5, + 10.981501 + ], + [ + 336.65503, + 391.3, + 4.5, + 10.981501 + ], + [ + 343.45004, + 391.3, + 4.5, + 10.981501 + ], + [ + 347.95004, + 391.3, + 4.5, + 10.981501 + ], + [ + 352.45004, + 391.3, + 4.5, + 10.981501 + ], + [ + 356.95004, + 391.3, + 4.5, + 10.981501 + ], + [ + 361.45004, + 391.3, + 4.5, + 10.981501 + ], + [ + 365.95004, + 391.3, + 4.5, + 10.981501 + ], + [ + 370.45004, + 391.3, + 4.5, + 10.981501 + ], + [ + 374.95004, + 391.3, + 4.5, + 10.981501 + ], + [ + 379.45004, + 391.3, + 4.5, + 10.981501 + ], + [ + 308.8, + 380.9, + 5.48999, + 10.981501 + ], + [ + 313.597, + 380.9, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 380.9, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 380.9, + 2.4930115, + 10.981501 + ], + [ + 324.86502, + 380.9, + 5.066986, + 10.981501 + ], + [ + 329.959, + 380.9, + 4.5, + 10.981501 + ], + [ + 334.459, + 380.9, + 4.5, + 10.981501 + ], + [ + 341.15503, + 380.9, + 4.5, + 10.981501 + ], + [ + 345.65503, + 380.9, + 4.5, + 10.981501 + ], + [ + 350.15503, + 380.9, + 4.5, + 10.981501 + ], + [ + 354.65503, + 380.9, + 4.5, + 10.981501 + ], + [ + 361.45004, + 380.9, + 4.5, + 10.981501 + ], + [ + 365.95004, + 380.9, + 4.5, + 10.981501 + ], + [ + 370.45004, + 380.9, + 4.5, + 10.981501 + ], + [ + 374.95004, + 380.9, + 4.5, + 10.981501 + ], + [ + 379.45004, + 380.9, + 4.5, + 10.981501 + ], + [ + 308.8, + 370.6, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 370.6, + 2.9970093, + 10.981501 + ], + [ + 317.287, + 370.6, + 6.9930115, + 10.981501 + ], + [ + 324.28, + 370.6, + 3.9869995, + 10.981501 + ], + [ + 328.267, + 370.6, + 2.4930115, + 10.981501 + ], + [ + 330.76, + 370.6, + 2.4930115, + 10.981501 + ], + [ + 333.25302, + 370.6, + 2.4930115, + 10.981501 + ], + [ + 337.94205, + 370.6, + 5.003998, + 10.981501 + ], + [ + 342.94604, + 370.6, + 3.9869995, + 10.981501 + ], + [ + 346.93304, + 370.6, + 2.9970093, + 10.981501 + ], + [ + 349.93005, + 370.6, + 2.4930115, + 10.981501 + ], + [ + 352.42307, + 370.6, + 4.5, + 10.981501 + ], + [ + 356.92307, + 370.6, + 4.5, + 10.981501 + ], + [ + 361.42307, + 370.6, + 4.5, + 10.981501 + ], + [ + 365.92307, + 370.6, + 6.497986, + 10.981501 + ], + [ + 372.42105, + 370.6, + 6.9930115, + 10.981501 + ], + [ + 379.41406, + 370.6, + 4.5, + 10.981501 + ], + [ + 383.91406, + 370.6, + 4.5, + 10.981501 + ], + [ + 388.41406, + 370.6, + 2.4930115, + 10.981501 + ], + [ + 390.90707, + 370.6, + 2.4930115, + 10.981501 + ], + [ + 393.4001, + 370.6, + 8.279999, + 10.981501 + ], + [ + 401.6891, + 370.6, + 3.9869995, + 10.981501 + ], + [ + 405.6761, + 370.6, + 4.5, + 10.981501 + ], + [ + 410.1761, + 370.6, + 2.25, + 10.981501 + ], + [ + 412.4711, + 370.6, + 4.5, + 10.981501 + ], + [ + 416.9711, + 370.6, + 4.5, + 10.981501 + ], + [ + 308.8, + 360.2, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 360.2, + 6.9930115, + 10.981501 + ], + [ + 321.283, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 325.27, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 327.763, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 330.256, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 334.94504, + 360.2, + 6.9930115, + 10.981501 + ], + [ + 341.93805, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 345.92505, + 360.2, + 4.5, + 10.981501 + ], + [ + 350.42505, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 352.91806, + 360.2, + 6.9930115, + 10.981501 + ], + [ + 359.91107, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 362.40408, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 364.8971, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 367.3901, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 371.3771, + 360.2, + 6.9930115, + 10.981501 + ], + [ + 378.37012, + 360.2, + 3.501007, + 10.981501 + ], + [ + 381.87112, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 385.85812, + 360.2, + 4.5, + 10.981501 + ], + [ + 390.35812, + 360.2, + 6.9930115, + 10.981501 + ], + [ + 397.35114, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 399.84415, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 402.33716, + 360.2, + 2.4930115, + 10.981501 + ], + [ + 404.83017, + 360.2, + 8.279999, + 10.981501 + ], + [ + 413.11917, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 417.10617, + 360.2, + 2.9970093, + 10.981501 + ], + [ + 420.10318, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 424.09018, + 360.2, + 4.5, + 10.981501 + ], + [ + 428.59018, + 360.2, + 2.9970093, + 10.981501 + ], + [ + 430.9932, + 360.2, + 2.25, + 10.981501 + ], + [ + 433.2882, + 360.2, + 4.5, + 10.981501 + ], + [ + 437.7882, + 360.2, + 3.9869995, + 10.981501 + ], + [ + 308.8, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 312.787, + 349.9, + 2.9970093, + 10.981501 + ], + [ + 315.784, + 349.9, + 6.9930115, + 10.981501 + ], + [ + 322.777, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 326.764, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 329.25702, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 331.75003, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 336.43906, + 349.9, + 6.9930115, + 10.981501 + ], + [ + 343.43207, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 347.41907, + 349.9, + 4.5, + 10.981501 + ], + [ + 351.91907, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 354.41208, + 349.9, + 6.9930115, + 10.981501 + ], + [ + 361.4051, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 363.8981, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 366.3911, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 368.88412, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 372.87112, + 349.9, + 6.9930115, + 10.981501 + ], + [ + 379.86414, + 349.9, + 3.501007, + 10.981501 + ], + [ + 383.36514, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 387.35214, + 349.9, + 4.5, + 10.981501 + ], + [ + 391.85214, + 349.9, + 6.9930115, + 10.981501 + ], + [ + 398.84515, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 401.33817, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 403.83118, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 406.3242, + 349.9, + 8.279999, + 10.981501 + ], + [ + 414.6132, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 417.1062, + 349.9, + 2.9970093, + 10.981501 + ], + [ + 420.1032, + 349.9, + 4.5, + 10.981501 + ], + [ + 424.6032, + 349.9, + 4.5, + 10.981501 + ], + [ + 429.1032, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 431.59622, + 349.9, + 2.4930115, + 10.981501 + ], + [ + 434.08923, + 349.9, + 4.5, + 10.981501 + ], + [ + 438.58923, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 442.48624, + 349.9, + 2.25, + 10.981501 + ], + [ + 444.78125, + 349.9, + 4.5, + 10.981501 + ], + [ + 449.28125, + 349.9, + 3.9869995, + 10.981501 + ], + [ + 308.8, + 339.5, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 339.5, + 2.9970093, + 10.981501 + ], + [ + 317.287, + 339.5, + 6.9930115, + 10.981501 + ], + [ + 324.28, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 328.267, + 339.5, + 2.4930115, + 10.981501 + ], + [ + 330.76, + 339.5, + 2.4930115, + 10.981501 + ], + [ + 335.44904, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 339.43604, + 339.5, + 4.5, + 10.981501 + ], + [ + 343.93604, + 339.5, + 4.5, + 10.981501 + ], + [ + 348.43604, + 339.5, + 2.9970093, + 10.981501 + ], + [ + 351.43304, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 355.42004, + 339.5, + 3.501007, + 10.981501 + ], + [ + 358.92105, + 339.5, + 3.501007, + 10.981501 + ], + [ + 362.42206, + 339.5, + 2.4930115, + 10.981501 + ], + [ + 367.21008, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 371.1071, + 339.5, + 4.5, + 10.981501 + ], + [ + 375.6071, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 379.5941, + 339.5, + 6.9930115, + 10.981501 + ], + [ + 386.5871, + 339.5, + 4.5, + 10.981501 + ], + [ + 391.0871, + 339.5, + 2.4930115, + 10.981501 + ], + [ + 393.5801, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 397.5671, + 339.5, + 8.279999, + 10.981501 + ], + [ + 405.8561, + 339.5, + 6.9930115, + 10.981501 + ], + [ + 412.84912, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 416.83612, + 339.5, + 2.4930115, + 10.981501 + ], + [ + 419.32913, + 339.5, + 2.4930115, + 10.981501 + ], + [ + 421.82214, + 339.5, + 2.25, + 10.981501 + ], + [ + 424.11716, + 339.5, + 3.9869995, + 10.981501 + ], + [ + 428.10416, + 339.5, + 4.5, + 10.981501 + ], + [ + 432.60416, + 339.5, + 6.9930115, + 10.981501 + ], + [ + 308.8, + 329.2, + 5.993988, + 10.981501 + ], + [ + 314.79398, + 329.2, + 4.5, + 10.981501 + ], + [ + 319.29398, + 329.2, + 4.5, + 10.981501 + ], + [ + 323.79398, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 326.287, + 329.2, + 3.9869995, + 10.981501 + ], + [ + 330.274, + 329.2, + 3.9869995, + 10.981501 + ], + [ + 334.261, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 336.754, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 341.44302, + 329.2, + 8.001007, + 10.981501 + ], + [ + 349.44403, + 329.2, + 3.9869995, + 10.981501 + ], + [ + 353.43103, + 329.2, + 4.5, + 10.981501 + ], + [ + 357.93103, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 360.42404, + 329.2, + 6.9930115, + 10.981501 + ], + [ + 367.41705, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 369.91006, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 372.40308, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 374.8961, + 329.2, + 3.9869995, + 10.981501 + ], + [ + 378.8831, + 329.2, + 6.9930115, + 10.981501 + ], + [ + 388.0721, + 329.2, + 5.003998, + 10.981501 + ], + [ + 393.0761, + 329.2, + 3.9869995, + 10.981501 + ], + [ + 397.0631, + 329.2, + 4.5, + 10.981501 + ], + [ + 401.5631, + 329.2, + 6.9930115, + 10.981501 + ], + [ + 408.55612, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 411.04913, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 413.54214, + 329.2, + 2.4930115, + 10.981501 + ], + [ + 308.8, + 318.8, + 5.48999, + 10.981501 + ], + [ + 313.597, + 318.8, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 318.8, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 318.8, + 3.9869995, + 10.981501 + ], + [ + 324.064, + 318.8, + 4.5, + 10.981501 + ], + [ + 328.564, + 318.8, + 4.5, + 10.981501 + ], + [ + 333.064, + 318.8, + 4.5, + 10.981501 + ], + [ + 337.564, + 318.8, + 4.5, + 10.981501 + ], + [ + 342.064, + 318.8, + 3.9869995, + 10.981501 + ], + [ + 348.346, + 318.8, + 4.5, + 10.981501 + ], + [ + 352.846, + 318.8, + 4.5, + 10.981501 + ], + [ + 357.346, + 318.8, + 6.9930115, + 10.981501 + ], + [ + 364.33902, + 318.8, + 4.5, + 10.981501 + ], + [ + 368.83902, + 318.8, + 3.9869995, + 10.981501 + ], + [ + 372.82602, + 318.8, + 2.9970093, + 10.981501 + ], + [ + 375.82303, + 318.8, + 2.4930115, + 10.981501 + ], + [ + 380.51205, + 318.8, + 5.066986, + 10.981501 + ], + [ + 385.60605, + 318.8, + 4.5, + 10.981501 + ], + [ + 390.10605, + 318.8, + 4.5, + 10.981501 + ], + [ + 394.60605, + 318.8, + 4.5, + 10.981501 + ], + [ + 399.10605, + 318.8, + 4.5, + 10.981501 + ], + [ + 403.60605, + 318.8, + 4.5, + 10.981501 + ], + [ + 408.10605, + 318.8, + 4.5, + 10.981501 + ], + [ + 412.60605, + 318.8, + 4.5, + 10.981501 + ], + [ + 417.10605, + 318.8, + 4.5, + 10.981501 + ], + [ + 421.60605, + 318.8, + 4.5, + 10.981501 + ], + [ + 426.10605, + 318.8, + 4.5, + 10.981501 + ], + [ + 430.60605, + 318.8, + 4.5, + 10.981501 + ], + [ + 308.8, + 308.5, + 5.48999, + 10.981501 + ], + [ + 313.597, + 308.5, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 308.5, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 308.5, + 3.9869995, + 10.981501 + ], + [ + 324.064, + 308.5, + 4.5, + 10.981501 + ], + [ + 328.564, + 308.5, + 4.5, + 10.981501 + ], + [ + 333.064, + 308.5, + 4.5, + 10.981501 + ], + [ + 337.564, + 308.5, + 4.5, + 10.981501 + ], + [ + 342.064, + 308.5, + 3.9869995, + 10.981501 + ], + [ + 348.346, + 308.5, + 6.497986, + 10.981501 + ], + [ + 354.844, + 308.5, + 4.5, + 10.981501 + ], + [ + 359.344, + 308.5, + 2.4930115, + 10.981501 + ], + [ + 364.03302, + 308.5, + 5.066986, + 10.981501 + ], + [ + 369.127, + 308.5, + 4.5, + 10.981501 + ], + [ + 373.627, + 308.5, + 4.5, + 10.981501 + ], + [ + 378.127, + 308.5, + 4.5, + 10.981501 + ], + [ + 384.82303, + 308.5, + 4.5, + 10.981501 + ], + [ + 389.32303, + 308.5, + 4.5, + 10.981501 + ], + [ + 393.82303, + 308.5, + 4.5, + 10.981501 + ], + [ + 398.32303, + 308.5, + 4.5, + 10.981501 + ], + [ + 405.11804, + 308.5, + 4.5, + 10.981501 + ], + [ + 409.61804, + 308.5, + 4.5, + 10.981501 + ], + [ + 414.11804, + 308.5, + 4.5, + 10.981501 + ], + [ + 418.61804, + 308.5, + 4.5, + 10.981501 + ], + [ + 308.8, + 298.1, + 5.003998, + 10.981501 + ], + [ + 313.804, + 298.1, + 3.9869995, + 10.981501 + ], + [ + 317.791, + 298.1, + 4.5, + 10.981501 + ], + [ + 324.487, + 298.1, + 4.5, + 10.981501 + ], + [ + 328.987, + 298.1, + 4.5, + 10.981501 + ], + [ + 333.487, + 298.1, + 6.9930115, + 10.981501 + ], + [ + 340.48, + 298.1, + 4.5, + 10.981501 + ], + [ + 344.98, + 298.1, + 3.9869995, + 10.981501 + ], + [ + 348.967, + 298.1, + 2.9970093, + 10.981501 + ], + [ + 351.96402, + 298.1, + 2.4930115, + 10.981501 + ], + [ + 356.75204, + 298.1, + 5.066986, + 10.981501 + ], + [ + 361.75604, + 298.1, + 4.5, + 10.981501 + ], + [ + 366.25604, + 298.1, + 4.5, + 10.981501 + ], + [ + 370.75604, + 298.1, + 4.5, + 10.981501 + ], + [ + 377.55106, + 298.1, + 4.5, + 10.981501 + ], + [ + 382.05106, + 298.1, + 4.5, + 10.981501 + ], + [ + 386.55106, + 298.1, + 4.5, + 10.981501 + ], + [ + 391.05106, + 298.1, + 4.5, + 10.981501 + ], + [ + 397.74707, + 298.1, + 4.5, + 10.981501 + ], + [ + 402.24707, + 298.1, + 4.5, + 10.981501 + ], + [ + 406.74707, + 298.1, + 4.5, + 10.981501 + ], + [ + 411.24707, + 298.1, + 4.5, + 10.981501 + ], + [ + 308.8, + 287.8, + 5.48999, + 10.981501 + ], + [ + 313.597, + 287.8, + 3.9869995, + 10.981501 + ], + [ + 317.58398, + 287.8, + 2.4930115, + 10.981501 + ], + [ + 320.077, + 287.8, + 3.9869995, + 10.981501 + ], + [ + 324.064, + 287.8, + 4.5, + 10.981501 + ], + [ + 328.564, + 287.8, + 4.5, + 10.981501 + ], + [ + 333.064, + 287.8, + 4.5, + 10.981501 + ], + [ + 337.564, + 287.8, + 4.5, + 10.981501 + ], + [ + 342.064, + 287.8, + 3.9869995, + 10.981501 + ], + [ + 346.051, + 287.8, + 2.4930115, + 10.981501 + ], + [ + 350.83902, + 287.8, + 5.066986, + 10.981501 + ], + [ + 355.84302, + 287.8, + 4.5, + 10.981501 + ], + [ + 360.34302, + 287.8, + 4.5, + 10.981501 + ], + [ + 364.84302, + 287.8, + 4.5, + 10.981501 + ], + [ + 371.63803, + 287.8, + 4.5, + 10.981501 + ], + [ + 376.13803, + 287.8, + 4.5, + 10.981501 + ], + [ + 380.63803, + 287.8, + 4.5, + 10.981501 + ], + [ + 385.13803, + 287.8, + 4.5, + 10.981501 + ], + [ + 389.63803, + 287.8, + 4.5, + 10.981501 + ], + [ + 394.13803, + 287.8, + 4.5, + 10.981501 + ], + [ + 398.63803, + 287.8, + 4.5, + 10.981501 + ], + [ + 403.13803, + 287.8, + 4.5, + 10.981501 + ], + [ + 308.8, + 277.40002, + 5.003998, + 10.981501 + ], + [ + 313.804, + 277.40002, + 4.5, + 10.981501 + ], + [ + 318.304, + 277.40002, + 4.5, + 10.981501 + ], + [ + 322.804, + 277.40002, + 4.5, + 10.981501 + ], + [ + 327.304, + 277.40002, + 3.9869995, + 10.981501 + ], + [ + 333.487, + 277.40002, + 6.497986, + 10.981501 + ], + [ + 339.985, + 277.40002, + 4.5, + 10.981501 + ], + [ + 344.485, + 277.40002, + 2.25, + 10.981501 + ], + [ + 348.976, + 277.40002, + 5.066986, + 10.981501 + ], + [ + 354.07, + 277.40002, + 4.5, + 10.981501 + ], + [ + 358.57, + 277.40002, + 4.5, + 10.981501 + ], + [ + 363.07, + 277.40002, + 4.5, + 10.981501 + ], + [ + 369.86502, + 277.40002, + 4.5, + 10.981501 + ], + [ + 374.36502, + 277.40002, + 4.5, + 10.981501 + ], + [ + 378.86502, + 277.40002, + 4.5, + 10.981501 + ], + [ + 383.36502, + 277.40002, + 4.5, + 10.981501 + ], + [ + 390.06104, + 277.40002, + 4.5, + 10.981501 + ], + [ + 394.56104, + 277.40002, + 4.5, + 10.981501 + ], + [ + 399.06104, + 277.40002, + 4.5, + 10.981501 + ], + [ + 403.56104, + 277.40002, + 4.5, + 10.981501 + ], + [ + 308.8, + 267.09998, + 5.993988, + 10.981501 + ], + [ + 314.79398, + 267.09998, + 4.5, + 10.981501 + ], + [ + 319.29398, + 267.09998, + 4.5, + 10.981501 + ], + [ + 323.79398, + 267.09998, + 2.4930115, + 10.981501 + ], + [ + 326.287, + 267.09998, + 3.9869995, + 10.981501 + ], + [ + 330.274, + 267.09998, + 3.9869995, + 10.981501 + ], + [ + 334.261, + 267.09998, + 2.4930115, + 10.981501 + ], + [ + 336.754, + 267.09998, + 2.4930115, + 10.981501 + ], + [ + 341.44302, + 267.09998, + 4.5, + 10.981501 + ], + [ + 345.94302, + 267.09998, + 4.5, + 10.981501 + ], + [ + 350.44302, + 267.09998, + 4.5, + 10.981501 + ], + [ + 357.23804, + 267.09998, + 4.5, + 10.981501 + ], + [ + 361.73804, + 267.09998, + 4.5, + 10.981501 + ], + [ + 366.23804, + 267.09998, + 4.5, + 10.981501 + ], + [ + 370.73804, + 267.09998, + 4.5, + 10.981501 + ], + [ + 377.43405, + 267.09998, + 4.5, + 10.981501 + ], + [ + 381.93405, + 267.09998, + 4.5, + 10.981501 + ], + [ + 386.43405, + 267.09998, + 4.5, + 10.981501 + ], + [ + 390.93405, + 267.09998, + 4.5, + 10.981501 + ], + [ + 308.8, + 256.7, + 5.48999, + 10.981501 + ], + [ + 314.28998, + 256.7, + 4.5, + 10.981501 + ], + [ + 318.78998, + 256.7, + 2.9970093, + 10.981501 + ], + [ + 321.787, + 256.7, + 4.5, + 10.981501 + ], + [ + 326.287, + 256.7, + 4.5, + 10.981501 + ], + [ + 330.787, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 334.774, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 338.761, + 256.7, + 4.5, + 10.981501 + ], + [ + 345.457, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 349.444, + 256.7, + 4.5, + 10.981501 + ], + [ + 353.944, + 256.7, + 4.5, + 10.981501 + ], + [ + 358.444, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 360.937, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 364.924, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 368.911, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 371.40402, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 376.09305, + 256.7, + 5.48999, + 10.981501 + ], + [ + 381.58304, + 256.7, + 4.5, + 10.981501 + ], + [ + 386.08304, + 256.7, + 2.9970093, + 10.981501 + ], + [ + 389.08005, + 256.7, + 4.5, + 10.981501 + ], + [ + 393.58005, + 256.7, + 4.5, + 10.981501 + ], + [ + 398.08005, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 402.06705, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 406.05405, + 256.7, + 4.5, + 10.981501 + ], + [ + 412.84906, + 256.7, + 5.993988, + 10.981501 + ], + [ + 418.84305, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 422.83005, + 256.7, + 4.5, + 10.981501 + ], + [ + 427.33005, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 429.82306, + 256.7, + 2.9970093, + 10.981501 + ], + [ + 432.82007, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 436.80707, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 441.4961, + 256.7, + 2.9970093, + 10.981501 + ], + [ + 444.4931, + 256.7, + 4.5, + 10.981501 + ], + [ + 448.9931, + 256.7, + 3.501007, + 10.981501 + ], + [ + 452.4941, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 454.98712, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 457.48013, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 459.97314, + 256.7, + 4.5, + 10.981501 + ], + [ + 464.47314, + 256.7, + 2.4930115, + 10.981501 + ], + [ + 466.96616, + 256.7, + 3.9869995, + 10.981501 + ], + [ + 308.8, + 246.40002, + 6.497986, + 10.981501 + ], + [ + 315.29797, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 317.791, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 320.284, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 324.271, + 246.40002, + 2.9970093, + 10.981501 + ], + [ + 327.268, + 246.40002, + 4.5, + 10.981501 + ], + [ + 331.768, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 335.755, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 338.24802, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 340.74103, + 246.40002, + 4.5, + 10.981501 + ], + [ + 345.24103, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 351.42404, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 355.41104, + 246.40002, + 4.5, + 10.981501 + ], + [ + 359.91104, + 246.40002, + 4.5, + 10.981501 + ], + [ + 364.41104, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 366.90405, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 370.89105, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 374.87805, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 377.37106, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 382.0601, + 246.40002, + 5.48999, + 10.981501 + ], + [ + 387.55008, + 246.40002, + 6.9930115, + 10.981501 + ], + [ + 394.5431, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 397.0361, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 399.5291, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 402.02213, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 408.30414, + 246.40002, + 5.48999, + 10.981501 + ], + [ + 413.79413, + 246.40002, + 4.5, + 10.981501 + ], + [ + 418.29413, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 422.28113, + 246.40002, + 4.5, + 10.981501 + ], + [ + 426.78113, + 246.40002, + 4.5, + 10.981501 + ], + [ + 431.28113, + 246.40002, + 3.9869995, + 10.981501 + ], + [ + 435.26813, + 246.40002, + 2.9970093, + 10.981501 + ], + [ + 438.26514, + 246.40002, + 2.4930115, + 10.981501 + ], + [ + 308.8, + 236.0, + 6.497986, + 10.981501 + ], + [ + 315.29797, + 236.0, + 2.4930115, + 10.981501 + ], + [ + 317.791, + 236.0, + 2.4930115, + 10.981501 + ], + [ + 320.284, + 236.0, + 3.9869995, + 10.981501 + ], + [ + 324.271, + 236.0, + 2.9970093, + 10.981501 + ], + [ + 327.268, + 236.0, + 4.5, + 10.981501 + ], + [ + 331.768, + 236.0, + 3.9869995, + 10.981501 + ], + [ + 335.755, + 236.0, + 2.4930115, + 10.981501 + ], + [ + 338.24802, + 236.0, + 2.4930115, + 10.981501 + ], + [ + 340.74103, + 236.0, + 4.5, + 10.981501 + ], + [ + 345.24103, + 236.0, + 3.9869995, + 10.981501 + ], + [ + 351.42404, + 236.0, + 3.9869995, + 10.981501 + ], + [ + 355.41104, + 236.0, + 4.5, + 10.981501 + ], + [ + 359.91104, + 236.0, + 4.5, + 10.981501 + ], + [ + 364.41104, + 236.0, + 2.4930115, + 10.981501 + ], + [ + 366.90405, + 236.0, + 3.9869995, + 10.981501 + ], + [ + 370.89105, + 236.0, + 3.9869995, + 10.981501 + ], + [ + 374.87805, + 236.0, + 2.4930115, + 10.981501 + ], + [ + 377.37106, + 236.0, + 2.4930115, + 10.981501 + ] + ] + }, + { + "id": 65, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51 + ], + "positions": [ + [ + 394.9, + 225.70001, + 5.993988, + 10.981501 + ], + [ + 400.89398, + 225.70001, + 4.5, + 10.981501 + ], + [ + 405.39398, + 225.70001, + 4.5, + 10.981501 + ], + [ + 409.89398, + 225.70001, + 3.9869995, + 10.981501 + ], + [ + 413.88098, + 225.70001, + 2.9970093, + 10.981501 + ], + [ + 416.878, + 225.70001, + 4.5, + 10.981501 + ], + [ + 421.378, + 225.70001, + 4.5, + 10.981501 + ], + [ + 425.878, + 225.70001, + 4.5, + 10.981501 + ], + [ + 430.378, + 225.70001, + 3.9869995, + 10.981501 + ], + [ + 436.66, + 225.70001, + 5.003998, + 10.981501 + ], + [ + 441.664, + 225.70001, + 4.5, + 10.981501 + ], + [ + 446.164, + 225.70001, + 3.501007, + 10.981501 + ], + [ + 449.665, + 225.70001, + 2.4930115, + 10.981501 + ], + [ + 452.15802, + 225.70001, + 3.9869995, + 10.981501 + ], + [ + 456.14502, + 225.70001, + 6.9930115, + 10.981501 + ], + [ + 463.13803, + 225.70001, + 3.501007, + 10.981501 + ], + [ + 393.6, + 215.29999, + 5.48999, + 10.981501 + ], + [ + 398.496, + 215.29999, + 4.5, + 10.981501 + ], + [ + 402.996, + 215.29999, + 6.497986, + 10.981501 + ], + [ + 409.494, + 215.29999, + 3.9869995, + 10.981501 + ], + [ + 413.481, + 215.29999, + 2.9970093, + 10.981501 + ], + [ + 418.674, + 215.29999, + 6.497986, + 10.981501 + ], + [ + 425.172, + 215.29999, + 3.9869995, + 10.981501 + ], + [ + 429.159, + 215.29999, + 2.9970093, + 10.981501 + ], + [ + 432.156, + 215.29999, + 3.9869995, + 10.981501 + ], + [ + 436.143, + 215.29999, + 4.5, + 10.981501 + ], + [ + 440.643, + 215.29999, + 3.501007, + 10.981501 + ], + [ + 444.144, + 215.29999, + 3.9869995, + 10.981501 + ], + [ + 450.42603, + 215.29999, + 4.5, + 10.981501 + ], + [ + 454.92603, + 215.29999, + 4.5, + 10.981501 + ], + [ + 459.42603, + 215.29999, + 4.5, + 10.981501 + ], + [ + 463.92603, + 215.29999, + 3.9869995, + 10.981501 + ], + [ + 387.1, + 205.0, + 6.497986, + 10.981501 + ], + [ + 393.598, + 205.0, + 4.5, + 10.981501 + ], + [ + 398.098, + 205.0, + 4.5, + 10.981501 + ], + [ + 402.598, + 205.0, + 4.5, + 10.981501 + ], + [ + 409.393, + 205.0, + 6.497986, + 10.981501 + ], + [ + 415.891, + 205.0, + 4.5, + 10.981501 + ], + [ + 420.391, + 205.0, + 4.5, + 10.981501 + ], + [ + 424.891, + 205.0, + 4.5, + 10.981501 + ], + [ + 429.292, + 205.0, + 2.25, + 10.981501 + ], + [ + 433.88202, + 205.0, + 5.993988, + 10.981501 + ], + [ + 439.876, + 205.0, + 5.48999, + 10.981501 + ], + [ + 447.47202, + 205.0, + 6.497986, + 10.981501 + ], + [ + 453.97, + 205.0, + 2.4930115, + 10.981501 + ], + [ + 456.463, + 205.0, + 3.501007, + 10.981501 + ], + [ + 459.96402, + 205.0, + 2.4930115, + 10.981501 + ], + [ + 462.45703, + 205.0, + 2.9970093, + 10.981501 + ], + [ + 465.45404, + 205.0, + 2.4930115, + 10.981501 + ], + [ + 467.94705, + 205.0, + 3.9869995, + 10.981501 + ], + [ + 471.93405, + 205.0, + 2.4930115, + 10.981501 + ] + ] + }, + { + "id": 66, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.274506, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.1, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 106.8973, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 110.803, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 118.6849, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 126.6, + 692.1, + 4.695305, + 13.867801 + ], + [ + 135.201, + 692.1, + 10.180206, + 13.867801 + ], + [ + 145.38121, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 153.17851, + 692.1, + 8.600998, + 13.867801 + ], + [ + 161.8641, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 169.6614, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 177.45871, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 186.1443, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 193.9416, + 692.1, + 8.600998, + 13.867801 + ], + [ + 202.5426, + 692.1, + 8.600998, + 13.867801 + ], + [ + 211.1436, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 215.8389, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 223.7208, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 231.5181, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 240.1191, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 244.0248, + 692.1, + 8.600998, + 13.867801 + ], + [ + 252.6258, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 257.3211, + 692.1, + 8.601013, + 13.867801 + ], + [ + 265.92212, + 692.1, + 5.484894, + 13.867801 + ], + [ + 271.407, + 692.1, + 12.534912, + 13.867801 + ], + [ + 283.99832, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 291.79562, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 296.49094, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 300.39664, + 692.1, + 8.601013, + 13.867801 + ], + [ + 308.99765, + 692.1, + 8.601013, + 13.867801 + ], + [ + 321.58896, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 326.3, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 334.0973, + 692.1, + 8.601013, + 13.867801 + ], + [ + 342.6983, + 692.1, + 8.601013, + 13.867801 + ], + [ + 351.29932, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 355.99463, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 363.87653, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 367.78223, + 692.1, + 8.601013, + 13.867801 + ], + [ + 376.38324, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 388.17084, + 692.1, + 9.3905945, + 13.867801 + ], + [ + 397.56143, + 692.1, + 5.484894, + 13.867801 + ], + [ + 403.04633, + 692.1, + 8.601013, + 13.867801 + ], + [ + 411.64734, + 692.1, + 8.601013, + 13.867801 + ], + [ + 420.24835, + 692.1, + 8.601013, + 13.867801 + ], + [ + 428.84937, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 436.73126, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 444.52856, + 692.1, + 5.484894, + 13.867801 + ], + [ + 450.01346, + 692.1, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 67, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 83, + 84, + 85, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92 + ], + "positions": [ + [ + 56.8, + 673.8, + 6.1000023, + 11.535 + ], + [ + 62.9, + 673.8, + 4.4300003, + 11.535 + ], + [ + 67.3, + 673.8, + 5.0, + 11.535 + ], + [ + 72.3, + 673.8, + 5.0, + 11.535 + ], + [ + 77.3, + 673.8, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 673.8, + 2.7699966, + 11.535 + ], + [ + 86.99, + 673.8, + 6.659996, + 11.535 + ], + [ + 93.67999, + 673.8, + 5.0, + 11.535 + ], + [ + 98.67999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 673.8, + 5.0, + 11.535 + ], + [ + 110.66999, + 673.8, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 673.8, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 673.8, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 673.8, + 5.0, + 11.535 + ], + [ + 136.14998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 673.8, + 5.0, + 11.535 + ], + [ + 145.03998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 673.8, + 5.0, + 11.535 + ], + [ + 159.72998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 673.8, + 5.0, + 11.535 + ], + [ + 167.51999, + 673.8, + 5.0, + 11.535 + ], + [ + 172.51999, + 673.8, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 673.8, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 673.8, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 673.8, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 673.8, + 3.8899994, + 11.535 + ], + [ + 56.8, + 662.2, + 6.1000023, + 11.535 + ], + [ + 62.9, + 662.2, + 4.4300003, + 11.535 + ], + [ + 67.3, + 662.2, + 5.0, + 11.535 + ], + [ + 72.3, + 662.2, + 5.0, + 11.535 + ], + [ + 77.3, + 662.2, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 662.2, + 2.7699966, + 11.535 + ], + [ + 86.99, + 662.2, + 6.659996, + 11.535 + ], + [ + 93.67999, + 662.2, + 5.0, + 11.535 + ], + [ + 98.67999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 662.2, + 5.0, + 11.535 + ], + [ + 110.66999, + 662.2, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 662.2, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 662.2, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 662.2, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 662.2, + 5.0, + 11.535 + ], + [ + 136.14998, + 662.2, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 662.2, + 5.0, + 11.535 + ], + [ + 145.03998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 662.2, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 662.2, + 5.0, + 11.535 + ], + [ + 159.72998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 662.2, + 5.0, + 11.535 + ], + [ + 167.51999, + 662.2, + 5.0, + 11.535 + ], + [ + 172.51999, + 662.2, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 662.2, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 662.2, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 662.2, + 6.6600037, + 11.535 + ], + [ + 195.29, + 662.2, + 5.0, + 11.535 + ], + [ + 56.8, + 650.7, + 5.5600014, + 11.535 + ], + [ + 62.3, + 650.7, + 6.1000023, + 11.535 + ], + [ + 68.4, + 650.7, + 3.8899994, + 11.535 + ], + [ + 71.9, + 650.7, + 5.0, + 11.535 + ], + [ + 76.9, + 650.7, + 5.0, + 11.535 + ], + [ + 81.9, + 650.7, + 5.0, + 11.535 + ], + [ + 86.99, + 650.7, + 4.4300003, + 11.535 + ], + [ + 91.39, + 650.7, + 4.4300003, + 11.535 + ], + [ + 95.79, + 650.7, + 3.8899994, + 11.535 + ], + [ + 102.18, + 650.7, + 6.659996, + 11.535 + ], + [ + 108.869995, + 650.7, + 5.0, + 11.535 + ], + [ + 113.869995, + 650.7, + 3.8899994, + 11.535 + ], + [ + 120.259995, + 650.7, + 2.7699966, + 11.535 + ], + [ + 123.04999, + 650.7, + 5.0, + 11.535 + ], + [ + 128.04999, + 650.7, + 5.0, + 11.535 + ], + [ + 133.04999, + 650.7, + 5.0, + 11.535 + ], + [ + 138.04999, + 650.7, + 5.0, + 11.535 + ], + [ + 142.94998, + 650.7, + 5.5599976, + 11.535 + ], + [ + 151.03998, + 650.7, + 3.8899994, + 11.535 + ], + [ + 154.92998, + 650.7, + 5.0, + 11.535 + ], + [ + 159.92998, + 650.7, + 5.0, + 11.535 + ], + [ + 164.92998, + 650.7, + 5.0, + 11.535 + ], + [ + 169.92998, + 650.7, + 2.7700043, + 11.535 + ], + [ + 172.71999, + 650.7, + 5.0, + 11.535 + ], + [ + 180.21999, + 650.7, + 5.0, + 11.535 + ], + [ + 185.21999, + 650.7, + 4.4299927, + 11.535 + ], + [ + 192.11998, + 650.7, + 5.0, + 11.535 + ], + [ + 197.11998, + 650.7, + 5.0, + 11.535 + ], + [ + 202.11998, + 650.7, + 5.0, + 11.535 + ], + [ + 207.11998, + 650.7, + 4.4299927, + 11.535 + ], + [ + 211.51997, + 650.7, + 5.0, + 11.535 + ], + [ + 216.51997, + 650.7, + 3.8899994, + 11.535 + ], + [ + 220.40997, + 650.7, + 3.8899994, + 11.535 + ] + ] + }, + { + "id": 68, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28 + ], + "positions": [ + [ + 56.8, + 625.7, + 6.672001, + 12.642 + ], + [ + 63.484, + 625.7, + 3.9960022, + 12.642 + ], + [ + 67.48, + 625.7, + 6.0, + 12.642 + ], + [ + 73.48, + 625.7, + 6.0, + 12.642 + ], + [ + 79.48, + 625.7, + 6.0, + 12.642 + ], + [ + 85.48, + 625.7, + 5.316002, + 12.642 + ], + [ + 90.784004, + 625.7, + 5.316002, + 12.642 + ], + [ + 96.088005, + 625.7, + 3.9960022, + 12.642 + ], + [ + 103.08401, + 625.7, + 6.0, + 12.642 + ], + [ + 109.08401, + 625.7, + 3.9960022, + 12.642 + ], + [ + 116.08001, + 625.7, + 3.3239975, + 12.642 + ], + [ + 119.380005, + 625.7, + 6.0, + 12.642 + ], + [ + 125.380005, + 625.7, + 5.3159943, + 12.642 + ], + [ + 133.768, + 625.7, + 6.0, + 12.642 + ], + [ + 139.768, + 625.7, + 3.3240051, + 12.642 + ], + [ + 143.06801, + 625.7, + 5.3159943, + 12.642 + ], + [ + 148.37201, + 625.7, + 6.0, + 12.642 + ], + [ + 154.37201, + 625.7, + 3.3240051, + 12.642 + ], + [ + 160.75601, + 625.7, + 6.0, + 12.642 + ], + [ + 166.75601, + 625.7, + 3.9960022, + 12.642 + ], + [ + 170.75201, + 625.7, + 6.0, + 12.642 + ], + [ + 176.75201, + 625.7, + 6.0, + 12.642 + ], + [ + 182.75201, + 625.7, + 6.0, + 12.642 + ], + [ + 188.75201, + 625.7, + 5.3159943, + 12.642 + ], + [ + 194.05602, + 625.7, + 3.3240051, + 12.642 + ], + [ + 197.35602, + 625.7, + 3.3240051, + 12.642 + ], + [ + 200.65602, + 625.7, + 6.0, + 12.642 + ], + [ + 206.65602, + 625.7, + 6.0, + 12.642 + ] + ] + }, + { + "id": 69, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 84, + 85, + 86, + 87, + 88, + 89, + 89, + 90, + 91, + 92, + 93, + 94, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 100, + 101, + 102, + 103, + 103, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 110, + 111, + 111, + 112, + 113, + 114, + 115, + 115, + 116, + 117, + 118, + 118, + 119, + 120, + 121, + 121, + 122, + 123, + 124, + 125, + 126, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158 + ], + "positions": [ + [ + 56.8, + 598.1, + 8.663998, + 12.642 + ], + [ + 65.488, + 598.1, + 5.316002, + 12.642 + ], + [ + 70.792, + 598.1, + 9.3239975, + 12.642 + ], + [ + 80.091995, + 598.1, + 5.316002, + 12.642 + ], + [ + 85.395996, + 598.1, + 3.3239975, + 12.642 + ], + [ + 128.8, + 598.1, + 8.664001, + 12.642 + ], + [ + 137.488, + 598.1, + 9.324005, + 12.642 + ], + [ + 146.78801, + 598.1, + 6.0, + 12.642 + ], + [ + 152.78801, + 598.1, + 3.9960022, + 12.642 + ], + [ + 156.78401, + 598.1, + 5.3159943, + 12.642 + ], + [ + 162.08801, + 598.1, + 3.3240051, + 12.642 + ], + [ + 165.38802, + 598.1, + 3.3240051, + 12.642 + ], + [ + 168.68802, + 598.1, + 5.3159943, + 12.642 + ], + [ + 177.07602, + 598.1, + 7.9920044, + 12.642 + ], + [ + 185.06802, + 598.1, + 6.0, + 12.642 + ], + [ + 191.06802, + 598.1, + 3.9960022, + 12.642 + ], + [ + 195.06403, + 598.1, + 6.0, + 12.642 + ], + [ + 201.06403, + 598.1, + 6.0, + 12.642 + ], + [ + 207.06403, + 598.1, + 3.9960022, + 12.642 + ], + [ + 211.06003, + 598.1, + 5.3159943, + 12.642 + ], + [ + 216.36403, + 598.1, + 3.3240051, + 12.642 + ], + [ + 219.66403, + 598.1, + 3.3240051, + 12.642 + ], + [ + 222.96404, + 598.1, + 6.0, + 12.642 + ], + [ + 228.96404, + 598.1, + 6.0, + 12.642 + ], + [ + 56.8, + 584.3, + 7.9920006, + 12.642 + ], + [ + 64.792, + 584.3, + 6.0, + 12.642 + ], + [ + 70.792, + 584.3, + 6.0, + 12.642 + ], + [ + 76.792, + 584.3, + 3.3239975, + 12.642 + ], + [ + 80.091995, + 584.3, + 5.316002, + 12.642 + ], + [ + 85.395996, + 584.3, + 5.316002, + 12.642 + ], + [ + 90.7, + 584.3, + 3.3239975, + 12.642 + ], + [ + 94.08399, + 584.3, + 3.3239975, + 12.642 + ], + [ + 128.8, + 584.3, + 4.6679993, + 12.642 + ], + [ + 133.492, + 584.3, + 3.3240051, + 12.642 + ], + [ + 136.792, + 584.3, + 3.3240051, + 12.642 + ], + [ + 140.09201, + 584.3, + 3.3240051, + 12.642 + ], + [ + 146.18802, + 584.3, + 8.664001, + 12.642 + ], + [ + 153.48402, + 584.3, + 5.3159943, + 12.642 + ], + [ + 158.87202, + 584.3, + 3.3240051, + 12.642 + ], + [ + 162.17203, + 584.3, + 5.3159943, + 12.642 + ], + [ + 167.47603, + 584.3, + 6.0, + 12.642 + ], + [ + 173.47603, + 584.3, + 3.3240051, + 12.642 + ], + [ + 176.86003, + 584.3, + 3.3240051, + 12.642 + ], + [ + 180.16003, + 584.3, + 6.0, + 12.642 + ], + [ + 186.16003, + 584.3, + 5.3159943, + 12.642 + ], + [ + 56.8, + 570.5, + 8.663998, + 12.642 + ], + [ + 65.404, + 570.5, + 6.0, + 12.642 + ], + [ + 71.404, + 570.5, + 6.0, + 12.642 + ], + [ + 77.404, + 570.5, + 3.9960022, + 12.642 + ], + [ + 81.4, + 570.5, + 5.316002, + 12.642 + ], + [ + 86.704, + 570.5, + 4.6679993, + 12.642 + ], + [ + 91.396, + 570.5, + 4.6679993, + 12.642 + ], + [ + 96.088005, + 570.5, + 3.3239975, + 12.642 + ], + [ + 128.8, + 570.5, + 6.0, + 12.642 + ], + [ + 134.8, + 570.5, + 6.0, + 12.642 + ], + [ + 140.8, + 570.5, + 6.0, + 12.642 + ], + [ + 146.8, + 570.5, + 3.9960022, + 12.642 + ], + [ + 150.796, + 570.5, + 6.0, + 12.642 + ], + [ + 156.796, + 570.5, + 6.0, + 12.642 + ], + [ + 165.796, + 570.5, + 8.664001, + 12.642 + ], + [ + 174.40001, + 570.5, + 6.0, + 12.642 + ], + [ + 180.40001, + 570.5, + 5.3159943, + 12.642 + ], + [ + 185.78801, + 570.5, + 9.324005, + 12.642 + ], + [ + 195.08801, + 570.5, + 3.9960022, + 12.642 + ], + [ + 199.08401, + 570.5, + 6.0, + 12.642 + ], + [ + 205.08401, + 570.5, + 6.0, + 12.642 + ], + [ + 211.08401, + 570.5, + 6.0, + 12.642 + ], + [ + 217.08401, + 570.5, + 6.0, + 12.642 + ], + [ + 128.8, + 556.7, + 8.664001, + 12.642 + ], + [ + 136.20401, + 556.7, + 6.0, + 12.642 + ], + [ + 142.20401, + 556.7, + 6.0, + 12.642 + ], + [ + 148.20401, + 556.7, + 6.0, + 12.642 + ], + [ + 154.20401, + 556.7, + 4.6679993, + 12.642 + ], + [ + 158.89601, + 556.7, + 5.3159943, + 12.642 + ], + [ + 164.20001, + 556.7, + 6.0, + 12.642 + ], + [ + 170.20001, + 556.7, + 3.9960022, + 12.642 + ], + [ + 174.19601, + 556.7, + 6.0, + 12.642 + ], + [ + 180.19601, + 556.7, + 6.0, + 12.642 + ], + [ + 128.8, + 542.9, + 6.671997, + 12.642 + ], + [ + 135.484, + 542.9, + 5.3159943, + 12.642 + ], + [ + 140.788, + 542.9, + 6.0, + 12.642 + ], + [ + 146.788, + 542.9, + 6.0, + 12.642 + ], + [ + 152.788, + 542.9, + 3.3240051, + 12.642 + ], + [ + 156.088, + 542.9, + 3.0, + 12.642 + ], + [ + 162.088, + 542.9, + 6.671997, + 12.642 + ], + [ + 168.77199, + 542.9, + 6.0, + 12.642 + ], + [ + 174.77199, + 542.9, + 6.0, + 12.642 + ], + [ + 180.77199, + 542.9, + 3.3240051, + 12.642 + ], + [ + 184.07199, + 542.9, + 6.0, + 12.642 + ], + [ + 193.07199, + 542.9, + 8.664001, + 12.642 + ], + [ + 201.76, + 542.9, + 6.0, + 12.642 + ], + [ + 207.76, + 542.9, + 3.9960022, + 12.642 + ], + [ + 211.756, + 542.9, + 5.3159943, + 12.642 + ], + [ + 217.06, + 542.9, + 5.3159943, + 12.642 + ], + [ + 56.8, + 529.1, + 6.672001, + 12.642 + ], + [ + 63.484, + 529.1, + 6.0, + 12.642 + ], + [ + 69.484, + 529.1, + 6.0, + 12.642 + ], + [ + 75.484, + 529.1, + 6.0, + 12.642 + ], + [ + 81.484, + 529.1, + 5.316002, + 12.642 + ], + [ + 86.788, + 529.1, + 3.3239975, + 12.642 + ], + [ + 128.8, + 529.1, + 6.7559967, + 12.642 + ], + [ + 135.496, + 529.1, + 6.0, + 12.642 + ], + [ + 141.496, + 529.1, + 6.0, + 12.642 + ], + [ + 150.496, + 529.1, + 6.0, + 12.642 + ], + [ + 156.496, + 529.1, + 6.0, + 12.642 + ], + [ + 162.496, + 529.1, + 6.0, + 12.642 + ], + [ + 171.496, + 529.1, + 6.0, + 12.642 + ], + [ + 177.496, + 529.1, + 6.0, + 12.642 + ], + [ + 183.496, + 529.1, + 6.0, + 12.642 + ], + [ + 189.496, + 529.1, + 6.0, + 12.642 + ], + [ + 195.496, + 529.1, + 6.0, + 12.642 + ], + [ + 56.8, + 515.3, + 6.672001, + 12.642 + ], + [ + 63.484, + 515.3, + 5.316002, + 12.642 + ], + [ + 68.788, + 515.3, + 6.0, + 12.642 + ], + [ + 74.788, + 515.3, + 3.3239975, + 12.642 + ], + [ + 128.8, + 515.3, + 6.7559967, + 12.642 + ], + [ + 135.496, + 515.3, + 6.0, + 12.642 + ], + [ + 141.496, + 515.3, + 6.0, + 12.642 + ], + [ + 150.496, + 515.3, + 6.0, + 12.642 + ], + [ + 156.496, + 515.3, + 6.0, + 12.642 + ], + [ + 162.496, + 515.3, + 6.0, + 12.642 + ], + [ + 171.496, + 515.3, + 6.0, + 12.642 + ], + [ + 177.496, + 515.3, + 6.0, + 12.642 + ], + [ + 183.496, + 515.3, + 6.0, + 12.642 + ], + [ + 189.496, + 515.3, + 6.0, + 12.642 + ], + [ + 195.496, + 515.3, + 6.0, + 12.642 + ], + [ + 56.8, + 501.5, + 7.3200035, + 12.642 + ], + [ + 64.096, + 501.5, + 3.9960022, + 12.642 + ], + [ + 68.092, + 501.5, + 9.3239975, + 12.642 + ], + [ + 77.392, + 501.5, + 5.316002, + 12.642 + ], + [ + 82.78, + 501.5, + 3.3239975, + 12.642 + ], + [ + 86.079994, + 501.5, + 3.3239975, + 12.642 + ], + [ + 89.37999, + 501.5, + 3.3239975, + 12.642 + ], + [ + 128.8, + 501.5, + 6.0, + 12.642 + ], + [ + 134.8, + 501.5, + 6.0, + 12.642 + ], + [ + 140.8, + 501.5, + 5.3159943, + 12.642 + ], + [ + 146.104, + 501.5, + 3.9960022, + 12.642 + ], + [ + 150.1, + 501.5, + 9.324005, + 12.642 + ], + [ + 159.40001, + 501.5, + 5.3159943, + 12.642 + ], + [ + 164.70401, + 501.5, + 3.9960022, + 12.642 + ], + [ + 168.796, + 501.5, + 3.3240051, + 12.642 + ], + [ + 172.09601, + 501.5, + 6.0, + 12.642 + ], + [ + 178.09601, + 501.5, + 6.0, + 12.642 + ], + [ + 184.09601, + 501.5, + 6.0, + 12.642 + ], + [ + 190.09601, + 501.5, + 4.6679993, + 12.642 + ], + [ + 194.78801, + 501.5, + 3.3240051, + 12.642 + ], + [ + 198.08801, + 501.5, + 3.9960022, + 12.642 + ], + [ + 202.08401, + 501.5, + 6.0, + 12.642 + ], + [ + 207.98802, + 501.5, + 11.039993, + 12.642 + ], + [ + 219.07602, + 501.5, + 6.0, + 12.642 + ], + [ + 225.07602, + 501.5, + 6.0, + 12.642 + ], + [ + 231.07602, + 501.5, + 3.9960022, + 12.642 + ], + [ + 235.07202, + 501.5, + 5.3159943, + 12.642 + ], + [ + 240.37602, + 501.5, + 5.3159943, + 12.642 + ], + [ + 245.68002, + 501.5, + 3.0, + 12.642 + ], + [ + 248.76402, + 501.5, + 5.3159943, + 12.642 + ], + [ + 254.06802, + 501.5, + 6.0, + 12.642 + ], + [ + 260.06802, + 501.5, + 9.324005, + 12.642 + ] + ] + }, + { + "id": 70, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 18, + 19, + 20, + 21, + 22, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 63, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 89, + 90, + 91, + 92, + 93, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 110 + ], + "positions": [ + [ + 56.8, + 437.3, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 437.3, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 437.3, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 106.89461, + 437.3, + 3.9057007, + 13.867801 + ], + [ + 110.88491, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 118.68221, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 126.479515, + 437.3, + 3.905693, + 13.867801 + ], + [ + 130.4698, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 138.2671, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 146.0644, + 437.3, + 3.9057007, + 13.867801 + ], + [ + 150.0547, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 157.852, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 165.8, + 437.3, + 4.6952972, + 13.867801 + ], + [ + 174.4, + 437.3, + 3.9057007, + 13.867801 + ], + [ + 178.3057, + 437.3, + 4.6952972, + 13.867801 + ], + [ + 186.9067, + 437.3, + 8.600998, + 13.867801 + ], + [ + 194.50659, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 202.3039, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 210.1012, + 437.3, + 4.6952972, + 13.867801 + ], + [ + 218.78679, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 226.58409, + 437.3, + 8.600998, + 13.867801 + ], + [ + 235.18509, + 437.3, + 8.600998, + 13.867801 + ], + [ + 243.78609, + 437.3, + 4.6952972, + 13.867801 + ], + [ + 248.48138, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 256.2787, + 437.3, + 3.9057007, + 13.867801 + ], + [ + 260.26898, + 437.3, + 8.601013, + 13.867801 + ], + [ + 268.87, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 280.6576, + 437.3, + 6.6834106, + 13.867801 + ], + [ + 287.2564, + 437.3, + 10.180206, + 13.867801 + ], + [ + 297.4366, + 437.3, + 10.180206, + 13.867801 + ], + [ + 307.61682, + 437.3, + 8.601013, + 13.867801 + ], + [ + 316.21783, + 437.3, + 10.180206, + 13.867801 + ], + [ + 326.39804, + 437.3, + 10.955688, + 13.867801 + ], + [ + 337.38193, + 437.3, + 10.180206, + 13.867801 + ], + [ + 347.56213, + 437.3, + 9.3905945, + 13.867801 + ], + [ + 356.95273, + 437.3, + 4.6953125, + 13.867801 + ], + [ + 361.54935, + 437.3, + 6.6834106, + 13.867801 + ], + [ + 372.22305, + 437.3, + 7.8395996, + 13.867801 + ], + [ + 380.02036, + 437.3, + 8.601013, + 13.867801 + ], + [ + 388.62137, + 437.3, + 8.601013, + 13.867801 + ], + [ + 401.21268, + 437.3, + 6.6834106, + 13.867801 + ], + [ + 407.8115, + 437.3, + 10.180206, + 13.867801 + ], + [ + 417.9917, + 437.3, + 10.955688, + 13.867801 + ], + [ + 428.9756, + 437.3, + 11.7453, + 13.867801 + ], + [ + 440.6786, + 437.3, + 9.3905945, + 13.867801 + ], + [ + 450.06918, + 437.3, + 8.601013, + 13.867801 + ], + [ + 458.6702, + 437.3, + 9.3905945, + 13.867801 + ], + [ + 468.0608, + 437.3, + 8.601013, + 13.867801 + ], + [ + 476.6618, + 437.3, + 3.9057007, + 13.867801 + ], + [ + 480.5675, + 437.3, + 10.955688, + 13.867801 + ], + [ + 491.5514, + 437.3, + 10.180206, + 13.867801 + ], + [ + 56.8, + 421.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 421.1, + 10.180199, + 13.867801 + ], + [ + 76.0747, + 421.1, + 8.600998, + 13.867801 + ], + [ + 84.6757, + 421.1, + 9.390602, + 13.867801 + ], + [ + 94.0663, + 421.1, + 9.390602, + 13.867801 + ], + [ + 103.4569, + 421.1, + 6.683403, + 13.867801 + ], + [ + 114.046005, + 421.1, + 8.600998, + 13.867801 + ], + [ + 122.647, + 421.1, + 8.600998, + 13.867801 + ], + [ + 131.248, + 421.1, + 4.6952972, + 13.867801 + ], + [ + 139.9336, + 421.1, + 8.600998, + 13.867801 + ], + [ + 148.53459, + 421.1, + 8.600998, + 13.867801 + ], + [ + 157.13559, + 421.1, + 4.6952972, + 13.867801 + ], + [ + 165.73659, + 421.1, + 6.6833954, + 13.867801 + ], + [ + 172.41998, + 421.1, + 9.3905945, + 13.867801 + ], + [ + 181.81058, + 421.1, + 8.600998, + 13.867801 + ], + [ + 190.41158, + 421.1, + 10.180206, + 13.867801 + ], + [ + 200.59178, + 421.1, + 10.180206, + 13.867801 + ], + [ + 210.77199, + 421.1, + 9.3905945, + 13.867801 + ], + [ + 223.85678, + 421.1, + 10.180206, + 13.867801 + ], + [ + 233.9524, + 421.1, + 10.955704, + 13.867801 + ], + [ + 244.9363, + 421.1, + 11.745285, + 13.867801 + ], + [ + 256.63928, + 421.1, + 9.3905945, + 13.867801 + ], + [ + 266.02988, + 421.1, + 8.601013, + 13.867801 + ], + [ + 274.6309, + 421.1, + 9.3905945, + 13.867801 + ], + [ + 284.02148, + 421.1, + 8.601013, + 13.867801 + ], + [ + 292.7071, + 421.1, + 3.9057007, + 13.867801 + ], + [ + 296.6128, + 421.1, + 10.955688, + 13.867801 + ], + [ + 307.59668, + 421.1, + 10.180206, + 13.867801 + ], + [ + 321.6826, + 421.1, + 10.180206, + 13.867801 + ], + [ + 331.8628, + 421.1, + 10.180206, + 13.867801 + ], + [ + 340.9573, + 421.1, + 8.601013, + 13.867801 + ], + [ + 349.55832, + 421.1, + 9.3905945, + 13.867801 + ], + [ + 358.9489, + 421.1, + 9.3905945, + 13.867801 + ], + [ + 368.3395, + 421.1, + 6.6834106, + 13.867801 + ], + [ + 375.02292, + 421.1, + 3.9057007, + 13.867801 + ], + [ + 382.83432, + 421.1, + 4.6953125, + 13.867801 + ], + [ + 387.52963, + 421.1, + 8.601013, + 13.867801 + ], + [ + 396.13065, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 404.01254, + 421.1, + 8.601013, + 13.867801 + ], + [ + 416.51926, + 421.1, + 10.180206, + 13.867801 + ], + [ + 426.69946, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 434.49677, + 421.1, + 8.601013, + 13.867801 + ], + [ + 443.18237, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 450.97968, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 458.77698, + 421.1, + 4.6953125, + 13.867801 + ], + [ + 467.4626, + 421.1, + 8.601013, + 13.867801 + ], + [ + 476.0636, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 483.8609, + 421.1, + 4.6953125, + 13.867801 + ], + [ + 488.5562, + 421.1, + 10.955688, + 13.867801 + ], + [ + 499.5401, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 507.3374, + 421.1, + 7.8395996, + 13.867801 + ], + [ + 515.1347, + 421.1, + 8.601013, + 13.867801 + ], + [ + 56.8, + 404.9, + 8.601002, + 13.867801 + ], + [ + 65.401, + 404.9, + 8.600998, + 13.867801 + ], + [ + 74.002, + 404.9, + 4.6952972, + 13.867801 + ], + [ + 78.697296, + 404.9, + 8.600998, + 13.867801 + ] + ] + }, + { + "id": 71, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 386.6, + 6.1000023, + 11.535 + ], + [ + 62.9, + 386.6, + 4.4300003, + 11.535 + ], + [ + 67.3, + 386.6, + 5.0, + 11.535 + ], + [ + 72.3, + 386.6, + 5.0, + 11.535 + ], + [ + 77.3, + 386.6, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 386.6, + 2.7699966, + 11.535 + ], + [ + 86.99, + 386.6, + 6.659996, + 11.535 + ], + [ + 93.67999, + 386.6, + 5.0, + 11.535 + ], + [ + 98.67999, + 386.6, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 386.6, + 5.0, + 11.535 + ], + [ + 110.66999, + 386.6, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 386.6, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 386.6, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 386.6, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 386.6, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 386.6, + 5.0, + 11.535 + ], + [ + 136.14998, + 386.6, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 386.6, + 5.0, + 11.535 + ], + [ + 145.03998, + 386.6, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 386.6, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 386.6, + 5.0, + 11.535 + ], + [ + 159.72998, + 386.6, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 386.6, + 5.0, + 11.535 + ], + [ + 167.51999, + 386.6, + 5.0, + 11.535 + ], + [ + 172.51999, + 386.6, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 386.6, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 386.6, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 386.6, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 386.6, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 386.6, + 3.8899994, + 11.535 + ], + [ + 56.8, + 375.0, + 6.1000023, + 11.535 + ], + [ + 62.9, + 375.0, + 4.4300003, + 11.535 + ], + [ + 67.3, + 375.0, + 5.0, + 11.535 + ], + [ + 72.3, + 375.0, + 5.0, + 11.535 + ], + [ + 77.3, + 375.0, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 375.0, + 2.7699966, + 11.535 + ], + [ + 86.99, + 375.0, + 6.659996, + 11.535 + ], + [ + 93.67999, + 375.0, + 5.0, + 11.535 + ], + [ + 98.67999, + 375.0, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 375.0, + 5.0, + 11.535 + ], + [ + 110.66999, + 375.0, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 375.0, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 375.0, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 375.0, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 375.0, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 375.0, + 5.0, + 11.535 + ], + [ + 136.14998, + 375.0, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 375.0, + 5.0, + 11.535 + ], + [ + 145.03998, + 375.0, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 375.0, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 375.0, + 5.0, + 11.535 + ], + [ + 159.72998, + 375.0, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 375.0, + 5.0, + 11.535 + ], + [ + 167.51999, + 375.0, + 5.0, + 11.535 + ], + [ + 172.51999, + 375.0, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 375.0, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 375.0, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 375.0, + 6.6600037, + 11.535 + ], + [ + 195.29, + 375.0, + 5.0, + 11.535 + ] + ] + }, + { + "id": 72, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35, + 36 + ], + "positions": [ + [ + 56.8, + 347.8, + 6.672001, + 12.642 + ], + [ + 63.484, + 347.8, + 3.3239975, + 12.642 + ], + [ + 66.784, + 347.8, + 6.0, + 12.642 + ], + [ + 72.784, + 347.8, + 6.0, + 12.642 + ], + [ + 78.784, + 347.8, + 6.0, + 12.642 + ], + [ + 87.784, + 347.8, + 7.991997, + 12.642 + ], + [ + 95.77599, + 347.8, + 5.316002, + 12.642 + ], + [ + 101.079994, + 347.8, + 6.0, + 12.642 + ], + [ + 107.079994, + 347.8, + 6.0, + 12.642 + ], + [ + 113.079994, + 347.8, + 3.9960022, + 12.642 + ], + [ + 117.076, + 347.8, + 3.3239975, + 12.642 + ], + [ + 120.37599, + 347.8, + 6.0, + 12.642 + ], + [ + 126.37599, + 347.8, + 6.0, + 12.642 + ], + [ + 132.37599, + 347.8, + 6.0, + 12.642 + ], + [ + 56.8, + 334.0, + 8.663998, + 12.642 + ], + [ + 65.404, + 334.0, + 8.664001, + 12.642 + ], + [ + 74.092, + 334.0, + 7.991997, + 12.642 + ], + [ + 82.084, + 334.0, + 9.3239975, + 12.642 + ], + [ + 91.383995, + 334.0, + 9.3239975, + 12.642 + ], + [ + 100.68399, + 334.0, + 8.664001, + 12.642 + ], + [ + 109.371994, + 334.0, + 3.9960022, + 12.642 + ], + [ + 113.368, + 334.0, + 6.671997, + 12.642 + ], + [ + 120.051994, + 334.0, + 3.9960022, + 12.642 + ], + [ + 124.048, + 334.0, + 3.9959946, + 12.642 + ], + [ + 200.8, + 334.0, + 8.664001, + 12.642 + ], + [ + 209.488, + 334.0, + 3.9960022, + 12.642 + ], + [ + 212.78801, + 334.0, + 3.0, + 12.642 + ], + [ + 218.09201, + 334.0, + 8.664001, + 12.642 + ], + [ + 226.78001, + 334.0, + 3.3240051, + 12.642 + ], + [ + 230.08002, + 334.0, + 5.3159943, + 12.642 + ], + [ + 235.38402, + 334.0, + 6.0, + 12.642 + ], + [ + 244.38402, + 334.0, + 8.664001, + 12.642 + ], + [ + 253.07202, + 334.0, + 3.9960022, + 12.642 + ], + [ + 257.06802, + 334.0, + 5.3160095, + 12.642 + ], + [ + 262.37204, + 334.0, + 6.0, + 12.642 + ], + [ + 268.37204, + 334.0, + 3.3240051, + 12.642 + ] + ] + }, + { + "id": 73, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 15, + 16, + 17, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 28, + 29 + ], + "positions": [ + [ + 56.8, + 306.4, + 8.663998, + 12.642 + ], + [ + 65.488, + 306.4, + 9.3239975, + 12.642 + ], + [ + 74.787994, + 306.4, + 11.316002, + 12.642 + ], + [ + 86.091995, + 306.4, + 7.3199997, + 12.642 + ], + [ + 93.38799, + 306.4, + 7.991997, + 12.642 + ], + [ + 101.37999, + 306.4, + 7.991997, + 12.642 + ], + [ + 109.37199, + 306.4, + 7.991997, + 12.642 + ], + [ + 117.36398, + 306.4, + 4.6679993, + 12.642 + ], + [ + 122.055984, + 306.4, + 9.324005, + 12.642 + ], + [ + 131.35599, + 306.4, + 8.664001, + 12.642 + ], + [ + 143.04399, + 306.4, + 8.664001, + 12.642 + ], + [ + 151.732, + 306.4, + 8.664001, + 12.642 + ], + [ + 159.43599, + 306.4, + 7.9920044, + 12.642 + ], + [ + 167.428, + 306.4, + 7.9920044, + 12.642 + ], + [ + 175.42, + 306.4, + 3.9960022, + 12.642 + ], + [ + 200.8, + 306.4, + 6.0, + 12.642 + ], + [ + 206.8, + 306.4, + 6.0, + 12.642 + ], + [ + 215.8, + 306.4, + 8.664001, + 12.642 + ], + [ + 224.488, + 306.4, + 5.3159943, + 12.642 + ], + [ + 229.792, + 306.4, + 5.3159943, + 12.642 + ], + [ + 235.09601, + 306.4, + 5.3159943, + 12.642 + ], + [ + 240.40001, + 306.4, + 9.324005, + 12.642 + ], + [ + 249.70001, + 306.4, + 6.0, + 12.642 + ], + [ + 255.70001, + 306.4, + 5.3160095, + 12.642 + ], + [ + 261.00403, + 306.4, + 3.9960022, + 12.642 + ], + [ + 268.09604, + 306.4, + 6.0, + 12.642 + ], + [ + 274.09604, + 306.4, + 6.0, + 12.642 + ], + [ + 280.09604, + 306.4, + 6.0, + 12.642 + ], + [ + 286.09604, + 306.4, + 6.0, + 12.642 + ] + ] + }, + { + "id": 74, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 62, + 63 + ], + "positions": [ + [ + 56.8, + 242.20001, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 242.20001, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 106.89461, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 110.88491, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 118.68221, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 126.479515, + 242.20001, + 3.905693, + 13.867801 + ], + [ + 130.4698, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 138.2671, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 146.0644, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 150.0547, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 157.852, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 165.8, + 242.20001, + 4.6952972, + 13.867801 + ], + [ + 174.4, + 242.20001, + 4.6952972, + 13.867801 + ], + [ + 179.09529, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 186.8926, + 242.20001, + 8.600998, + 13.867801 + ], + [ + 195.49359, + 242.20001, + 8.600998, + 13.867801 + ], + [ + 204.09459, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 208.00029, + 242.20001, + 4.6952972, + 13.867801 + ], + [ + 212.69559, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 216.60129, + 242.20001, + 8.600998, + 13.867801 + ], + [ + 225.28688, + 242.20001, + 8.600998, + 13.867801 + ], + [ + 233.88788, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 241.68518, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 245.59088, + 242.20001, + 4.6952972, + 13.867801 + ], + [ + 254.27647, + 242.20001, + 8.600998, + 13.867801 + ], + [ + 262.87747, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 270.67477, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 279.2758, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 287.0731, + 242.20001, + 4.6953125, + 13.867801 + ], + [ + 291.7684, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 295.7587, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 303.556, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 315.3436, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 322.9435, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 330.7408, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 338.53812, + 242.20001, + 4.6953125, + 13.867801 + ], + [ + 347.22372, + 242.20001, + 4.6953125, + 13.867801 + ], + [ + 351.91904, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 360.42136, + 242.20001, + 5.484894, + 13.867801 + ], + [ + 369.89655, + 242.20001, + 9.3905945, + 13.867801 + ], + [ + 379.28714, + 242.20001, + 4.6953125, + 13.867801 + ], + [ + 383.98245, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 392.58347, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 401.18448, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 412.97208, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 420.76938, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 429.3704, + 242.20001, + 12.534912, + 13.867801 + ], + [ + 441.8771, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 450.47812, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 454.4684, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 462.26572, + 242.20001, + 4.6953125, + 13.867801 + ], + [ + 466.96103, + 242.20001, + 3.9057007, + 13.867801 + ], + [ + 470.86673, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 479.46774, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 492.05905, + 242.20001, + 8.601013, + 13.867801 + ], + [ + 500.66006, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 508.45737, + 242.20001, + 4.695282, + 13.867801 + ], + [ + 513.15265, + 242.20001, + 7.8395996, + 13.867801 + ], + [ + 521.03455, + 242.20001, + 7.8395996, + 13.867801 + ] + ] + }, + { + "id": 75, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 30 + ], + "positions": [ + [ + 56.8, + 223.9, + 6.66, + 11.535 + ], + [ + 63.399998, + 223.9, + 4.999996, + 11.535 + ], + [ + 70.899994, + 223.9, + 6.0999985, + 11.535 + ], + [ + 76.99999, + 223.9, + 4.4300003, + 11.535 + ], + [ + 81.399994, + 223.9, + 5.0, + 11.535 + ], + [ + 86.399994, + 223.9, + 5.0, + 11.535 + ], + [ + 91.48999, + 223.9, + 4.4300003, + 11.535 + ], + [ + 95.88999, + 223.9, + 2.7699966, + 11.535 + ], + [ + 98.679985, + 223.9, + 2.7699966, + 11.535 + ], + [ + 101.46998, + 223.9, + 5.0, + 11.535 + ], + [ + 106.46998, + 223.9, + 5.0, + 11.535 + ], + [ + 113.96998, + 223.9, + 3.8899994, + 11.535 + ], + [ + 117.85998, + 223.9, + 5.0, + 11.535 + ], + [ + 122.85998, + 223.9, + 5.0, + 11.535 + ], + [ + 127.85998, + 223.9, + 5.0000076, + 11.535 + ], + [ + 132.85999, + 223.9, + 2.7700043, + 11.535 + ], + [ + 135.65, + 223.9, + 5.0, + 11.535 + ], + [ + 143.15, + 223.9, + 5.0, + 11.535 + ], + [ + 148.15, + 223.9, + 4.4299927, + 11.535 + ], + [ + 155.04999, + 223.9, + 5.0, + 11.535 + ], + [ + 160.04999, + 223.9, + 5.0, + 11.535 + ], + [ + 165.04999, + 223.9, + 5.0, + 11.535 + ], + [ + 170.04999, + 223.9, + 4.4299927, + 11.535 + ], + [ + 174.44998, + 223.9, + 5.0, + 11.535 + ], + [ + 179.44998, + 223.9, + 3.8899994, + 11.535 + ], + [ + 183.33998, + 223.9, + 3.8899994, + 11.535 + ], + [ + 189.72998, + 223.9, + 5.0, + 11.535 + ], + [ + 194.72998, + 223.9, + 4.4299927, + 11.535 + ], + [ + 199.12997, + 223.9, + 3.8899994, + 11.535 + ], + [ + 202.72998, + 223.9, + 4.4299927, + 11.535 + ] + ] + }, + { + "id": 76, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 34, + 35, + 36 + ], + "positions": [ + [ + 56.8, + 196.70004, + 6.672001, + 12.642 + ], + [ + 63.484, + 196.70004, + 3.3239975, + 12.642 + ], + [ + 66.784, + 196.70004, + 6.0, + 12.642 + ], + [ + 72.784, + 196.70004, + 6.0, + 12.642 + ], + [ + 78.784, + 196.70004, + 6.0, + 12.642 + ], + [ + 87.784, + 196.70004, + 7.991997, + 12.642 + ], + [ + 95.77599, + 196.70004, + 5.316002, + 12.642 + ], + [ + 101.079994, + 196.70004, + 6.0, + 12.642 + ], + [ + 107.079994, + 196.70004, + 6.0, + 12.642 + ], + [ + 113.079994, + 196.70004, + 3.9960022, + 12.642 + ], + [ + 117.076, + 196.70004, + 3.3239975, + 12.642 + ], + [ + 120.37599, + 196.70004, + 6.0, + 12.642 + ], + [ + 126.37599, + 196.70004, + 6.0, + 12.642 + ], + [ + 132.37599, + 196.70004, + 6.0, + 12.642 + ], + [ + 56.8, + 182.90005, + 8.663998, + 12.642 + ], + [ + 65.404, + 182.90005, + 8.664001, + 12.642 + ], + [ + 74.092, + 182.90005, + 7.991997, + 12.642 + ], + [ + 82.084, + 182.90005, + 9.3239975, + 12.642 + ], + [ + 91.383995, + 182.90005, + 9.3239975, + 12.642 + ], + [ + 100.68399, + 182.90005, + 8.664001, + 12.642 + ], + [ + 109.371994, + 182.90005, + 3.9960022, + 12.642 + ], + [ + 113.368, + 182.90005, + 6.671997, + 12.642 + ], + [ + 120.051994, + 182.90005, + 3.9960022, + 12.642 + ], + [ + 124.048, + 182.90005, + 3.9959946, + 12.642 + ], + [ + 236.8, + 182.90005, + 8.664001, + 12.642 + ], + [ + 245.488, + 182.90005, + 3.9960022, + 12.642 + ], + [ + 248.78801, + 182.90005, + 3.0, + 12.642 + ], + [ + 254.09201, + 182.90005, + 8.664001, + 12.642 + ], + [ + 262.78, + 182.90005, + 3.3240051, + 12.642 + ], + [ + 266.08002, + 182.90005, + 5.3160095, + 12.642 + ], + [ + 271.38403, + 182.90005, + 6.0, + 12.642 + ], + [ + 280.38403, + 182.90005, + 8.664001, + 12.642 + ], + [ + 289.07202, + 182.90005, + 3.9960022, + 12.642 + ], + [ + 293.06802, + 182.90005, + 5.3160095, + 12.642 + ], + [ + 298.37204, + 182.90005, + 6.0, + 12.642 + ], + [ + 304.37204, + 182.90005, + 3.3240051, + 12.642 + ] + ] + }, + { + "id": 77, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 38, + 39, + 39, + 40, + 41, + 42, + 42, + 43, + 44, + 45, + 46, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 53, + 54, + 55, + 56, + 57, + 57, + 58, + 59, + 60, + 61, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 106.89461, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 110.88491, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 118.68221, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 126.6, + 692.1, + 4.695305, + 13.867801 + ], + [ + 135.2, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 139.1057, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 147.7067, + 692.1, + 8.600998, + 13.867801 + ], + [ + 155.3066, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 163.1039, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 170.9012, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 179.58679, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 187.3841, + 692.1, + 8.600998, + 13.867801 + ], + [ + 195.98509, + 692.1, + 8.600998, + 13.867801 + ], + [ + 204.58609, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 209.28139, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 217.07869, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 221.06898, + 692.1, + 8.600998, + 13.867801 + ], + [ + 229.66998, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 241.45758, + 692.1, + 6.6833954, + 13.867801 + ], + [ + 248.14098, + 692.1, + 9.39061, + 13.867801 + ], + [ + 257.5316, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 265.3289, + 692.1, + 5.484894, + 13.867801 + ], + [ + 270.81378, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 275.5091, + 692.1, + 8.601013, + 13.867801 + ], + [ + 284.1101, + 692.1, + 5.484894, + 13.867801 + ], + [ + 289.595, + 692.1, + 12.534912, + 13.867801 + ], + [ + 302.1017, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 306.00742, + 692.1, + 8.601013, + 13.867801 + ], + [ + 314.60843, + 692.1, + 8.601013, + 13.867801 + ], + [ + 327.19974, + 692.1, + 8.601013, + 13.867801 + ], + [ + 335.80075, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 343.59805, + 692.1, + 8.601013, + 13.867801 + ], + [ + 352.19907, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 362.78818, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 370.67007, + 692.1, + 8.601013, + 13.867801 + ], + [ + 379.2711, + 692.1, + 8.601013, + 13.867801 + ], + [ + 391.7778, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 398.4612, + 692.1, + 8.601013, + 13.867801 + ], + [ + 407.06223, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 414.85953, + 692.1, + 8.601013, + 13.867801 + ], + [ + 427.45084, + 692.1, + 9.3905945, + 13.867801 + ], + [ + 436.84143, + 692.1, + 5.484894, + 13.867801 + ], + [ + 442.32632, + 692.1, + 8.601013, + 13.867801 + ], + [ + 450.92734, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 454.83304, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 462.71494, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 470.51224, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 479.11325, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 483.01895, + 692.1, + 10.180206, + 13.867801 + ], + [ + 493.19916, + 692.1, + 6.6834106, + 13.867801 + ], + [ + 499.88257, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 507.69397, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 512.3893, + 692.1, + 8.601013, + 13.867801 + ], + [ + 520.9903, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 528.8722, + 692.1, + 8.601013, + 13.867801 + ], + [ + 56.8, + 675.9, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 74.777504, + 675.9, + 8.600998, + 13.867801 + ], + [ + 83.3785, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 91.2604, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 99.0577, + 675.9, + 4.6952972, + 13.867801 + ], + [ + 107.6587, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 115.456, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 123.3379, + 675.9, + 7.8396072, + 13.867801 + ], + [ + 131.13521, + 675.9, + 5.484894, + 13.867801 + ], + [ + 136.6201, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 144.4174, + 675.9, + 4.6952972, + 13.867801 + ], + [ + 149.1127, + 675.9, + 8.600998, + 13.867801 + ], + [ + 157.7137, + 675.9, + 3.9057007, + 13.867801 + ], + [ + 161.704, + 675.9, + 8.600998, + 13.867801 + ], + [ + 170.305, + 675.9, + 8.600998, + 13.867801 + ], + [ + 182.81169, + 675.9, + 8.600998, + 13.867801 + ], + [ + 191.41269, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 199.20999, + 675.9, + 4.6952972, + 13.867801 + ], + [ + 203.90529, + 675.9, + 10.955704, + 13.867801 + ], + [ + 214.88919, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 222.77109, + 675.9, + 7.8395996, + 13.867801 + ], + [ + 230.56839, + 675.9, + 8.600998, + 13.867801 + ] + ] + }, + { + "id": 78, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 657.6, + 6.1000023, + 11.535 + ], + [ + 62.9, + 657.6, + 4.4300003, + 11.535 + ], + [ + 67.3, + 657.6, + 5.0, + 11.535 + ], + [ + 72.3, + 657.6, + 5.0, + 11.535 + ], + [ + 77.3, + 657.6, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 657.6, + 2.7699966, + 11.535 + ], + [ + 86.99, + 657.6, + 6.659996, + 11.535 + ], + [ + 93.67999, + 657.6, + 5.0, + 11.535 + ], + [ + 98.67999, + 657.6, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 657.6, + 5.0, + 11.535 + ], + [ + 110.66999, + 657.6, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 657.6, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 657.6, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 657.6, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 657.6, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 657.6, + 5.0, + 11.535 + ], + [ + 136.14998, + 657.6, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 657.6, + 5.0, + 11.535 + ], + [ + 145.03998, + 657.6, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 657.6, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 657.6, + 5.0, + 11.535 + ], + [ + 159.72998, + 657.6, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 657.6, + 5.0, + 11.535 + ], + [ + 167.51999, + 657.6, + 5.0, + 11.535 + ], + [ + 172.51999, + 657.6, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 657.6, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 657.6, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 657.6, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 657.6, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 657.6, + 3.8899994, + 11.535 + ], + [ + 56.8, + 646.0, + 6.1000023, + 11.535 + ], + [ + 62.9, + 646.0, + 4.4300003, + 11.535 + ], + [ + 67.3, + 646.0, + 5.0, + 11.535 + ], + [ + 72.3, + 646.0, + 5.0, + 11.535 + ], + [ + 77.3, + 646.0, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 646.0, + 2.7699966, + 11.535 + ], + [ + 86.99, + 646.0, + 6.659996, + 11.535 + ], + [ + 93.67999, + 646.0, + 5.0, + 11.535 + ], + [ + 98.67999, + 646.0, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 646.0, + 5.0, + 11.535 + ], + [ + 110.66999, + 646.0, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 646.0, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 646.0, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 646.0, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 646.0, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 646.0, + 5.0, + 11.535 + ], + [ + 136.14998, + 646.0, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 646.0, + 5.0, + 11.535 + ], + [ + 145.03998, + 646.0, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 646.0, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 646.0, + 5.0, + 11.535 + ], + [ + 159.72998, + 646.0, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 646.0, + 5.0, + 11.535 + ], + [ + 167.51999, + 646.0, + 5.0, + 11.535 + ], + [ + 172.51999, + 646.0, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 646.0, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 646.0, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 646.0, + 6.6600037, + 11.535 + ], + [ + 195.29, + 646.0, + 5.0, + 11.535 + ] + ] + }, + { + "id": 79, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "positions": [ + [ + 56.8, + 618.8, + 6.672001, + 12.642 + ], + [ + 63.484, + 618.8, + 3.3239975, + 12.642 + ], + [ + 66.784, + 618.8, + 6.0, + 12.642 + ], + [ + 72.784, + 618.8, + 6.0, + 12.642 + ], + [ + 78.784, + 618.8, + 6.0, + 12.642 + ], + [ + 87.784, + 618.8, + 7.991997, + 12.642 + ], + [ + 95.77599, + 618.8, + 5.316002, + 12.642 + ], + [ + 101.079994, + 618.8, + 6.0, + 12.642 + ], + [ + 107.079994, + 618.8, + 6.0, + 12.642 + ], + [ + 113.079994, + 618.8, + 3.9960022, + 12.642 + ], + [ + 117.076, + 618.8, + 3.3239975, + 12.642 + ], + [ + 120.37599, + 618.8, + 6.0, + 12.642 + ], + [ + 126.37599, + 618.8, + 6.0, + 12.642 + ], + [ + 132.37599, + 618.8, + 6.0, + 12.642 + ], + [ + 56.8, + 605.0, + 7.3200035, + 12.642 + ], + [ + 64.096, + 605.0, + 7.991997, + 12.642 + ], + [ + 72.088, + 605.0, + 8.664001, + 12.642 + ], + [ + 80.776, + 605.0, + 7.3199997, + 12.642 + ], + [ + 88.072, + 605.0, + 9.3239975, + 12.642 + ], + [ + 97.371994, + 605.0, + 8.664001, + 12.642 + ], + [ + 106.06, + 605.0, + 11.316002, + 12.642 + ], + [ + 117.364, + 605.0, + 4.6679993, + 12.642 + ], + [ + 122.056, + 605.0, + 8.664001, + 12.642 + ], + [ + 130.744, + 605.0, + 9.324005, + 12.642 + ], + [ + 143.044, + 605.0, + 7.9920044, + 12.642 + ], + [ + 151.03601, + 605.0, + 8.664001, + 12.642 + ], + [ + 159.72401, + 605.0, + 7.9920044, + 12.642 + ], + [ + 167.71602, + 605.0, + 9.324005, + 12.642 + ], + [ + 177.01602, + 605.0, + 8.664001, + 12.642 + ], + [ + 185.62003, + 605.0, + 8.664001, + 12.642 + ], + [ + 193.42003, + 605.0, + 7.9920044, + 12.642 + ], + [ + 201.22003, + 605.0, + 9.324005, + 12.642 + ], + [ + 210.60403, + 605.0, + 8.664001, + 12.642 + ], + [ + 218.80003, + 605.0, + 8.664001, + 12.642 + ], + [ + 226.39604, + 605.0, + 3.9960022, + 12.642 + ], + [ + 236.8, + 605.0, + 8.664001, + 12.642 + ], + [ + 245.488, + 605.0, + 9.324005, + 12.642 + ], + [ + 254.78801, + 605.0, + 6.0000153, + 12.642 + ], + [ + 260.78802, + 605.0, + 3.9960022, + 12.642 + ], + [ + 264.78403, + 605.0, + 5.3160095, + 12.642 + ], + [ + 270.08804, + 605.0, + 3.3240051, + 12.642 + ], + [ + 273.38806, + 605.0, + 3.3240051, + 12.642 + ], + [ + 276.68808, + 605.0, + 5.3160095, + 12.642 + ], + [ + 285.07608, + 605.0, + 7.9920044, + 12.642 + ], + [ + 293.06808, + 605.0, + 6.0, + 12.642 + ], + [ + 299.06808, + 605.0, + 3.9960022, + 12.642 + ], + [ + 303.0641, + 605.0, + 6.0, + 12.642 + ], + [ + 309.0641, + 605.0, + 6.0, + 12.642 + ], + [ + 315.0641, + 605.0, + 3.9960022, + 12.642 + ], + [ + 319.0601, + 605.0, + 5.3160095, + 12.642 + ], + [ + 324.3641, + 605.0, + 3.3240051, + 12.642 + ], + [ + 327.66412, + 605.0, + 3.3240051, + 12.642 + ], + [ + 330.96414, + 605.0, + 6.0, + 12.642 + ], + [ + 336.96414, + 605.0, + 6.0, + 12.642 + ], + [ + 56.8, + 591.2, + 7.9920006, + 12.642 + ], + [ + 64.696, + 591.2, + 8.664001, + 12.642 + ], + [ + 73.384, + 591.2, + 7.991997, + 12.642 + ], + [ + 81.376, + 591.2, + 9.3239975, + 12.642 + ], + [ + 90.675995, + 591.2, + 8.664001, + 12.642 + ], + [ + 99.364, + 591.2, + 8.664001, + 12.642 + ], + [ + 107.164, + 591.2, + 7.991997, + 12.642 + ], + [ + 114.964, + 591.2, + 9.3239975, + 12.642 + ], + [ + 124.26399, + 591.2, + 8.664001, + 12.642 + ], + [ + 132.45999, + 591.2, + 8.664001, + 12.642 + ], + [ + 143.76399, + 591.2, + 7.3200073, + 12.642 + ], + [ + 151.06, + 591.2, + 8.664001, + 12.642 + ], + [ + 159.748, + 591.2, + 9.324005, + 12.642 + ], + [ + 169.048, + 591.2, + 6.0, + 12.642 + ], + [ + 175.048, + 591.2, + 7.9920044, + 12.642 + ], + [ + 183.04001, + 591.2, + 8.664001, + 12.642 + ], + [ + 191.72801, + 591.2, + 7.9920044, + 12.642 + ], + [ + 202.52802, + 591.2, + 4.6679993, + 12.642 + ], + [ + 207.12401, + 591.2, + 8.664001, + 12.642 + ], + [ + 215.81201, + 591.2, + 3.9960022, + 12.642 + ], + [ + 236.8, + 591.2, + 8.664001, + 12.642 + ], + [ + 245.404, + 591.2, + 6.0, + 12.642 + ], + [ + 251.404, + 591.2, + 9.32399, + 12.642 + ], + [ + 260.704, + 591.2, + 6.0, + 12.642 + ], + [ + 266.78802, + 591.2, + 5.3160095, + 12.642 + ], + [ + 272.09204, + 591.2, + 3.9960022, + 12.642 + ], + [ + 279.08804, + 591.2, + 6.0, + 12.642 + ], + [ + 285.08804, + 591.2, + 6.0, + 12.642 + ], + [ + 291.08804, + 591.2, + 6.0, + 12.642 + ], + [ + 297.08804, + 591.2, + 6.0, + 12.642 + ], + [ + 303.08804, + 591.2, + 6.0, + 12.642 + ], + [ + 309.08804, + 591.2, + 3.3240051, + 12.642 + ], + [ + 312.38806, + 591.2, + 6.0, + 12.642 + ], + [ + 318.38806, + 591.2, + 6.0, + 12.642 + ], + [ + 324.38806, + 591.2, + 6.0, + 12.642 + ], + [ + 330.38806, + 591.2, + 6.0, + 12.642 + ], + [ + 336.38806, + 591.2, + 6.0, + 12.642 + ], + [ + 342.38806, + 591.2, + 3.3240051, + 12.642 + ], + [ + 345.77206, + 591.2, + 7.3200073, + 12.642 + ], + [ + 353.06808, + 591.2, + 7.9920044, + 12.642 + ], + [ + 361.0601, + 591.2, + 7.3200073, + 12.642 + ], + [ + 368.3561, + 591.2, + 8.664001, + 12.642 + ], + [ + 375.7601, + 591.2, + 7.3200073, + 12.642 + ], + [ + 383.05612, + 591.2, + 3.3240051, + 12.642 + ], + [ + 386.35614, + 591.2, + 6.0, + 12.642 + ], + [ + 392.35614, + 591.2, + 6.0, + 12.642 + ] + ] + }, + { + "id": 80, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 527.0, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 527.0, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 527.0, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 106.89461, + 527.0, + 3.9057007, + 13.867801 + ], + [ + 110.88491, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 118.68221, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 126.479515, + 527.0, + 3.905693, + 13.867801 + ], + [ + 130.4698, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 138.2671, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 146.0644, + 527.0, + 3.9057007, + 13.867801 + ], + [ + 150.0547, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 157.852, + 527.0, + 7.8395996, + 13.867801 + ], + [ + 165.6493, + 527.0, + 4.6952972, + 13.867801 + ], + [ + 174.3349, + 527.0, + 8.600998, + 13.867801 + ], + [ + 182.9359, + 527.0, + 8.600998, + 13.867801 + ] + ] + }, + { + "id": 81, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3 + ], + "positions": [ + [ + 56.8, + 493.0, + 7.3200035, + 12.642 + ], + [ + 64.096, + 493.0, + 6.0, + 12.642 + ], + [ + 70.096, + 493.0, + 5.316002, + 12.642 + ] + ] + }, + { + "id": 82, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17 + ], + "positions": [ + [ + 56.8, + 428.8, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 428.8, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 428.8, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 428.8, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 428.8, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 428.8, + 7.8395996, + 13.867801 + ], + [ + 107.0, + 428.8, + 4.6952972, + 13.867801 + ], + [ + 115.6, + 428.8, + 9.390602, + 13.867801 + ], + [ + 124.9906, + 428.8, + 8.600998, + 13.867801 + ], + [ + 133.5916, + 428.8, + 5.484894, + 13.867801 + ], + [ + 139.07649, + 428.8, + 3.9057007, + 13.867801 + ], + [ + 142.9822, + 428.8, + 4.6952972, + 13.867801 + ], + [ + 147.67749, + 428.8, + 7.8395996, + 13.867801 + ], + [ + 159.46509, + 428.8, + 10.180206, + 13.867801 + ], + [ + 169.6453, + 428.8, + 3.9057007, + 13.867801 + ], + [ + 173.551, + 428.8, + 8.600998, + 13.867801 + ], + [ + 182.152, + 428.8, + 4.6952972, + 13.867801 + ] + ] + }, + { + "id": 83, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 11, + 12, + 13, + 14, + 15, + 15, + 16, + 17, + 18, + 19, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41 + ], + "positions": [ + [ + 56.8, + 410.5, + 6.1000023, + 11.535 + ], + [ + 62.9, + 410.5, + 5.0, + 11.535 + ], + [ + 67.9, + 410.5, + 5.0, + 11.535 + ], + [ + 75.4, + 410.5, + 6.0999985, + 11.535 + ], + [ + 81.5, + 410.5, + 5.0, + 11.535 + ], + [ + 86.5, + 410.5, + 3.8899994, + 11.535 + ], + [ + 90.39, + 410.5, + 2.7699966, + 11.535 + ], + [ + 93.09, + 410.5, + 2.7699966, + 11.535 + ], + [ + 95.87999, + 410.5, + 4.4300003, + 11.535 + ], + [ + 102.86999, + 410.5, + 5.0, + 11.535 + ], + [ + 107.86999, + 410.5, + 3.8899994, + 11.535 + ], + [ + 114.25999, + 410.5, + 7.220001, + 11.535 + ], + [ + 121.45999, + 410.5, + 2.7699966, + 11.535 + ], + [ + 124.249985, + 410.5, + 5.0, + 11.535 + ], + [ + 129.14998, + 410.5, + 2.7700043, + 11.535 + ], + [ + 134.43999, + 410.5, + 6.6600037, + 11.535 + ], + [ + 141.12999, + 410.5, + 5.0, + 11.535 + ], + [ + 146.12999, + 410.5, + 4.4299927, + 11.535 + ], + [ + 150.52998, + 410.5, + 5.0, + 11.535 + ], + [ + 158.11998, + 410.5, + 6.100006, + 11.535 + ], + [ + 164.21999, + 410.5, + 4.4299927, + 11.535 + ], + [ + 168.61998, + 410.5, + 3.8899994, + 11.535 + ], + [ + 172.11998, + 410.5, + 4.4299927, + 11.535 + ], + [ + 176.60997, + 410.5, + 4.4299927, + 11.535 + ], + [ + 181.00996, + 410.5, + 5.0, + 11.535 + ], + [ + 186.00996, + 410.5, + 2.7700043, + 11.535 + ], + [ + 188.79997, + 410.5, + 3.3300018, + 11.535 + ], + [ + 192.09998, + 410.5, + 6.6600037, + 11.535 + ], + [ + 198.78998, + 410.5, + 5.0, + 11.535 + ], + [ + 203.78998, + 410.5, + 7.220001, + 11.535 + ], + [ + 210.98997, + 410.5, + 5.0, + 11.535 + ], + [ + 215.98997, + 410.5, + 4.4299927, + 11.535 + ], + [ + 220.38997, + 410.5, + 3.8899994, + 11.535 + ], + [ + 224.27997, + 410.5, + 3.8899994, + 11.535 + ], + [ + 230.66997, + 410.5, + 2.7700043, + 11.535 + ], + [ + 233.45998, + 410.5, + 3.8899994, + 11.535 + ], + [ + 239.84998, + 410.5, + 2.7700043, + 11.535 + ], + [ + 242.63998, + 410.5, + 5.0, + 11.535 + ], + [ + 247.63998, + 410.5, + 4.4299927, + 11.535 + ], + [ + 252.03998, + 410.5, + 3.8899994, + 11.535 + ], + [ + 255.53998, + 410.5, + 4.4299927, + 11.535 + ] + ] + }, + { + "id": 84, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 23, + 24, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 78, + 79, + 80, + 80, + 81, + 82, + 83, + 84, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 91, + 92, + 93, + 94, + 95, + 95, + 96, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 102, + 103, + 104, + 104, + 105, + 106, + 106, + 107, + 108, + 109, + 110, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 117, + 118, + 119, + 120, + 121, + 121, + 122, + 122, + 123, + 124, + 124, + 125, + 126, + 127, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 142, + 143, + 144, + 145, + 146, + 147, + 147, + 148, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 154, + 155, + 156, + 156, + 157, + 158, + 159, + 159, + 160, + 161, + 162, + 163, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 194, + 195, + 196, + 197, + 198, + 199, + 199, + 200, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 206, + 207, + 208, + 208, + 209, + 210, + 211, + 211, + 212, + 213, + 214, + 215, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 246, + 247, + 248, + 248, + 249, + 250, + 251, + 251, + 252, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 258, + 259, + 260, + 260, + 261, + 262, + 263, + 263, + 264, + 265, + 266, + 267, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 298, + 299, + 300, + 301, + 301, + 302, + 303, + 303, + 304, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 310, + 311, + 312, + 312, + 313, + 314, + 315, + 315, + 316, + 317, + 318, + 319, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 350, + 351, + 352, + 353, + 354, + 355, + 355, + 356, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 362, + 363, + 364, + 364, + 365, + 366, + 367, + 367, + 368, + 369, + 370, + 371, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 402, + 403, + 404, + 405, + 406, + 407, + 407, + 408, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 414, + 415, + 416, + 416, + 417, + 418, + 419, + 419, + 420, + 421, + 422, + 423, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 475, + 476, + 477, + 478, + 478, + 479, + 479, + 480, + 481, + 482, + 482, + 483, + 484, + 485, + 486, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 493, + 494, + 495, + 496, + 497, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 513, + 514, + 515, + 516, + 517, + 517, + 518, + 518, + 519, + 520, + 521, + 521, + 522, + 523, + 524, + 525, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 532, + 533, + 534, + 535, + 536, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 552, + 553, + 554, + 555, + 556, + 556, + 557, + 557, + 558, + 559, + 560, + 560, + 561, + 562, + 563, + 564, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 571, + 572, + 573, + 574, + 575, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603 + ], + "positions": [ + [ + 56.8, + 383.3, + 7.3200035, + 12.642 + ], + [ + 63.304, + 383.3, + 5.316002, + 12.642 + ], + [ + 68.608, + 383.3, + 4.6679993, + 12.642 + ], + [ + 73.3, + 383.3, + 3.3239975, + 12.642 + ], + [ + 79.6, + 383.3, + 3.9960022, + 12.642 + ], + [ + 83.596, + 383.3, + 3.3239975, + 12.642 + ], + [ + 86.895996, + 383.3, + 5.316002, + 12.642 + ], + [ + 92.2, + 383.3, + 9.3239975, + 12.642 + ], + [ + 101.58399, + 383.3, + 3.3239975, + 12.642 + ], + [ + 164.8, + 383.3, + 6.671997, + 12.642 + ], + [ + 171.484, + 383.3, + 6.0, + 12.642 + ], + [ + 177.484, + 383.3, + 6.0, + 12.642 + ], + [ + 183.484, + 383.3, + 5.3159943, + 12.642 + ], + [ + 56.8, + 369.5, + 6.672001, + 12.642 + ], + [ + 63.484, + 369.5, + 6.0, + 12.642 + ], + [ + 69.484, + 369.5, + 3.9960022, + 12.642 + ], + [ + 73.48, + 369.5, + 3.3239975, + 12.642 + ], + [ + 76.78, + 369.5, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 369.5, + 6.0, + 12.642 + ], + [ + 86.079994, + 369.5, + 3.3239975, + 12.642 + ], + [ + 164.8, + 369.5, + 6.0, + 12.642 + ], + [ + 170.8, + 369.5, + 6.0, + 12.642 + ], + [ + 176.8, + 369.5, + 9.996002, + 12.642 + ], + [ + 201.796, + 369.5, + 12.0, + 12.642 + ], + [ + 216.796, + 369.5, + 4.6679993, + 12.642 + ], + [ + 221.392, + 369.5, + 6.0, + 12.642 + ], + [ + 227.392, + 369.5, + 6.0, + 12.642 + ], + [ + 233.392, + 369.5, + 6.0, + 12.642 + ], + [ + 239.392, + 369.5, + 3.3240051, + 12.642 + ], + [ + 242.692, + 369.5, + 6.0, + 12.642 + ], + [ + 251.776, + 369.5, + 6.0, + 12.642 + ], + [ + 257.776, + 369.5, + 5.3160095, + 12.642 + ], + [ + 266.08002, + 369.5, + 8.664001, + 12.642 + ], + [ + 274.768, + 369.5, + 3.3240051, + 12.642 + ], + [ + 278.06802, + 369.5, + 6.0, + 12.642 + ], + [ + 284.06802, + 369.5, + 3.3240051, + 12.642 + ], + [ + 56.8, + 355.7, + 6.672001, + 12.642 + ], + [ + 63.484, + 355.7, + 6.0, + 12.642 + ], + [ + 69.484, + 355.7, + 3.9960022, + 12.642 + ], + [ + 73.48, + 355.7, + 3.3239975, + 12.642 + ], + [ + 76.78, + 355.7, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 355.7, + 6.0, + 12.642 + ], + [ + 86.079994, + 355.7, + 3.3239975, + 12.642 + ], + [ + 164.8, + 355.7, + 6.7559967, + 12.642 + ], + [ + 171.496, + 355.7, + 6.0, + 12.642 + ], + [ + 177.496, + 355.7, + 6.0, + 12.642 + ], + [ + 183.496, + 355.7, + 9.996002, + 12.642 + ], + [ + 208.492, + 355.7, + 12.0, + 12.642 + ], + [ + 223.492, + 355.7, + 4.6679993, + 12.642 + ], + [ + 228.184, + 355.7, + 6.0, + 12.642 + ], + [ + 234.184, + 355.7, + 6.0, + 12.642 + ], + [ + 240.184, + 355.7, + 6.0, + 12.642 + ], + [ + 246.184, + 355.7, + 3.3240051, + 12.642 + ], + [ + 249.48401, + 355.7, + 6.0, + 12.642 + ], + [ + 258.484, + 355.7, + 6.0, + 12.642 + ], + [ + 264.484, + 355.7, + 5.3160095, + 12.642 + ], + [ + 272.872, + 355.7, + 8.664001, + 12.642 + ], + [ + 281.56, + 355.7, + 3.3240051, + 12.642 + ], + [ + 284.86002, + 355.7, + 6.0, + 12.642 + ], + [ + 290.86002, + 355.7, + 3.3240051, + 12.642 + ], + [ + 56.8, + 341.9, + 6.672001, + 12.642 + ], + [ + 63.484, + 341.9, + 6.0, + 12.642 + ], + [ + 69.484, + 341.9, + 3.9960022, + 12.642 + ], + [ + 73.48, + 341.9, + 3.3239975, + 12.642 + ], + [ + 76.78, + 341.9, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 341.9, + 6.0, + 12.642 + ], + [ + 86.079994, + 341.9, + 3.3239975, + 12.642 + ], + [ + 164.8, + 341.9, + 6.7559967, + 12.642 + ], + [ + 171.496, + 341.9, + 6.0, + 12.642 + ], + [ + 177.496, + 341.9, + 6.0, + 12.642 + ], + [ + 183.496, + 341.9, + 9.996002, + 12.642 + ], + [ + 208.492, + 341.9, + 12.0, + 12.642 + ], + [ + 223.492, + 341.9, + 4.6679993, + 12.642 + ], + [ + 228.184, + 341.9, + 6.0, + 12.642 + ], + [ + 234.184, + 341.9, + 6.0, + 12.642 + ], + [ + 240.184, + 341.9, + 6.0, + 12.642 + ], + [ + 246.184, + 341.9, + 3.3240051, + 12.642 + ], + [ + 249.48401, + 341.9, + 6.0, + 12.642 + ], + [ + 258.484, + 341.9, + 6.0, + 12.642 + ], + [ + 264.484, + 341.9, + 5.3160095, + 12.642 + ], + [ + 272.872, + 341.9, + 8.664001, + 12.642 + ], + [ + 281.56, + 341.9, + 3.3240051, + 12.642 + ], + [ + 284.86002, + 341.9, + 6.0, + 12.642 + ], + [ + 290.86002, + 341.9, + 3.3240051, + 12.642 + ], + [ + 56.8, + 328.1, + 6.672001, + 12.642 + ], + [ + 63.484, + 328.1, + 6.0, + 12.642 + ], + [ + 69.484, + 328.1, + 3.9960022, + 12.642 + ], + [ + 73.48, + 328.1, + 3.3239975, + 12.642 + ], + [ + 76.78, + 328.1, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 328.1, + 6.0, + 12.642 + ], + [ + 86.079994, + 328.1, + 3.3239975, + 12.642 + ], + [ + 164.8, + 328.1, + 6.0, + 12.642 + ], + [ + 170.8, + 328.1, + 6.0, + 12.642 + ], + [ + 176.8, + 328.1, + 6.0, + 12.642 + ], + [ + 182.8, + 328.1, + 9.996002, + 12.642 + ], + [ + 207.796, + 328.1, + 12.0, + 12.642 + ], + [ + 222.796, + 328.1, + 4.6679993, + 12.642 + ], + [ + 227.392, + 328.1, + 6.0, + 12.642 + ], + [ + 233.392, + 328.1, + 6.0, + 12.642 + ], + [ + 239.392, + 328.1, + 6.0, + 12.642 + ], + [ + 245.392, + 328.1, + 3.3240051, + 12.642 + ], + [ + 248.692, + 328.1, + 6.0, + 12.642 + ], + [ + 257.776, + 328.1, + 6.0, + 12.642 + ], + [ + 263.776, + 328.1, + 5.3160095, + 12.642 + ], + [ + 272.08002, + 328.1, + 6.0, + 12.642 + ], + [ + 278.08002, + 328.1, + 5.3160095, + 12.642 + ], + [ + 286.38403, + 328.1, + 8.664001, + 12.642 + ], + [ + 295.07202, + 328.1, + 3.3240051, + 12.642 + ], + [ + 298.37204, + 328.1, + 6.0, + 12.642 + ], + [ + 304.37204, + 328.1, + 3.3240051, + 12.642 + ], + [ + 310.75604, + 328.1, + 6.0, + 12.642 + ], + [ + 316.75604, + 328.1, + 5.3160095, + 12.642 + ], + [ + 322.06006, + 328.1, + 5.3160095, + 12.642 + ], + [ + 327.36407, + 328.1, + 5.3160095, + 12.642 + ], + [ + 332.6681, + 328.1, + 6.0, + 12.642 + ], + [ + 338.6681, + 328.1, + 4.6679993, + 12.642 + ], + [ + 343.36008, + 328.1, + 5.3160095, + 12.642 + ], + [ + 351.6641, + 328.1, + 6.756012, + 12.642 + ], + [ + 358.45612, + 328.1, + 6.0, + 12.642 + ], + [ + 364.45612, + 328.1, + 6.0, + 12.642 + ], + [ + 370.45612, + 328.1, + 6.0, + 12.642 + ], + [ + 379.45612, + 328.1, + 9.996002, + 12.642 + ], + [ + 392.45212, + 328.1, + 3.3240051, + 12.642 + ], + [ + 395.75214, + 328.1, + 4.6679993, + 12.642 + ], + [ + 403.44412, + 328.1, + 6.0, + 12.642 + ], + [ + 409.44412, + 328.1, + 6.0, + 12.642 + ], + [ + 415.44412, + 328.1, + 3.3240051, + 12.642 + ], + [ + 421.74414, + 328.1, + 6.0, + 12.642 + ], + [ + 427.74414, + 328.1, + 6.0, + 12.642 + ], + [ + 433.74414, + 328.1, + 4.6679993, + 12.642 + ], + [ + 438.43613, + 328.1, + 4.6679993, + 12.642 + ], + [ + 443.1281, + 328.1, + 3.3240051, + 12.642 + ], + [ + 446.42813, + 328.1, + 6.0, + 12.642 + ], + [ + 452.42813, + 328.1, + 3.3240051, + 12.642 + ], + [ + 455.72815, + 328.1, + 5.3160095, + 12.642 + ], + [ + 56.8, + 314.3, + 6.672001, + 12.642 + ], + [ + 63.484, + 314.3, + 6.0, + 12.642 + ], + [ + 69.484, + 314.3, + 3.9960022, + 12.642 + ], + [ + 73.48, + 314.3, + 3.3239975, + 12.642 + ], + [ + 76.78, + 314.3, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 314.3, + 6.0, + 12.642 + ], + [ + 86.079994, + 314.3, + 3.3239975, + 12.642 + ], + [ + 164.8, + 314.3, + 6.7559967, + 12.642 + ], + [ + 171.496, + 314.3, + 6.7559967, + 12.642 + ], + [ + 178.288, + 314.3, + 6.0, + 12.642 + ], + [ + 184.288, + 314.3, + 6.0, + 12.642 + ], + [ + 190.288, + 314.3, + 9.996002, + 12.642 + ], + [ + 215.284, + 314.3, + 12.0, + 12.642 + ], + [ + 230.284, + 314.3, + 4.6679993, + 12.642 + ], + [ + 234.976, + 314.3, + 6.0, + 12.642 + ], + [ + 240.976, + 314.3, + 6.0, + 12.642 + ], + [ + 246.976, + 314.3, + 6.0, + 12.642 + ], + [ + 252.976, + 314.3, + 3.3239899, + 12.642 + ], + [ + 256.276, + 314.3, + 6.0, + 12.642 + ], + [ + 265.276, + 314.3, + 6.0, + 12.642 + ], + [ + 271.276, + 314.3, + 5.3160095, + 12.642 + ], + [ + 279.58002, + 314.3, + 6.0, + 12.642 + ], + [ + 285.58002, + 314.3, + 6.0, + 12.642 + ], + [ + 291.58002, + 314.3, + 3.3240051, + 12.642 + ], + [ + 297.96402, + 314.3, + 8.664001, + 12.642 + ], + [ + 306.652, + 314.3, + 3.3240051, + 12.642 + ], + [ + 309.95203, + 314.3, + 6.0, + 12.642 + ], + [ + 315.95203, + 314.3, + 3.3240051, + 12.642 + ], + [ + 322.25204, + 314.3, + 6.0, + 12.642 + ], + [ + 328.25204, + 314.3, + 5.3160095, + 12.642 + ], + [ + 333.55606, + 314.3, + 5.3160095, + 12.642 + ], + [ + 338.86008, + 314.3, + 5.3160095, + 12.642 + ], + [ + 344.1641, + 314.3, + 6.0, + 12.642 + ], + [ + 350.1641, + 314.3, + 4.6679993, + 12.642 + ], + [ + 354.85608, + 314.3, + 5.3160095, + 12.642 + ], + [ + 363.24408, + 314.3, + 5.3160095, + 12.642 + ], + [ + 368.5481, + 314.3, + 6.0, + 12.642 + ], + [ + 374.5481, + 314.3, + 6.0, + 12.642 + ], + [ + 380.5481, + 314.3, + 3.3240051, + 12.642 + ], + [ + 383.8481, + 314.3, + 3.3240051, + 12.642 + ], + [ + 387.14813, + 314.3, + 3.3240051, + 12.642 + ], + [ + 390.44815, + 314.3, + 6.0, + 12.642 + ], + [ + 396.44815, + 314.3, + 6.0, + 12.642 + ], + [ + 402.53217, + 314.3, + 5.3160095, + 12.642 + ], + [ + 407.83618, + 314.3, + 3.3240051, + 12.642 + ], + [ + 414.22018, + 314.3, + 4.6679993, + 12.642 + ], + [ + 418.8162, + 314.3, + 6.0, + 12.642 + ], + [ + 424.8162, + 314.3, + 9.324005, + 12.642 + ], + [ + 434.1162, + 314.3, + 6.0, + 12.642 + ], + [ + 440.1162, + 314.3, + 6.0, + 12.642 + ], + [ + 446.1162, + 314.3, + 3.3240051, + 12.642 + ], + [ + 449.41623, + 314.3, + 4.6679993, + 12.642 + ], + [ + 56.8, + 300.5, + 6.672001, + 12.642 + ], + [ + 63.484, + 300.5, + 6.0, + 12.642 + ], + [ + 69.484, + 300.5, + 3.9960022, + 12.642 + ], + [ + 73.48, + 300.5, + 3.3239975, + 12.642 + ], + [ + 76.78, + 300.5, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 300.5, + 6.0, + 12.642 + ], + [ + 86.079994, + 300.5, + 3.3239975, + 12.642 + ], + [ + 164.8, + 300.5, + 6.7559967, + 12.642 + ], + [ + 171.496, + 300.5, + 6.7559967, + 12.642 + ], + [ + 178.288, + 300.5, + 6.0, + 12.642 + ], + [ + 184.288, + 300.5, + 6.0, + 12.642 + ], + [ + 190.288, + 300.5, + 9.996002, + 12.642 + ], + [ + 215.284, + 300.5, + 12.0, + 12.642 + ], + [ + 230.284, + 300.5, + 4.6679993, + 12.642 + ], + [ + 234.976, + 300.5, + 6.0, + 12.642 + ], + [ + 240.976, + 300.5, + 6.0, + 12.642 + ], + [ + 246.976, + 300.5, + 6.0, + 12.642 + ], + [ + 252.976, + 300.5, + 3.3239899, + 12.642 + ], + [ + 256.276, + 300.5, + 6.0, + 12.642 + ], + [ + 265.276, + 300.5, + 6.0, + 12.642 + ], + [ + 271.276, + 300.5, + 5.3160095, + 12.642 + ], + [ + 279.58002, + 300.5, + 6.0, + 12.642 + ], + [ + 285.58002, + 300.5, + 6.0, + 12.642 + ], + [ + 291.58002, + 300.5, + 3.3240051, + 12.642 + ], + [ + 297.96402, + 300.5, + 8.664001, + 12.642 + ], + [ + 306.652, + 300.5, + 3.3240051, + 12.642 + ], + [ + 309.95203, + 300.5, + 6.0, + 12.642 + ], + [ + 315.95203, + 300.5, + 3.3240051, + 12.642 + ], + [ + 322.25204, + 300.5, + 6.0, + 12.642 + ], + [ + 328.25204, + 300.5, + 5.3160095, + 12.642 + ], + [ + 333.55606, + 300.5, + 5.3160095, + 12.642 + ], + [ + 338.86008, + 300.5, + 5.3160095, + 12.642 + ], + [ + 344.1641, + 300.5, + 6.0, + 12.642 + ], + [ + 350.1641, + 300.5, + 4.6679993, + 12.642 + ], + [ + 354.85608, + 300.5, + 5.3160095, + 12.642 + ], + [ + 363.24408, + 300.5, + 5.3160095, + 12.642 + ], + [ + 368.5481, + 300.5, + 6.0, + 12.642 + ], + [ + 374.5481, + 300.5, + 6.0, + 12.642 + ], + [ + 380.5481, + 300.5, + 3.3240051, + 12.642 + ], + [ + 383.8481, + 300.5, + 3.3240051, + 12.642 + ], + [ + 387.14813, + 300.5, + 3.3240051, + 12.642 + ], + [ + 390.44815, + 300.5, + 6.0, + 12.642 + ], + [ + 396.44815, + 300.5, + 6.0, + 12.642 + ], + [ + 402.53217, + 300.5, + 5.3160095, + 12.642 + ], + [ + 407.83618, + 300.5, + 3.3240051, + 12.642 + ], + [ + 414.22018, + 300.5, + 4.6679993, + 12.642 + ], + [ + 418.8162, + 300.5, + 6.0, + 12.642 + ], + [ + 424.8162, + 300.5, + 9.324005, + 12.642 + ], + [ + 434.1162, + 300.5, + 6.0, + 12.642 + ], + [ + 440.1162, + 300.5, + 6.0, + 12.642 + ], + [ + 446.1162, + 300.5, + 3.3240051, + 12.642 + ], + [ + 449.41623, + 300.5, + 4.6679993, + 12.642 + ], + [ + 56.8, + 286.7, + 6.672001, + 12.642 + ], + [ + 63.484, + 286.7, + 6.0, + 12.642 + ], + [ + 69.484, + 286.7, + 3.9960022, + 12.642 + ], + [ + 73.48, + 286.7, + 3.3239975, + 12.642 + ], + [ + 76.78, + 286.7, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 286.7, + 6.0, + 12.642 + ], + [ + 86.079994, + 286.7, + 3.3239975, + 12.642 + ], + [ + 164.8, + 286.7, + 5.3159943, + 12.642 + ], + [ + 170.104, + 286.7, + 5.3159943, + 12.642 + ], + [ + 178.408, + 286.7, + 6.0, + 12.642 + ], + [ + 184.408, + 286.7, + 6.0, + 12.642 + ], + [ + 190.408, + 286.7, + 9.996002, + 12.642 + ], + [ + 215.404, + 286.7, + 12.0, + 12.642 + ], + [ + 230.404, + 286.7, + 4.6679993, + 12.642 + ], + [ + 235.09601, + 286.7, + 6.0, + 12.642 + ], + [ + 241.09601, + 286.7, + 6.0, + 12.642 + ], + [ + 247.09601, + 286.7, + 6.0, + 12.642 + ], + [ + 253.09601, + 286.7, + 3.3240051, + 12.642 + ], + [ + 256.39603, + 286.7, + 6.0, + 12.642 + ], + [ + 265.39603, + 286.7, + 6.0, + 12.642 + ], + [ + 271.39603, + 286.7, + 5.3160095, + 12.642 + ], + [ + 279.78403, + 286.7, + 6.0, + 12.642 + ], + [ + 285.78403, + 286.7, + 6.0, + 12.642 + ], + [ + 291.78403, + 286.7, + 3.3240051, + 12.642 + ], + [ + 298.08405, + 286.7, + 8.664001, + 12.642 + ], + [ + 306.77203, + 286.7, + 3.3240051, + 12.642 + ], + [ + 310.07205, + 286.7, + 6.0, + 12.642 + ], + [ + 316.07205, + 286.7, + 3.3240051, + 12.642 + ], + [ + 322.37207, + 286.7, + 6.0, + 12.642 + ], + [ + 328.37207, + 286.7, + 5.3160095, + 12.642 + ], + [ + 333.6761, + 286.7, + 5.3160095, + 12.642 + ], + [ + 338.9801, + 286.7, + 5.3160095, + 12.642 + ], + [ + 344.28412, + 286.7, + 6.0, + 12.642 + ], + [ + 350.28412, + 286.7, + 4.6679993, + 12.642 + ], + [ + 354.9761, + 286.7, + 5.3160095, + 12.642 + ], + [ + 363.3641, + 286.7, + 5.3160095, + 12.642 + ], + [ + 368.66812, + 286.7, + 6.0, + 12.642 + ], + [ + 374.66812, + 286.7, + 6.0, + 12.642 + ], + [ + 380.66812, + 286.7, + 3.3240051, + 12.642 + ], + [ + 383.96814, + 286.7, + 3.3240051, + 12.642 + ], + [ + 387.35214, + 286.7, + 3.3240051, + 12.642 + ], + [ + 390.65216, + 286.7, + 6.0, + 12.642 + ], + [ + 396.65216, + 286.7, + 6.0, + 12.642 + ], + [ + 402.65216, + 286.7, + 5.3160095, + 12.642 + ], + [ + 407.95618, + 286.7, + 3.3240051, + 12.642 + ], + [ + 414.34018, + 286.7, + 4.6679993, + 12.642 + ], + [ + 418.9362, + 286.7, + 6.0, + 12.642 + ], + [ + 424.9362, + 286.7, + 9.324005, + 12.642 + ], + [ + 434.2362, + 286.7, + 6.0, + 12.642 + ], + [ + 440.2362, + 286.7, + 6.0, + 12.642 + ], + [ + 446.32022, + 286.7, + 3.3240051, + 12.642 + ], + [ + 449.62024, + 286.7, + 4.6679993, + 12.642 + ], + [ + 56.8, + 272.90002, + 6.672001, + 12.642 + ], + [ + 63.484, + 272.90002, + 6.0, + 12.642 + ], + [ + 69.484, + 272.90002, + 3.9960022, + 12.642 + ], + [ + 73.48, + 272.90002, + 3.3239975, + 12.642 + ], + [ + 76.78, + 272.90002, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 272.90002, + 6.0, + 12.642 + ], + [ + 86.079994, + 272.90002, + 3.3239975, + 12.642 + ], + [ + 164.8, + 272.90002, + 6.0, + 12.642 + ], + [ + 170.8, + 272.90002, + 6.0, + 12.642 + ], + [ + 176.8, + 272.90002, + 9.996002, + 12.642 + ], + [ + 189.796, + 272.90002, + 5.3159943, + 12.642 + ], + [ + 195.1, + 272.90002, + 5.3159943, + 12.642 + ], + [ + 215.404, + 272.90002, + 12.0, + 12.642 + ], + [ + 230.404, + 272.90002, + 4.6679993, + 12.642 + ], + [ + 235.09601, + 272.90002, + 6.0, + 12.642 + ], + [ + 241.09601, + 272.90002, + 6.0, + 12.642 + ], + [ + 247.09601, + 272.90002, + 6.0, + 12.642 + ], + [ + 253.09601, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 256.39603, + 272.90002, + 6.0, + 12.642 + ], + [ + 265.39603, + 272.90002, + 6.0, + 12.642 + ], + [ + 271.39603, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 279.78403, + 272.90002, + 6.0, + 12.642 + ], + [ + 285.78403, + 272.90002, + 6.0, + 12.642 + ], + [ + 291.78403, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 298.08405, + 272.90002, + 8.664001, + 12.642 + ], + [ + 306.77203, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 310.07205, + 272.90002, + 6.0, + 12.642 + ], + [ + 316.07205, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 322.37207, + 272.90002, + 6.0, + 12.642 + ], + [ + 328.37207, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 333.6761, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 338.9801, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 344.28412, + 272.90002, + 6.0, + 12.642 + ], + [ + 350.28412, + 272.90002, + 4.6679993, + 12.642 + ], + [ + 354.9761, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 363.3641, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 368.66812, + 272.90002, + 6.0, + 12.642 + ], + [ + 374.66812, + 272.90002, + 6.0, + 12.642 + ], + [ + 380.66812, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 383.96814, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 387.35214, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 390.65216, + 272.90002, + 6.0, + 12.642 + ], + [ + 396.65216, + 272.90002, + 6.0, + 12.642 + ], + [ + 402.65216, + 272.90002, + 5.3160095, + 12.642 + ], + [ + 407.95618, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 414.34018, + 272.90002, + 4.6679993, + 12.642 + ], + [ + 418.9362, + 272.90002, + 6.0, + 12.642 + ], + [ + 424.9362, + 272.90002, + 9.324005, + 12.642 + ], + [ + 434.2362, + 272.90002, + 6.0, + 12.642 + ], + [ + 440.2362, + 272.90002, + 6.0, + 12.642 + ], + [ + 446.32022, + 272.90002, + 3.3240051, + 12.642 + ], + [ + 449.62024, + 272.90002, + 4.6679993, + 12.642 + ], + [ + 56.8, + 259.1, + 6.672001, + 12.642 + ], + [ + 63.484, + 259.1, + 6.0, + 12.642 + ], + [ + 69.484, + 259.1, + 3.9960022, + 12.642 + ], + [ + 73.48, + 259.1, + 3.3239975, + 12.642 + ], + [ + 76.78, + 259.1, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 259.1, + 6.0, + 12.642 + ], + [ + 86.079994, + 259.1, + 3.3239975, + 12.642 + ], + [ + 164.8, + 259.1, + 5.3159943, + 12.642 + ], + [ + 170.104, + 259.1, + 5.3159943, + 12.642 + ], + [ + 175.408, + 259.1, + 6.0, + 12.642 + ], + [ + 181.408, + 259.1, + 6.0, + 12.642 + ], + [ + 187.408, + 259.1, + 9.996002, + 12.642 + ], + [ + 212.404, + 259.1, + 12.0, + 12.642 + ], + [ + 227.404, + 259.1, + 4.6679993, + 12.642 + ], + [ + 232.09601, + 259.1, + 6.0, + 12.642 + ], + [ + 238.09601, + 259.1, + 6.0, + 12.642 + ], + [ + 244.09601, + 259.1, + 6.0, + 12.642 + ], + [ + 250.09601, + 259.1, + 3.3240051, + 12.642 + ], + [ + 253.39601, + 259.1, + 5.9999847, + 12.642 + ], + [ + 262.396, + 259.1, + 6.0, + 12.642 + ], + [ + 268.396, + 259.1, + 5.3160095, + 12.642 + ], + [ + 276.784, + 259.1, + 6.0, + 12.642 + ], + [ + 282.784, + 259.1, + 6.0, + 12.642 + ], + [ + 288.784, + 259.1, + 3.3240051, + 12.642 + ], + [ + 295.084, + 259.1, + 8.664001, + 12.642 + ], + [ + 303.772, + 259.1, + 3.3240051, + 12.642 + ], + [ + 307.07202, + 259.1, + 6.0, + 12.642 + ], + [ + 313.07202, + 259.1, + 3.3240051, + 12.642 + ], + [ + 319.37204, + 259.1, + 6.0, + 12.642 + ], + [ + 325.37204, + 259.1, + 5.3160095, + 12.642 + ], + [ + 330.67606, + 259.1, + 5.3160095, + 12.642 + ], + [ + 335.98007, + 259.1, + 5.3160095, + 12.642 + ], + [ + 341.2841, + 259.1, + 6.0, + 12.642 + ], + [ + 347.2841, + 259.1, + 4.6679993, + 12.642 + ], + [ + 351.97607, + 259.1, + 5.3160095, + 12.642 + ], + [ + 360.36407, + 259.1, + 5.3160095, + 12.642 + ], + [ + 365.6681, + 259.1, + 6.0, + 12.642 + ], + [ + 371.6681, + 259.1, + 6.0, + 12.642 + ], + [ + 377.6681, + 259.1, + 3.3240051, + 12.642 + ], + [ + 380.9681, + 259.1, + 3.3240051, + 12.642 + ], + [ + 384.3521, + 259.1, + 3.3240051, + 12.642 + ], + [ + 387.65213, + 259.1, + 6.0, + 12.642 + ], + [ + 393.65213, + 259.1, + 6.0, + 12.642 + ], + [ + 399.65213, + 259.1, + 5.3160095, + 12.642 + ], + [ + 404.95615, + 259.1, + 3.3240051, + 12.642 + ], + [ + 411.34015, + 259.1, + 4.6679993, + 12.642 + ], + [ + 415.93616, + 259.1, + 6.0, + 12.642 + ], + [ + 421.93616, + 259.1, + 9.324005, + 12.642 + ], + [ + 431.23618, + 259.1, + 6.0, + 12.642 + ], + [ + 437.23618, + 259.1, + 6.0, + 12.642 + ], + [ + 443.3202, + 259.1, + 3.3240051, + 12.642 + ], + [ + 446.6202, + 259.1, + 4.6679993, + 12.642 + ], + [ + 56.8, + 245.30002, + 6.672001, + 12.642 + ], + [ + 63.484, + 245.30002, + 6.0, + 12.642 + ], + [ + 69.484, + 245.30002, + 3.9960022, + 12.642 + ], + [ + 73.48, + 245.30002, + 3.3239975, + 12.642 + ], + [ + 76.78, + 245.30002, + 3.3239975, + 12.642 + ], + [ + 80.079994, + 245.30002, + 6.0, + 12.642 + ], + [ + 86.079994, + 245.30002, + 3.3239975, + 12.642 + ], + [ + 164.8, + 245.30002, + 6.0, + 12.642 + ], + [ + 170.8, + 245.30002, + 6.0, + 12.642 + ], + [ + 176.8, + 245.30002, + 9.996002, + 12.642 + ], + [ + 186.8, + 245.30002, + 5.3159943, + 12.642 + ], + [ + 192.104, + 245.30002, + 5.3159943, + 12.642 + ], + [ + 212.5, + 245.30002, + 12.0, + 12.642 + ], + [ + 227.5, + 245.30002, + 4.6679993, + 12.642 + ], + [ + 232.192, + 245.30002, + 6.0, + 12.642 + ], + [ + 238.192, + 245.30002, + 6.0, + 12.642 + ], + [ + 244.192, + 245.30002, + 6.0, + 12.642 + ], + [ + 250.192, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 253.492, + 245.30002, + 6.0, + 12.642 + ], + [ + 262.492, + 245.30002, + 6.0, + 12.642 + ], + [ + 268.492, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 276.88, + 245.30002, + 6.0, + 12.642 + ], + [ + 282.88, + 245.30002, + 6.0, + 12.642 + ], + [ + 288.88, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 295.18002, + 245.30002, + 8.664001, + 12.642 + ], + [ + 303.868, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 307.16803, + 245.30002, + 6.0, + 12.642 + ], + [ + 313.16803, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 319.46805, + 245.30002, + 6.0, + 12.642 + ], + [ + 325.46805, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 330.77206, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 336.07608, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 341.3801, + 245.30002, + 6.0, + 12.642 + ], + [ + 347.3801, + 245.30002, + 4.6679993, + 12.642 + ], + [ + 352.07208, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 360.46008, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 365.7641, + 245.30002, + 6.0, + 12.642 + ], + [ + 371.7641, + 245.30002, + 6.0, + 12.642 + ], + [ + 377.7641, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 381.06412, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 384.44812, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 387.74814, + 245.30002, + 6.0, + 12.642 + ], + [ + 393.74814, + 245.30002, + 6.0, + 12.642 + ], + [ + 399.74814, + 245.30002, + 5.3160095, + 12.642 + ], + [ + 405.05215, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 411.43616, + 245.30002, + 4.6679993, + 12.642 + ], + [ + 416.03217, + 245.30002, + 6.0, + 12.642 + ], + [ + 422.03217, + 245.30002, + 9.324005, + 12.642 + ], + [ + 431.33218, + 245.30002, + 6.0, + 12.642 + ], + [ + 437.33218, + 245.30002, + 6.0, + 12.642 + ], + [ + 443.4162, + 245.30002, + 3.3240051, + 12.642 + ], + [ + 446.71622, + 245.30002, + 4.6679993, + 12.642 + ], + [ + 56.8, + 231.50003, + 6.672001, + 12.642 + ], + [ + 63.5, + 231.50003, + 3.9960022, + 12.642 + ], + [ + 67.496, + 231.50003, + 6.0, + 12.642 + ], + [ + 73.496, + 231.50003, + 6.0, + 12.642 + ], + [ + 79.496, + 231.50003, + 6.0, + 12.642 + ], + [ + 85.496, + 231.50003, + 5.316002, + 12.642 + ], + [ + 90.8, + 231.50003, + 3.3239975, + 12.642 + ], + [ + 94.1, + 231.50003, + 3.9960022, + 12.642 + ], + [ + 98.096, + 231.50003, + 7.991997, + 12.642 + ], + [ + 106.088, + 231.50003, + 6.0, + 12.642 + ], + [ + 112.088, + 231.50003, + 6.0, + 12.642 + ], + [ + 118.088, + 231.50003, + 5.316002, + 12.642 + ], + [ + 123.392, + 231.50003, + 3.3239975, + 12.642 + ], + [ + 164.8, + 231.50003, + 7.3200073, + 12.642 + ], + [ + 172.09601, + 231.50003, + 8.664001, + 12.642 + ], + [ + 180.70001, + 231.50003, + 8.664001, + 12.642 + ], + [ + 189.38802, + 231.50003, + 3.9960022, + 12.642 + ], + [ + 193.38402, + 231.50003, + 7.3200073, + 12.642 + ], + [ + 200.68002, + 231.50003, + 6.0, + 12.642 + ], + [ + 206.68002, + 231.50003, + 6.0, + 12.642 + ], + [ + 212.68002, + 231.50003, + 6.0, + 12.642 + ], + [ + 56.8, + 217.70004, + 6.0, + 12.642 + ], + [ + 62.8, + 217.70004, + 6.000004, + 12.642 + ], + [ + 68.8, + 217.70004, + 3.9960022, + 12.642 + ], + [ + 72.796005, + 217.70004, + 3.3239975, + 12.642 + ], + [ + 76.096, + 217.70004, + 3.3239975, + 12.642 + ], + [ + 79.395996, + 217.70004, + 6.0, + 12.642 + ], + [ + 85.395996, + 217.70004, + 3.3239975, + 12.642 + ], + [ + 164.8, + 217.70004, + 6.0, + 12.642 + ], + [ + 170.8, + 217.70004, + 6.0, + 12.642 + ], + [ + 176.8, + 217.70004, + 9.996002, + 12.642 + ], + [ + 195.796, + 217.70004, + 12.0, + 12.642 + ], + [ + 210.796, + 217.70004, + 6.0, + 12.642 + ], + [ + 216.796, + 217.70004, + 6.0, + 12.642 + ], + [ + 222.796, + 217.70004, + 3.3240051, + 12.642 + ], + [ + 229.09601, + 217.70004, + 8.664001, + 12.642 + ], + [ + 237.78401, + 217.70004, + 3.3240051, + 12.642 + ], + [ + 241.08401, + 217.70004, + 6.0, + 12.642 + ], + [ + 247.08401, + 217.70004, + 3.3240051, + 12.642 + ], + [ + 253.38402, + 217.70004, + 6.0000153, + 12.642 + ], + [ + 259.38403, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 264.68805, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 270.07605, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 275.38007, + 217.70004, + 6.0, + 12.642 + ], + [ + 281.38007, + 217.70004, + 4.6679993, + 12.642 + ], + [ + 286.07205, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 294.37607, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 299.68008, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 304.9841, + 217.70004, + 4.6679993, + 12.642 + ], + [ + 309.6761, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 318.0641, + 217.70004, + 4.6679993, + 12.642 + ], + [ + 322.6601, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 327.9641, + 217.70004, + 6.0, + 12.642 + ], + [ + 333.9641, + 217.70004, + 4.6679993, + 12.642 + ], + [ + 338.6561, + 217.70004, + 3.3240051, + 12.642 + ], + [ + 341.95612, + 217.70004, + 3.3240051, + 12.642 + ], + [ + 345.34012, + 217.70004, + 3.3240051, + 12.642 + ], + [ + 348.64014, + 217.70004, + 6.0, + 12.642 + ], + [ + 354.64014, + 217.70004, + 5.3160095, + 12.642 + ], + [ + 56.8, + 203.90005, + 6.0, + 12.642 + ], + [ + 62.8, + 203.90005, + 6.000004, + 12.642 + ], + [ + 68.8, + 203.90005, + 3.9960022, + 12.642 + ], + [ + 72.796005, + 203.90005, + 3.3239975, + 12.642 + ], + [ + 76.096, + 203.90005, + 3.3239975, + 12.642 + ], + [ + 79.395996, + 203.90005, + 6.0, + 12.642 + ], + [ + 85.395996, + 203.90005, + 3.3239975, + 12.642 + ], + [ + 164.8, + 203.90005, + 6.7559967, + 12.642 + ], + [ + 171.496, + 203.90005, + 6.0, + 12.642 + ], + [ + 177.496, + 203.90005, + 6.0, + 12.642 + ], + [ + 183.496, + 203.90005, + 9.996002, + 12.642 + ], + [ + 202.492, + 203.90005, + 12.0, + 12.642 + ], + [ + 217.492, + 203.90005, + 6.0, + 12.642 + ], + [ + 223.492, + 203.90005, + 6.0, + 12.642 + ], + [ + 229.492, + 203.90005, + 3.3240051, + 12.642 + ], + [ + 235.876, + 203.90005, + 8.664001, + 12.642 + ], + [ + 244.56401, + 203.90005, + 3.3240051, + 12.642 + ], + [ + 247.86401, + 203.90005, + 6.0, + 12.642 + ], + [ + 253.86401, + 203.90005, + 3.3240051, + 12.642 + ], + [ + 260.16403, + 203.90005, + 6.0, + 12.642 + ], + [ + 266.16403, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 271.46805, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 276.77206, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 282.07608, + 203.90005, + 6.0, + 12.642 + ], + [ + 288.07608, + 203.90005, + 4.6679993, + 12.642 + ], + [ + 292.76807, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 301.15607, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 306.46008, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 311.7641, + 203.90005, + 4.6679993, + 12.642 + ], + [ + 316.4561, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 324.7601, + 203.90005, + 4.6679993, + 12.642 + ], + [ + 329.4521, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 334.7561, + 203.90005, + 6.0, + 12.642 + ], + [ + 340.7561, + 203.90005, + 4.6679993, + 12.642 + ], + [ + 345.4481, + 203.90005, + 3.3240051, + 12.642 + ], + [ + 348.7481, + 203.90005, + 3.3240051, + 12.642 + ], + [ + 352.04813, + 203.90005, + 3.3240051, + 12.642 + ], + [ + 355.34814, + 203.90005, + 6.0, + 12.642 + ], + [ + 361.43216, + 203.90005, + 5.3160095, + 12.642 + ], + [ + 56.8, + 190.1, + 6.0, + 12.642 + ], + [ + 62.8, + 190.1, + 6.000004, + 12.642 + ], + [ + 68.8, + 190.1, + 3.9960022, + 12.642 + ], + [ + 72.796005, + 190.1, + 3.3239975, + 12.642 + ], + [ + 76.096, + 190.1, + 3.3239975, + 12.642 + ], + [ + 79.395996, + 190.1, + 6.0, + 12.642 + ], + [ + 85.395996, + 190.1, + 3.3239975, + 12.642 + ], + [ + 164.8, + 190.1, + 6.7559967, + 12.642 + ], + [ + 171.496, + 190.1, + 6.0, + 12.642 + ], + [ + 177.496, + 190.1, + 6.0, + 12.642 + ], + [ + 183.496, + 190.1, + 9.996002, + 12.642 + ], + [ + 202.492, + 190.1, + 12.0, + 12.642 + ], + [ + 217.492, + 190.1, + 6.0, + 12.642 + ], + [ + 223.492, + 190.1, + 6.0, + 12.642 + ], + [ + 229.492, + 190.1, + 3.3240051, + 12.642 + ], + [ + 235.876, + 190.1, + 8.664001, + 12.642 + ], + [ + 244.56401, + 190.1, + 3.3240051, + 12.642 + ], + [ + 247.86401, + 190.1, + 6.0, + 12.642 + ], + [ + 253.86401, + 190.1, + 3.3240051, + 12.642 + ], + [ + 260.16403, + 190.1, + 6.0, + 12.642 + ], + [ + 266.16403, + 190.1, + 5.3160095, + 12.642 + ], + [ + 271.46805, + 190.1, + 5.3160095, + 12.642 + ], + [ + 276.77206, + 190.1, + 5.3160095, + 12.642 + ], + [ + 282.07608, + 190.1, + 6.0, + 12.642 + ], + [ + 288.07608, + 190.1, + 4.6679993, + 12.642 + ], + [ + 292.76807, + 190.1, + 5.3160095, + 12.642 + ], + [ + 301.15607, + 190.1, + 5.3160095, + 12.642 + ], + [ + 306.46008, + 190.1, + 5.3160095, + 12.642 + ], + [ + 311.7641, + 190.1, + 4.6679993, + 12.642 + ], + [ + 316.4561, + 190.1, + 5.3160095, + 12.642 + ], + [ + 324.7601, + 190.1, + 4.6679993, + 12.642 + ], + [ + 329.4521, + 190.1, + 5.3160095, + 12.642 + ], + [ + 334.7561, + 190.1, + 6.0, + 12.642 + ], + [ + 340.7561, + 190.1, + 4.6679993, + 12.642 + ], + [ + 345.4481, + 190.1, + 3.3240051, + 12.642 + ], + [ + 348.7481, + 190.1, + 3.3240051, + 12.642 + ], + [ + 352.04813, + 190.1, + 3.3240051, + 12.642 + ], + [ + 355.34814, + 190.1, + 6.0, + 12.642 + ], + [ + 361.43216, + 190.1, + 5.3160095, + 12.642 + ], + [ + 56.8, + 176.30002, + 6.672001, + 12.642 + ], + [ + 63.484, + 176.30002, + 6.0, + 12.642 + ], + [ + 69.484, + 176.30002, + 6.0, + 12.642 + ], + [ + 75.484, + 176.30002, + 6.0, + 12.642 + ], + [ + 81.484, + 176.30002, + 3.3239975, + 12.642 + ], + [ + 84.784, + 176.30002, + 3.3239975, + 12.642 + ], + [ + 88.08399, + 176.30002, + 5.316002, + 12.642 + ], + [ + 93.38799, + 176.30002, + 3.9960022, + 12.642 + ], + [ + 97.383995, + 176.30002, + 3.3239975, + 12.642 + ], + [ + 164.8, + 176.30002, + 8.664001, + 12.642 + ], + [ + 173.404, + 176.30002, + 3.9960022, + 12.642 + ], + [ + 177.40001, + 176.30002, + 5.3159943, + 12.642 + ], + [ + 182.70401, + 176.30002, + 5.3159943, + 12.642 + ], + [ + 188.00801, + 176.30002, + 6.0, + 12.642 + ], + [ + 194.00801, + 176.30002, + 6.671997, + 12.642 + ], + [ + 200.692, + 176.30002, + 6.0, + 12.642 + ], + [ + 206.692, + 176.30002, + 3.9960022, + 12.642 + ], + [ + 210.688, + 176.30002, + 5.3159943, + 12.642 + ], + [ + 216.076, + 176.30002, + 5.3159943, + 12.642 + ] + ] + }, + { + "id": 85, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 52, + 53, + 54, + 55 + ], + "positions": [ + [ + 56.8, + 692.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 692.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 107.0, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 115.6, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 119.5057, + 692.1, + 8.601006, + 13.867801 + ], + [ + 128.1067, + 692.1, + 8.600998, + 13.867801 + ], + [ + 136.7077, + 692.1, + 8.600998, + 13.867801 + ], + [ + 145.3087, + 692.1, + 5.484894, + 13.867801 + ], + [ + 150.7936, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 162.58119, + 692.1, + 10.180206, + 13.867801 + ], + [ + 172.7614, + 692.1, + 8.600998, + 13.867801 + ], + [ + 181.3624, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 189.1597, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 196.957, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 200.9473, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 208.7446, + 692.1, + 5.484894, + 13.867801 + ], + [ + 214.22949, + 692.1, + 4.6952972, + 13.867801 + ], + [ + 218.92479, + 692.1, + 10.180206, + 13.867801 + ], + [ + 229.105, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 236.9023, + 692.1, + 8.600998, + 13.867801 + ], + [ + 245.5033, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 253.3852, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 261.1825, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 265.8778, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 269.7835, + 692.1, + 8.601013, + 13.867801 + ], + [ + 278.38452, + 692.1, + 8.601013, + 13.867801 + ], + [ + 290.97583, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 294.88153, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 303.48254, + 692.1, + 10.180206, + 13.867801 + ], + [ + 313.66275, + 692.1, + 8.601013, + 13.867801 + ], + [ + 322.26376, + 692.1, + 8.601013, + 13.867801 + ], + [ + 330.86478, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 335.5601, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 339.4658, + 692.1, + 8.601013, + 13.867801 + ], + [ + 348.0668, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 355.9487, + 692.1, + 8.601013, + 13.867801 + ], + [ + 364.5497, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 369.24503, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 373.15073, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 380.94803, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 384.85373, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 388.75943, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 393.53934, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 405.24234, + 692.1, + 3.9057007, + 13.867801 + ], + [ + 409.23264, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 420.93564, + 692.1, + 8.601013, + 13.867801 + ], + [ + 429.53665, + 692.1, + 8.601013, + 13.867801 + ], + [ + 438.13766, + 692.1, + 4.6953125, + 13.867801 + ], + [ + 446.82327, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 454.62057, + 692.1, + 7.8395996, + 13.867801 + ], + [ + 462.41788, + 692.1, + 4.6953125, + 13.867801 + ] + ] + }, + { + "id": 86, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 27, + 28, + 29, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 44, + 45, + 46, + 46, + 47, + 48, + 49, + 49, + 50, + 51, + 52, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68 + ], + "positions": [ + [ + 56.8, + 673.8, + 7.2199974, + 11.535 + ], + [ + 63.999996, + 673.8, + 5.000004, + 11.535 + ], + [ + 69.0, + 673.8, + 5.0, + 11.535 + ], + [ + 74.0, + 673.8, + 2.7699966, + 11.535 + ], + [ + 79.28999, + 673.8, + 3.8899994, + 11.535 + ], + [ + 82.78999, + 673.8, + 4.4300003, + 11.535 + ], + [ + 87.189995, + 673.8, + 5.0, + 11.535 + ], + [ + 92.189995, + 673.8, + 5.0, + 11.535 + ], + [ + 97.189995, + 673.8, + 4.4300003, + 11.535 + ], + [ + 101.59, + 673.8, + 2.7699966, + 11.535 + ], + [ + 106.979996, + 673.8, + 7.220001, + 11.535 + ], + [ + 114.18, + 673.8, + 5.0, + 11.535 + ], + [ + 119.18, + 673.8, + 3.8899994, + 11.535 + ], + [ + 123.07, + 673.8, + 3.8899994, + 11.535 + ], + [ + 126.87, + 673.8, + 2.7699966, + 11.535 + ], + [ + 129.66, + 673.8, + 4.4299927, + 11.535 + ], + [ + 134.06, + 673.8, + 3.8899994, + 11.535 + ], + [ + 137.86, + 673.8, + 3.3300018, + 11.535 + ], + [ + 141.16, + 673.8, + 6.100006, + 11.535 + ], + [ + 147.26001, + 673.8, + 4.4299927, + 11.535 + ], + [ + 151.66, + 673.8, + 5.0, + 11.535 + ], + [ + 156.66, + 673.8, + 5.0, + 11.535 + ], + [ + 161.66, + 673.8, + 4.4299927, + 11.535 + ], + [ + 166.06, + 673.8, + 2.7700043, + 11.535 + ], + [ + 168.85, + 673.8, + 2.7700043, + 11.535 + ], + [ + 171.64001, + 673.8, + 5.0, + 11.535 + ], + [ + 176.64001, + 673.8, + 5.0, + 11.535 + ], + [ + 184.14001, + 673.8, + 2.7700043, + 11.535 + ], + [ + 186.93002, + 673.8, + 2.7700043, + 11.535 + ], + [ + 192.22003, + 673.8, + 6.6600037, + 11.535 + ], + [ + 198.91003, + 673.8, + 5.0, + 11.535 + ], + [ + 203.91003, + 673.8, + 5.0, + 11.535 + ], + [ + 208.81003, + 673.8, + 2.7700043, + 11.535 + ], + [ + 211.60004, + 673.8, + 2.7700043, + 11.535 + ], + [ + 214.39005, + 673.8, + 5.0, + 11.535 + ], + [ + 219.39005, + 673.8, + 4.4299927, + 11.535 + ], + [ + 223.79004, + 673.8, + 5.0, + 11.535 + ], + [ + 228.79004, + 673.8, + 2.7700043, + 11.535 + ], + [ + 231.58005, + 673.8, + 2.7700043, + 11.535 + ], + [ + 234.37006, + 673.8, + 5.0, + 11.535 + ], + [ + 239.37006, + 673.8, + 2.7700043, + 11.535 + ], + [ + 242.16006, + 673.8, + 2.7700043, + 11.535 + ], + [ + 244.86006, + 673.8, + 2.7700043, + 11.535 + ], + [ + 247.65007, + 673.8, + 4.4299927, + 11.535 + ], + [ + 254.64006, + 673.8, + 2.7700043, + 11.535 + ], + [ + 257.34006, + 673.8, + 3.8900146, + 11.535 + ], + [ + 263.73007, + 673.8, + 5.0, + 11.535 + ], + [ + 268.73007, + 673.8, + 5.0, + 11.535 + ], + [ + 273.73007, + 673.8, + 2.769989, + 11.535 + ], + [ + 279.02005, + 673.8, + 3.8900146, + 11.535 + ], + [ + 282.91006, + 673.8, + 4.4299927, + 11.535 + ], + [ + 287.31006, + 673.8, + 2.769989, + 11.535 + ], + [ + 292.60004, + 673.8, + 2.769989, + 11.535 + ], + [ + 295.39, + 673.8, + 5.0, + 11.535 + ], + [ + 302.89, + 673.8, + 2.769989, + 11.535 + ], + [ + 305.59, + 673.8, + 2.769989, + 11.535 + ], + [ + 308.37997, + 673.8, + 2.769989, + 11.535 + ], + [ + 311.16995, + 673.8, + 4.4299927, + 11.535 + ], + [ + 318.15994, + 673.8, + 5.0, + 11.535 + ], + [ + 323.05994, + 673.8, + 2.769989, + 11.535 + ], + [ + 325.8499, + 673.8, + 2.769989, + 11.535 + ], + [ + 328.6399, + 673.8, + 3.8900146, + 11.535 + ], + [ + 332.5299, + 673.8, + 2.769989, + 11.535 + ], + [ + 335.3199, + 673.8, + 5.0, + 11.535 + ], + [ + 340.3199, + 673.8, + 5.0, + 11.535 + ], + [ + 345.3199, + 673.8, + 2.769989, + 11.535 + ], + [ + 348.10986, + 673.8, + 4.4299927, + 11.535 + ], + [ + 352.50986, + 673.8, + 3.8900146, + 11.535 + ] + ] + }, + { + "id": 87, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 60, + 61, + 62, + 63, + 64, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 95, + 96, + 97, + 98, + 99, + 99, + 100, + 101, + 101, + 102, + 103, + 104, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112 + ], + "positions": [ + [ + 56.8, + 646.6, + 7.3200035, + 12.642 + ], + [ + 64.096, + 646.6, + 6.0, + 12.642 + ], + [ + 70.096, + 646.6, + 5.316002, + 12.642 + ], + [ + 75.4, + 646.6, + 5.316002, + 12.642 + ], + [ + 80.704, + 646.6, + 6.0, + 12.642 + ], + [ + 86.704, + 646.6, + 3.3239975, + 12.642 + ], + [ + 90.088, + 646.6, + 5.316002, + 12.642 + ], + [ + 95.392, + 646.6, + 6.0, + 12.642 + ], + [ + 101.392, + 646.6, + 3.9960022, + 12.642 + ], + [ + 108.388, + 646.6, + 4.6679993, + 12.642 + ], + [ + 113.08, + 646.6, + 3.3239975, + 12.642 + ], + [ + 116.38, + 646.6, + 6.0, + 12.642 + ], + [ + 122.38, + 646.6, + 3.3239975, + 12.642 + ], + [ + 128.76399, + 646.6, + 6.0, + 12.642 + ], + [ + 134.76399, + 646.6, + 5.3159943, + 12.642 + ], + [ + 140.068, + 646.6, + 5.3159943, + 12.642 + ], + [ + 145.372, + 646.6, + 5.3159943, + 12.642 + ], + [ + 150.676, + 646.6, + 5.3159943, + 12.642 + ], + [ + 155.98, + 646.6, + 5.3159943, + 12.642 + ], + [ + 161.368, + 646.6, + 5.3159943, + 12.642 + ], + [ + 166.672, + 646.6, + 3.3240051, + 12.642 + ], + [ + 172.972, + 646.6, + 5.3159943, + 12.642 + ], + [ + 178.276, + 646.6, + 6.0, + 12.642 + ], + [ + 184.276, + 646.6, + 6.0, + 12.642 + ], + [ + 190.276, + 646.6, + 3.3240051, + 12.642 + ], + [ + 193.576, + 646.6, + 6.0, + 12.642 + ], + [ + 199.66, + 646.6, + 5.3159943, + 12.642 + ], + [ + 204.964, + 646.6, + 3.3240051, + 12.642 + ], + [ + 208.264, + 646.6, + 5.3159943, + 12.642 + ], + [ + 213.65201, + 646.6, + 3.3240051, + 12.642 + ], + [ + 219.95201, + 646.6, + 6.0, + 12.642 + ], + [ + 225.95201, + 646.6, + 6.0, + 12.642 + ], + [ + 231.95201, + 646.6, + 6.0, + 12.642 + ], + [ + 240.95201, + 646.6, + 6.0, + 12.642 + ], + [ + 246.95201, + 646.6, + 3.9960022, + 12.642 + ], + [ + 250.94801, + 646.6, + 5.9999847, + 12.642 + ], + [ + 256.948, + 646.6, + 3.3240051, + 12.642 + ], + [ + 260.24802, + 646.6, + 6.0, + 12.642 + ], + [ + 266.24802, + 646.6, + 5.3160095, + 12.642 + ], + [ + 271.55203, + 646.6, + 6.0, + 12.642 + ], + [ + 277.63605, + 646.6, + 3.3240051, + 12.642 + ], + [ + 280.93607, + 646.6, + 3.0, + 12.642 + ], + [ + 286.93607, + 646.6, + 9.324005, + 12.642 + ], + [ + 296.23608, + 646.6, + 6.0, + 12.642 + ], + [ + 302.23608, + 646.6, + 8.664001, + 12.642 + ], + [ + 310.92407, + 646.6, + 6.0, + 12.642 + ], + [ + 316.92407, + 646.6, + 4.6679993, + 12.642 + ], + [ + 321.52008, + 646.6, + 4.6679993, + 12.642 + ], + [ + 326.21207, + 646.6, + 3.3240051, + 12.642 + ], + [ + 329.5121, + 646.6, + 5.3160095, + 12.642 + ], + [ + 334.8161, + 646.6, + 3.9960022, + 12.642 + ], + [ + 338.8121, + 646.6, + 7.9920044, + 12.642 + ], + [ + 346.90012, + 646.6, + 5.3160095, + 12.642 + ], + [ + 352.20413, + 646.6, + 6.0, + 12.642 + ], + [ + 358.20413, + 646.6, + 5.3160095, + 12.642 + ], + [ + 363.50815, + 646.6, + 5.3160095, + 12.642 + ], + [ + 368.89615, + 646.6, + 3.3240051, + 12.642 + ], + [ + 372.19617, + 646.6, + 3.3240051, + 12.642 + ], + [ + 375.4962, + 646.6, + 6.0, + 12.642 + ], + [ + 381.4962, + 646.6, + 6.0, + 12.642 + ], + [ + 390.4962, + 646.6, + 4.6679993, + 12.642 + ], + [ + 395.18817, + 646.6, + 6.0, + 12.642 + ], + [ + 401.18817, + 646.6, + 6.0, + 12.642 + ], + [ + 407.18817, + 646.6, + 3.3240051, + 12.642 + ], + [ + 413.4882, + 646.6, + 3.3240051, + 12.642 + ], + [ + 416.7882, + 646.6, + 6.0, + 12.642 + ], + [ + 425.87222, + 646.6, + 5.3160095, + 12.642 + ], + [ + 431.17624, + 646.6, + 6.0, + 12.642 + ], + [ + 437.17624, + 646.6, + 3.3240051, + 12.642 + ], + [ + 440.47626, + 646.6, + 6.0, + 12.642 + ], + [ + 446.47626, + 646.6, + 5.3160095, + 12.642 + ], + [ + 454.86426, + 646.6, + 6.0, + 12.642 + ], + [ + 460.86426, + 646.6, + 6.0, + 12.642 + ], + [ + 466.86426, + 646.6, + 3.3240051, + 12.642 + ], + [ + 473.16428, + 646.6, + 6.0, + 12.642 + ], + [ + 479.16428, + 646.6, + 3.9960022, + 12.642 + ], + [ + 482.9683, + 646.6, + 3.9960022, + 12.642 + ], + [ + 486.9643, + 646.6, + 3.3240051, + 12.642 + ], + [ + 490.2643, + 646.6, + 5.3160095, + 12.642 + ], + [ + 495.56833, + 646.6, + 3.3240051, + 12.642 + ], + [ + 498.86835, + 646.6, + 5.3160095, + 12.642 + ], + [ + 507.25635, + 646.6, + 6.0, + 12.642 + ], + [ + 513.25635, + 646.6, + 5.315979, + 12.642 + ], + [ + 518.5603, + 646.6, + 4.66803, + 12.642 + ], + [ + 523.2523, + 646.6, + 5.315979, + 12.642 + ], + [ + 528.5563, + 646.6, + 3.9959717, + 12.642 + ], + [ + 532.55225, + 646.6, + 6.0, + 12.642 + ], + [ + 538.55225, + 646.6, + 6.0, + 12.642 + ], + [ + 544.55225, + 646.6, + 3.3239746, + 12.642 + ], + [ + 56.8, + 632.8, + 9.324001, + 12.642 + ], + [ + 66.1, + 632.8, + 6.0, + 12.642 + ], + [ + 72.1, + 632.8, + 3.3239975, + 12.642 + ], + [ + 75.399994, + 632.8, + 3.3239975, + 12.642 + ], + [ + 78.78399, + 632.8, + 3.3239975, + 12.642 + ], + [ + 82.083984, + 632.8, + 3.3239975, + 12.642 + ], + [ + 88.38398, + 632.8, + 5.316002, + 12.642 + ], + [ + 93.68798, + 632.8, + 6.0, + 12.642 + ], + [ + 99.77198, + 632.8, + 3.3239975, + 12.642 + ], + [ + 103.071976, + 632.8, + 9.3239975, + 12.642 + ], + [ + 115.37197, + 632.8, + 3.3239975, + 12.642 + ], + [ + 118.67197, + 632.8, + 6.0, + 12.642 + ], + [ + 127.75597, + 632.8, + 5.3159943, + 12.642 + ], + [ + 133.05997, + 632.8, + 4.6679993, + 12.642 + ], + [ + 137.75197, + 632.8, + 3.3240051, + 12.642 + ], + [ + 144.05197, + 632.8, + 3.3240051, + 12.642 + ], + [ + 147.35197, + 632.8, + 5.3159943, + 12.642 + ], + [ + 152.65598, + 632.8, + 6.0, + 12.642 + ], + [ + 158.65598, + 632.8, + 6.0, + 12.642 + ], + [ + 164.65598, + 632.8, + 3.9960022, + 12.642 + ], + [ + 168.65198, + 632.8, + 6.0, + 12.642 + ], + [ + 174.65198, + 632.8, + 9.324005, + 12.642 + ], + [ + 183.95198, + 632.8, + 3.0, + 12.642 + ] + ] + }, + { + "id": 88, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26 + ], + "positions": [ + [ + 56.8, + 582.4, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 582.4, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 582.4, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 106.89461, + 582.4, + 3.9057007, + 13.867801 + ], + [ + 110.88491, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 118.68221, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 126.479515, + 582.4, + 4.695305, + 13.867801 + ], + [ + 135.16512, + 582.4, + 10.180206, + 13.867801 + ], + [ + 145.34532, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 153.14262, + 582.4, + 8.600998, + 13.867801 + ], + [ + 161.74362, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 169.54092, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 177.33823, + 582.4, + 4.6952972, + 13.867801 + ], + [ + 186.02382, + 582.4, + 9.3905945, + 13.867801 + ], + [ + 195.41441, + 582.4, + 3.9057007, + 13.867801 + ], + [ + 199.32011, + 582.4, + 8.600998, + 13.867801 + ], + [ + 207.92111, + 582.4, + 8.600998, + 13.867801 + ], + [ + 216.6067, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 224.404, + 582.4, + 4.6952972, + 13.867801 + ], + [ + 229.0993, + 582.4, + 8.600998, + 13.867801 + ], + [ + 237.7003, + 582.4, + 5.484894, + 13.867801 + ], + [ + 243.1852, + 582.4, + 7.8395996, + 13.867801 + ], + [ + 250.9825, + 582.4, + 7.839615, + 13.867801 + ] + ] + }, + { + "id": 89, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 23, + 24, + 25, + 25, + 26, + 27, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 55, + 56, + 57, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 564.0, + 6.1000023, + 11.535 + ], + [ + 62.9, + 564.0, + 4.4300003, + 11.535 + ], + [ + 67.3, + 564.0, + 5.0, + 11.535 + ], + [ + 72.3, + 564.0, + 5.0, + 11.535 + ], + [ + 77.3, + 564.0, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 564.0, + 2.7699966, + 11.535 + ], + [ + 86.99, + 564.0, + 6.659996, + 11.535 + ], + [ + 93.67999, + 564.0, + 5.0, + 11.535 + ], + [ + 98.67999, + 564.0, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 564.0, + 5.0, + 11.535 + ], + [ + 110.66999, + 564.0, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 564.0, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 564.0, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 564.0, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 564.0, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 564.0, + 5.0, + 11.535 + ], + [ + 136.14998, + 564.0, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 564.0, + 5.0, + 11.535 + ], + [ + 145.03998, + 564.0, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 564.0, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 564.0, + 5.0, + 11.535 + ], + [ + 159.72998, + 564.0, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 564.0, + 5.0, + 11.535 + ], + [ + 167.51999, + 564.0, + 5.0, + 11.535 + ], + [ + 172.51999, + 564.0, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 564.0, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 564.0, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 564.0, + 5.5599976, + 11.535 + ], + [ + 193.19998, + 564.0, + 4.4299927, + 11.535 + ], + [ + 197.59998, + 564.0, + 3.8899994, + 11.535 + ], + [ + 56.8, + 552.5, + 6.1000023, + 11.535 + ], + [ + 62.9, + 552.5, + 4.4300003, + 11.535 + ], + [ + 67.3, + 552.5, + 5.0, + 11.535 + ], + [ + 72.3, + 552.5, + 5.0, + 11.535 + ], + [ + 77.3, + 552.5, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 552.5, + 2.7699966, + 11.535 + ], + [ + 86.99, + 552.5, + 6.659996, + 11.535 + ], + [ + 93.67999, + 552.5, + 5.0, + 11.535 + ], + [ + 98.67999, + 552.5, + 4.4300003, + 11.535 + ], + [ + 103.079994, + 552.5, + 5.0, + 11.535 + ], + [ + 110.66999, + 552.5, + 6.0999985, + 11.535 + ], + [ + 115.66999, + 552.5, + 4.4300003, + 11.535 + ], + [ + 120.06999, + 552.5, + 3.8899994, + 11.535 + ], + [ + 123.95999, + 552.5, + 2.7699966, + 11.535 + ], + [ + 126.749985, + 552.5, + 4.4299927, + 11.535 + ], + [ + 131.14998, + 552.5, + 5.0, + 11.535 + ], + [ + 136.14998, + 552.5, + 3.8899994, + 11.535 + ], + [ + 140.03998, + 552.5, + 5.0, + 11.535 + ], + [ + 145.03998, + 552.5, + 2.7700043, + 11.535 + ], + [ + 147.82999, + 552.5, + 4.4299927, + 11.535 + ], + [ + 154.72998, + 552.5, + 5.0, + 11.535 + ], + [ + 159.72998, + 552.5, + 2.7700043, + 11.535 + ], + [ + 162.51999, + 552.5, + 5.0, + 11.535 + ], + [ + 167.51999, + 552.5, + 5.0, + 11.535 + ], + [ + 172.51999, + 552.5, + 4.4299927, + 11.535 + ], + [ + 179.41998, + 552.5, + 2.7700043, + 11.535 + ], + [ + 182.20999, + 552.5, + 3.8899994, + 11.535 + ], + [ + 188.59999, + 552.5, + 6.6600037, + 11.535 + ], + [ + 195.29, + 552.5, + 5.0, + 11.535 + ] + ] + }, + { + "id": 90, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 85, + 86, + 87, + 88, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "positions": [ + [ + 56.8, + 470.1, + 6.0, + 12.642 + ], + [ + 62.8, + 470.1, + 6.000004, + 12.642 + ], + [ + 68.8, + 470.1, + 6.0, + 12.642 + ], + [ + 74.8, + 470.1, + 6.0, + 12.642 + ], + [ + 80.8, + 470.1, + 6.0, + 12.642 + ], + [ + 86.8, + 470.1, + 6.0, + 12.642 + ], + [ + 92.8, + 470.1, + 6.0, + 12.642 + ], + [ + 98.8, + 470.1, + 6.0, + 12.642 + ], + [ + 104.8, + 470.1, + 6.0, + 12.642 + ], + [ + 110.8, + 470.1, + 6.0, + 12.642 + ], + [ + 116.8, + 470.1, + 6.0, + 12.642 + ], + [ + 122.8, + 470.1, + 6.0, + 12.642 + ], + [ + 128.8, + 470.1, + 6.0, + 12.642 + ], + [ + 134.8, + 470.1, + 6.0, + 12.642 + ], + [ + 140.8, + 470.1, + 6.0, + 12.642 + ], + [ + 146.8, + 470.1, + 6.0, + 12.642 + ], + [ + 152.8, + 470.1, + 6.0, + 12.642 + ], + [ + 158.8, + 470.1, + 6.0, + 12.642 + ], + [ + 164.8, + 470.1, + 6.0, + 12.642 + ], + [ + 170.8, + 470.1, + 6.0, + 12.642 + ], + [ + 176.8, + 470.1, + 6.0, + 12.642 + ], + [ + 182.8, + 470.1, + 6.0, + 12.642 + ], + [ + 188.8, + 470.1, + 6.0, + 12.642 + ], + [ + 194.8, + 470.1, + 6.0, + 12.642 + ], + [ + 200.8, + 470.1, + 6.0, + 12.642 + ], + [ + 206.8, + 470.1, + 6.0, + 12.642 + ], + [ + 308.8, + 470.1, + 6.0, + 12.642 + ], + [ + 314.8, + 470.1, + 6.0, + 12.642 + ], + [ + 320.8, + 470.1, + 6.0, + 12.642 + ], + [ + 326.8, + 470.1, + 6.0, + 12.642 + ], + [ + 332.8, + 470.1, + 6.0, + 12.642 + ], + [ + 338.8, + 470.1, + 6.0, + 12.642 + ], + [ + 344.8, + 470.1, + 6.0, + 12.642 + ], + [ + 350.8, + 470.1, + 6.0, + 12.642 + ], + [ + 356.8, + 470.1, + 6.0, + 12.642 + ], + [ + 362.8, + 470.1, + 6.0, + 12.642 + ], + [ + 368.8, + 470.1, + 6.0, + 12.642 + ], + [ + 374.8, + 470.1, + 6.0, + 12.642 + ], + [ + 380.8, + 470.1, + 6.0, + 12.642 + ], + [ + 386.8, + 470.1, + 6.0, + 12.642 + ], + [ + 392.8, + 470.1, + 6.0, + 12.642 + ], + [ + 398.8, + 470.1, + 6.0, + 12.642 + ], + [ + 404.8, + 470.1, + 6.0, + 12.642 + ], + [ + 410.8, + 470.1, + 6.0, + 12.642 + ], + [ + 416.8, + 470.1, + 6.0, + 12.642 + ], + [ + 422.8, + 470.1, + 6.0, + 12.642 + ], + [ + 428.8, + 470.1, + 6.0, + 12.642 + ], + [ + 434.8, + 470.1, + 6.0, + 12.642 + ], + [ + 440.8, + 470.1, + 6.0, + 12.642 + ], + [ + 446.8, + 470.1, + 6.0, + 12.642 + ], + [ + 452.8, + 470.1, + 6.0, + 12.642 + ], + [ + 458.8, + 470.1, + 6.0, + 12.642 + ], + [ + 56.8, + 456.3, + 6.672001, + 12.642 + ], + [ + 63.484, + 456.3, + 3.3239975, + 12.642 + ], + [ + 66.784, + 456.3, + 6.0, + 12.642 + ], + [ + 72.784, + 456.3, + 6.0, + 12.642 + ], + [ + 78.784, + 456.3, + 5.316002, + 12.642 + ], + [ + 84.088, + 456.3, + 6.0, + 12.642 + ], + [ + 93.088, + 456.3, + 6.0, + 12.642 + ], + [ + 99.088, + 456.3, + 6.0, + 12.642 + ], + [ + 105.088, + 456.3, + 3.3239975, + 12.642 + ], + [ + 111.38799, + 456.3, + 8.664001, + 12.642 + ], + [ + 120.076, + 456.3, + 3.3239975, + 12.642 + ], + [ + 123.37599, + 456.3, + 3.3239975, + 12.642 + ], + [ + 126.75999, + 456.3, + 5.316002, + 12.642 + ], + [ + 132.064, + 456.3, + 3.9960022, + 12.642 + ], + [ + 136.06, + 456.3, + 5.3159943, + 12.642 + ], + [ + 144.364, + 456.3, + 6.671997, + 12.642 + ], + [ + 151.04799, + 456.3, + 6.0, + 12.642 + ], + [ + 157.04799, + 456.3, + 6.0, + 12.642 + ], + [ + 163.04799, + 456.3, + 6.0, + 12.642 + ], + [ + 169.04799, + 456.3, + 5.3159943, + 12.642 + ], + [ + 174.35199, + 456.3, + 6.0, + 12.642 + ], + [ + 180.35199, + 456.3, + 4.6679993, + 12.642 + ], + [ + 185.04399, + 456.3, + 5.3159943, + 12.642 + ], + [ + 190.34799, + 456.3, + 6.0, + 12.642 + ], + [ + 196.34799, + 456.3, + 5.3159943, + 12.642 + ], + [ + 201.652, + 456.3, + 3.3240051, + 12.642 + ], + [ + 204.952, + 456.3, + 6.0, + 12.642 + ], + [ + 308.8, + 456.3, + 6.671997, + 12.642 + ], + [ + 315.48398, + 456.3, + 3.3240051, + 12.642 + ], + [ + 318.784, + 456.3, + 6.0, + 12.642 + ], + [ + 324.784, + 456.3, + 6.0, + 12.642 + ], + [ + 330.784, + 456.3, + 5.3160095, + 12.642 + ], + [ + 336.088, + 456.3, + 6.0, + 12.642 + ], + [ + 345.088, + 456.3, + 6.0, + 12.642 + ], + [ + 351.088, + 456.3, + 6.0, + 12.642 + ], + [ + 357.088, + 456.3, + 3.3240051, + 12.642 + ], + [ + 363.18402, + 456.3, + 7.3200073, + 12.642 + ], + [ + 369.68802, + 456.3, + 6.0, + 12.642 + ], + [ + 375.68802, + 456.3, + 6.0, + 12.642 + ], + [ + 381.68802, + 456.3, + 3.3240051, + 12.642 + ], + [ + 384.98804, + 456.3, + 5.3160095, + 12.642 + ], + [ + 390.29205, + 456.3, + 4.6679993, + 12.642 + ], + [ + 397.98404, + 456.3, + 10.667999, + 12.642 + ], + [ + 408.67603, + 456.3, + 6.0, + 12.642 + ], + [ + 414.67603, + 456.3, + 3.3240051, + 12.642 + ], + [ + 417.97604, + 456.3, + 3.3240051, + 12.642 + ], + [ + 421.36005, + 456.3, + 5.3160095, + 12.642 + ], + [ + 426.66406, + 456.3, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 91, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 13, + 14, + 15, + 16, + 17 + ], + "positions": [ + [ + 56.8, + 392.1, + 10.1802025, + 13.867801 + ], + [ + 66.9802, + 392.1, + 8.600998, + 13.867801 + ], + [ + 75.5812, + 392.1, + 3.9057007, + 13.867801 + ], + [ + 79.4869, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 91.3, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 99.097305, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 107.0, + 392.1, + 4.6952972, + 13.867801 + ], + [ + 115.6, + 392.1, + 10.180199, + 13.867801 + ], + [ + 125.7802, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 133.5775, + 392.1, + 8.600998, + 13.867801 + ], + [ + 142.1785, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 150.0604, + 392.1, + 7.8395996, + 13.867801 + ], + [ + 157.8577, + 392.1, + 4.6952972, + 13.867801 + ], + [ + 166.4587, + 392.1, + 8.600998, + 13.867801 + ], + [ + 175.0597, + 392.1, + 8.600998, + 13.867801 + ], + [ + 183.66069, + 392.1, + 8.600998, + 13.867801 + ], + [ + 192.26169, + 392.1, + 8.600998, + 13.867801 + ] + ] + }, + { + "id": 92, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 26, + 27, + 28, + 29, + 30, + 31, + 31, + 32, + 33, + 33, + 34, + 35, + 36, + 37, + 37, + 38, + 39, + 40, + 41, + 41, + 42, + 43, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59 + ], + "positions": [ + [ + 56.8, + 373.7, + 6.1000023, + 11.535 + ], + [ + 62.9, + 373.7, + 4.4300003, + 11.535 + ], + [ + 67.3, + 373.7, + 5.0, + 11.535 + ], + [ + 72.3, + 373.7, + 5.0, + 11.535 + ], + [ + 77.3, + 373.7, + 4.4300003, + 11.535 + ], + [ + 81.700005, + 373.7, + 2.7699966, + 11.535 + ], + [ + 86.99, + 373.7, + 5.5599976, + 11.535 + ], + [ + 92.579994, + 373.7, + 5.0, + 11.535 + ], + [ + 97.579994, + 373.7, + 5.0, + 11.535 + ], + [ + 102.579994, + 373.7, + 5.0, + 11.535 + ], + [ + 110.079994, + 373.7, + 5.0, + 11.535 + ], + [ + 115.079994, + 373.7, + 5.0, + 11.535 + ], + [ + 120.079994, + 373.7, + 2.7699966, + 11.535 + ], + [ + 122.86999, + 373.7, + 4.4300003, + 11.535 + ], + [ + 129.76999, + 373.7, + 2.7700043, + 11.535 + ], + [ + 132.56, + 373.7, + 2.7700043, + 11.535 + ], + [ + 137.85, + 373.7, + 6.100006, + 11.535 + ], + [ + 142.85, + 373.7, + 4.4299927, + 11.535 + ], + [ + 147.25, + 373.7, + 3.8899994, + 11.535 + ], + [ + 151.14, + 373.7, + 2.7700043, + 11.535 + ], + [ + 153.93001, + 373.7, + 4.4299927, + 11.535 + ], + [ + 158.33, + 373.7, + 5.0, + 11.535 + ], + [ + 163.33, + 373.7, + 3.8899994, + 11.535 + ], + [ + 167.22, + 373.7, + 5.0, + 11.535 + ], + [ + 172.22, + 373.7, + 2.7700043, + 11.535 + ], + [ + 175.01001, + 373.7, + 4.4299927, + 11.535 + ], + [ + 181.91, + 373.7, + 5.0, + 11.535 + ], + [ + 186.91, + 373.7, + 2.7700043, + 11.535 + ], + [ + 189.70001, + 373.7, + 5.0, + 11.535 + ], + [ + 194.70001, + 373.7, + 5.0, + 11.535 + ], + [ + 199.70001, + 373.7, + 4.4299927, + 11.535 + ], + [ + 206.6, + 373.7, + 2.7700043, + 11.535 + ], + [ + 209.39001, + 373.7, + 3.8899994, + 11.535 + ], + [ + 215.78001, + 373.7, + 5.5599976, + 11.535 + ], + [ + 220.38, + 373.7, + 4.4299927, + 11.535 + ], + [ + 224.78, + 373.7, + 3.8899994, + 11.535 + ], + [ + 228.67, + 373.7, + 2.5, + 11.535 + ], + [ + 233.76, + 373.7, + 4.4299927, + 11.535 + ], + [ + 238.15999, + 373.7, + 2.7700043, + 11.535 + ], + [ + 240.95, + 373.7, + 3.8899994, + 11.535 + ], + [ + 244.84, + 373.7, + 4.4299927, + 11.535 + ], + [ + 251.73999, + 373.7, + 5.0, + 11.535 + ], + [ + 256.74, + 373.7, + 5.0, + 11.535 + ], + [ + 264.24, + 373.7, + 5.0, + 11.535 + ], + [ + 269.24, + 373.7, + 5.0, + 11.535 + ], + [ + 274.24, + 373.7, + 2.769989, + 11.535 + ], + [ + 277.02997, + 373.7, + 5.0, + 11.535 + ], + [ + 282.02997, + 373.7, + 2.769989, + 11.535 + ], + [ + 284.81995, + 373.7, + 5.0, + 11.535 + ], + [ + 289.81995, + 373.7, + 5.0, + 11.535 + ], + [ + 297.31995, + 373.7, + 3.3299866, + 11.535 + ], + [ + 300.61993, + 373.7, + 3.8900146, + 11.535 + ], + [ + 304.50995, + 373.7, + 4.4299927, + 11.535 + ], + [ + 308.90994, + 373.7, + 2.769989, + 11.535 + ], + [ + 311.69992, + 373.7, + 5.0, + 11.535 + ], + [ + 316.69992, + 373.7, + 5.0, + 11.535 + ], + [ + 321.69992, + 373.7, + 4.4299927, + 11.535 + ], + [ + 326.0999, + 373.7, + 5.0, + 11.535 + ], + [ + 331.1899, + 373.7, + 3.3299866, + 11.535 + ] + ] + }, + { + "id": 93, + "stringIdxToPositionIdx": [], + "positions": [] + }, + { + "id": 94, + "stringIdxToPositionIdx": [], + "positions": [] + }, + { + "id": 95, + "stringIdxToPositionIdx": [], + "positions": [] + }, + { + "id": 96, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 97, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 98, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 99, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 100, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 101, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 102, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 103, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 104, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 722.1, + 7.3200035, + 12.642 + ], + [ + 64.096, + 722.1, + 6.0, + 12.642 + ], + [ + 70.096, + 722.1, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 722.1, + 4.6679993, + 12.642 + ], + [ + 81.088, + 722.1, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 722.1, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 722.1, + 5.316002, + 12.642 + ], + [ + 100.383995, + 722.1, + 6.671997, + 12.642 + ], + [ + 107.06799, + 722.1, + 5.316002, + 12.642 + ], + [ + 112.371994, + 722.1, + 6.0, + 12.642 + ], + [ + 118.371994, + 722.1, + 5.316002, + 12.642 + ], + [ + 123.675995, + 722.1, + 3.9960022, + 12.642 + ], + [ + 127.768, + 722.1, + 8.663994, + 12.642 + ], + [ + 136.456, + 722.1, + 5.3159943, + 12.642 + ], + [ + 141.76, + 722.1, + 5.3159943, + 12.642 + ], + [ + 147.064, + 722.1, + 6.0, + 12.642 + ], + [ + 153.064, + 722.1, + 5.3159943, + 12.642 + ], + [ + 158.368, + 722.1, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 105, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 106, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 107, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 10, + 11, + 12, + 13, + 14, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 21, + 22, + 23, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 36, + 37, + 38, + 39, + 40, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 54, + 55, + 56, + 57, + 58, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 74, + 75, + 76, + 77, + 78, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 84, + 85, + 86, + 87, + 88, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 164, + 165, + 166, + 167, + 168, + 168, + 169, + 170, + 170, + 171, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182 + ], + "positions": [ + [ + 56.8, + 150.00003, + 8.663998, + 12.642 + ], + [ + 65.404, + 150.00003, + 6.0, + 12.642 + ], + [ + 71.404, + 150.00003, + 6.0, + 12.642 + ], + [ + 77.404, + 150.00003, + 3.3239975, + 12.642 + ], + [ + 83.787994, + 150.00003, + 3.9960022, + 12.642 + ], + [ + 87.784, + 150.00003, + 5.316002, + 12.642 + ], + [ + 93.088, + 150.00003, + 6.0, + 12.642 + ], + [ + 99.088, + 150.00003, + 5.316002, + 12.642 + ], + [ + 104.392, + 150.00003, + 5.316002, + 12.642 + ], + [ + 109.696, + 150.00003, + 3.3239975, + 12.642 + ], + [ + 116.079994, + 150.00003, + 6.0, + 12.642 + ], + [ + 122.079994, + 150.00003, + 5.316002, + 12.642 + ], + [ + 127.383995, + 150.00003, + 3.9959946, + 12.642 + ], + [ + 131.37999, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 139.68399, + 150.00003, + 6.0, + 12.642 + ], + [ + 145.68399, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 150.98799, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 156.37599, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 161.68, + 150.00003, + 6.0, + 12.642 + ], + [ + 167.68, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 172.372, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 180.676, + 150.00003, + 6.0, + 12.642 + ], + [ + 186.676, + 150.00003, + 3.9960022, + 12.642 + ], + [ + 193.672, + 150.00003, + 9.324005, + 12.642 + ], + [ + 202.972, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 206.272, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 210.964, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 215.656, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 218.95601, + 150.00003, + 6.0, + 12.642 + ], + [ + 224.95601, + 150.00003, + 6.0, + 12.642 + ], + [ + 233.95601, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 238.64801, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 243.95201, + 150.00003, + 5.3159943, + 12.642 + ], + [ + 249.25601, + 150.00003, + 6.0, + 12.642 + ], + [ + 255.25601, + 150.00003, + 6.0, + 12.642 + ], + [ + 261.256, + 150.00003, + 6.0, + 12.642 + ], + [ + 270.34003, + 150.00003, + 6.0, + 12.642 + ], + [ + 276.34003, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 281.64404, + 150.00003, + 6.0, + 12.642 + ], + [ + 287.64404, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 293.94406, + 150.00003, + 6.671997, + 12.642 + ], + [ + 300.62805, + 150.00003, + 6.0, + 12.642 + ], + [ + 306.62805, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 311.93207, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 317.23608, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 320.5361, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 325.84012, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 330.5321, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 336.9161, + 150.00003, + 10.667999, + 12.642 + ], + [ + 347.6081, + 150.00003, + 6.0, + 12.642 + ], + [ + 353.6081, + 150.00003, + 6.0, + 12.642 + ], + [ + 359.5121, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 364.20407, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 369.5081, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 375.8921, + 150.00003, + 8.664001, + 12.642 + ], + [ + 384.58008, + 150.00003, + 9.324005, + 12.642 + ], + [ + 393.8801, + 150.00003, + 6.0, + 12.642 + ], + [ + 399.8801, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 406.1801, + 150.00003, + 7.9920044, + 12.642 + ], + [ + 414.17212, + 150.00003, + 6.0, + 12.642 + ], + [ + 420.17212, + 150.00003, + 6.0, + 12.642 + ], + [ + 426.17212, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 430.8641, + 150.00003, + 6.0, + 12.642 + ], + [ + 436.8641, + 150.00003, + 9.324005, + 12.642 + ], + [ + 446.16412, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 451.46814, + 150.00003, + 3.9960022, + 12.642 + ], + [ + 458.46414, + 150.00003, + 6.671997, + 12.642 + ], + [ + 465.14813, + 150.00003, + 3.9960022, + 12.642 + ], + [ + 469.14413, + 150.00003, + 6.0, + 12.642 + ], + [ + 475.14413, + 150.00003, + 6.0, + 12.642 + ], + [ + 481.14413, + 150.00003, + 6.0, + 12.642 + ], + [ + 487.14413, + 150.00003, + 5.3160095, + 12.642 + ], + [ + 492.44815, + 150.00003, + 3.3240051, + 12.642 + ], + [ + 495.74817, + 150.00003, + 4.6679993, + 12.642 + ], + [ + 56.8, + 136.20004, + 8.663998, + 12.642 + ], + [ + 65.404, + 136.20004, + 6.0, + 12.642 + ], + [ + 71.404, + 136.20004, + 6.0, + 12.642 + ], + [ + 77.404, + 136.20004, + 3.3239975, + 12.642 + ], + [ + 83.787994, + 136.20004, + 3.9960022, + 12.642 + ], + [ + 87.784, + 136.20004, + 5.316002, + 12.642 + ], + [ + 93.088, + 136.20004, + 6.0, + 12.642 + ], + [ + 99.088, + 136.20004, + 5.316002, + 12.642 + ], + [ + 104.392, + 136.20004, + 5.316002, + 12.642 + ], + [ + 109.696, + 136.20004, + 3.3239975, + 12.642 + ], + [ + 116.079994, + 136.20004, + 6.0, + 12.642 + ], + [ + 122.079994, + 136.20004, + 5.316002, + 12.642 + ], + [ + 127.383995, + 136.20004, + 3.9959946, + 12.642 + ], + [ + 131.37999, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 139.68399, + 136.20004, + 6.0, + 12.642 + ], + [ + 145.68399, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 150.98799, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 156.37599, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 161.68, + 136.20004, + 6.0, + 12.642 + ], + [ + 167.68, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 172.372, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 180.676, + 136.20004, + 9.324005, + 12.642 + ], + [ + 189.976, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 193.276, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 197.968, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 202.66, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 205.96, + 136.20004, + 6.0, + 12.642 + ], + [ + 211.96, + 136.20004, + 6.0, + 12.642 + ], + [ + 220.96, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 225.65201, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 230.95601, + 136.20004, + 5.3159943, + 12.642 + ], + [ + 236.26001, + 136.20004, + 6.0, + 12.642 + ], + [ + 242.26001, + 136.20004, + 6.0, + 12.642 + ], + [ + 248.26001, + 136.20004, + 6.0, + 12.642 + ], + [ + 257.344, + 136.20004, + 6.0, + 12.642 + ], + [ + 263.344, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 268.648, + 136.20004, + 6.0, + 12.642 + ], + [ + 274.552, + 136.20004, + 8.664001, + 12.642 + ], + [ + 283.24, + 136.20004, + 6.0, + 12.642 + ], + [ + 289.24, + 136.20004, + 3.9960022, + 12.642 + ], + [ + 293.236, + 136.20004, + 6.0, + 12.642 + ], + [ + 299.236, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 305.62, + 136.20004, + 6.671997, + 12.642 + ], + [ + 312.304, + 136.20004, + 6.0, + 12.642 + ], + [ + 318.304, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 323.608, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 328.91202, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 332.21204, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 337.51605, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 342.20804, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 348.59204, + 136.20004, + 10.667999, + 12.642 + ], + [ + 359.18805, + 136.20004, + 6.0, + 12.642 + ], + [ + 365.18805, + 136.20004, + 6.0, + 12.642 + ], + [ + 371.18805, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 375.88004, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 381.18405, + 136.20004, + 3.0, + 12.642 + ], + [ + 387.18405, + 136.20004, + 7.9920044, + 12.642 + ], + [ + 395.17606, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 400.48007, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 405.17206, + 136.20004, + 6.0, + 12.642 + ], + [ + 411.17206, + 136.20004, + 6.0, + 12.642 + ], + [ + 417.17206, + 136.20004, + 3.9960022, + 12.642 + ], + [ + 421.16806, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 426.47208, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 431.7761, + 136.20004, + 4.6679993, + 12.642 + ], + [ + 439.46808, + 136.20004, + 8.664001, + 12.642 + ], + [ + 448.15607, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 453.46008, + 136.20004, + 6.0, + 12.642 + ], + [ + 459.46008, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 464.7641, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 468.06412, + 136.20004, + 6.0, + 12.642 + ], + [ + 474.06412, + 136.20004, + 6.0, + 12.642 + ], + [ + 480.14813, + 136.20004, + 9.324005, + 12.642 + ], + [ + 489.44815, + 136.20004, + 5.3160095, + 12.642 + ], + [ + 494.75217, + 136.20004, + 6.0, + 12.642 + ], + [ + 500.75217, + 136.20004, + 3.3240051, + 12.642 + ], + [ + 56.8, + 122.400055, + 8.663998, + 12.642 + ], + [ + 65.404, + 122.400055, + 6.0, + 12.642 + ], + [ + 71.404, + 122.400055, + 9.3239975, + 12.642 + ], + [ + 80.787994, + 122.400055, + 3.3239975, + 12.642 + ], + [ + 84.08799, + 122.400055, + 6.0, + 12.642 + ], + [ + 90.08799, + 122.400055, + 3.3239975, + 12.642 + ], + [ + 93.387985, + 122.400055, + 4.6679993, + 12.642 + ], + [ + 98.07999, + 122.400055, + 3.3239975, + 12.642 + ], + [ + 101.37998, + 122.400055, + 3.9960022, + 12.642 + ], + [ + 105.375984, + 122.400055, + 5.316002, + 12.642 + ], + [ + 110.763985, + 122.400055, + 3.3239975, + 12.642 + ], + [ + 114.06398, + 122.400055, + 3.3239975, + 12.642 + ], + [ + 117.363976, + 122.400055, + 6.0, + 12.642 + ], + [ + 123.363976, + 122.400055, + 6.0000076, + 12.642 + ], + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 108, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 109, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 110, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 111, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 15, + 16, + 17, + 18, + 19, + 20, + 20, + 21, + 22, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 30, + 31, + 32, + 33, + 34, + 34, + 35, + 36, + 37, + 38, + 38, + 39, + 40, + 40, + 41, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ], + "positions": [ + [ + 56.8, + 155.30002, + 6.672001, + 12.642 + ], + [ + 63.484, + 155.30002, + 7.991997, + 12.642 + ], + [ + 71.38, + 155.30002, + 8.664001, + 12.642 + ], + [ + 80.068, + 155.30002, + 8.664001, + 12.642 + ], + [ + 88.756004, + 155.30002, + 8.664001, + 12.642 + ], + [ + 100.1, + 155.30002, + 8.664001, + 12.642 + ], + [ + 108.788, + 155.30002, + 9.3239975, + 12.642 + ], + [ + 118.088, + 155.30002, + 11.315994, + 12.642 + ], + [ + 129.392, + 155.30002, + 7.3200073, + 12.642 + ], + [ + 136.688, + 155.30002, + 7.9920044, + 12.642 + ], + [ + 144.68001, + 155.30002, + 7.9920044, + 12.642 + ], + [ + 152.67201, + 155.30002, + 7.9920044, + 12.642 + ], + [ + 160.66402, + 155.30002, + 4.6679993, + 12.642 + ], + [ + 165.35602, + 155.30002, + 9.324005, + 12.642 + ], + [ + 174.65602, + 155.30002, + 8.664001, + 12.642 + ], + [ + 186.44002, + 155.30002, + 8.664001, + 12.642 + ], + [ + 195.04402, + 155.30002, + 8.664001, + 12.642 + ], + [ + 202.84402, + 155.30002, + 7.9920044, + 12.642 + ], + [ + 210.83603, + 155.30002, + 7.9920044, + 12.642 + ], + [ + 218.82803, + 155.30002, + 3.9960022, + 12.642 + ], + [ + 236.8, + 155.30002, + 6.0, + 12.642 + ], + [ + 242.8, + 155.30002, + 6.0, + 12.642 + ], + [ + 251.8, + 155.30002, + 8.663986, + 12.642 + ], + [ + 260.48798, + 155.30002, + 5.3160095, + 12.642 + ], + [ + 265.792, + 155.30002, + 5.3160095, + 12.642 + ], + [ + 271.096, + 155.30002, + 5.3160095, + 12.642 + ], + [ + 276.40002, + 155.30002, + 9.324005, + 12.642 + ], + [ + 285.70004, + 155.30002, + 6.0, + 12.642 + ], + [ + 291.70004, + 155.30002, + 5.3160095, + 12.642 + ], + [ + 297.00406, + 155.30002, + 3.9960022, + 12.642 + ], + [ + 304.09607, + 155.30002, + 6.0, + 12.642 + ], + [ + 310.09607, + 155.30002, + 6.0, + 12.642 + ], + [ + 316.09607, + 155.30002, + 6.0, + 12.642 + ], + [ + 322.09607, + 155.30002, + 6.0, + 12.642 + ], + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 112, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + }, + { + "id": 113, + "stringIdxToPositionIdx": [ + 0, + 1, + 2, + 3, + 4, + 4, + 5, + 6, + 6, + 7, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "positions": [ + [ + 56.8, + 57.30002, + 7.3200035, + 12.642 + ], + [ + 64.096, + 57.30002, + 6.0, + 12.642 + ], + [ + 70.096, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 73.395996, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 81.088, + 57.30002, + 3.3239975, + 12.642 + ], + [ + 84.38799, + 57.30002, + 4.6679993, + 12.642 + ], + [ + 92.079994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 100.383995, + 57.30002, + 6.671997, + 12.642 + ], + [ + 107.06799, + 57.30002, + 5.316002, + 12.642 + ], + [ + 112.371994, + 57.30002, + 6.0, + 12.642 + ], + [ + 118.371994, + 57.30002, + 5.316002, + 12.642 + ], + [ + 123.675995, + 57.30002, + 3.9960022, + 12.642 + ], + [ + 127.768, + 57.30002, + 6.6720047, + 12.642 + ], + [ + 134.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 140.368, + 57.30002, + 6.0, + 12.642 + ], + [ + 146.368, + 57.30002, + 3.3240051, + 12.642 + ], + [ + 149.668, + 57.30002, + 5.3159943, + 12.642 + ], + [ + 154.972, + 57.30002, + 3.9960022, + 12.642 + ] + ] + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_STRUCTURE.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_STRUCTURE.json new file mode 100644 index 000000000..407e88e26 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_STRUCTURE.json @@ -0,0 +1,2946 @@ +{ + "root": { + "type": "DOCUMENT", + "treeId": [], + "atomicBlockIds": [], + "pageNumbers": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "properties": {}, + "children": [ + { + "type": "SECTION", + "treeId": [ + 0 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 0, + 0 + ], + "atomicBlockIds": [ + 0 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 0, + 1 + ], + "atomicBlockIds": [ + 1 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 1 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 1, + 0 + ], + "atomicBlockIds": [ + 2 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 1, + 1 + ], + "atomicBlockIds": [ + 3 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 1, + 2 + ], + "atomicBlockIds": [ + 4 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "IMAGE", + "treeId": [ + 1, + 3 + ], + "atomicBlockIds": [ + 5 + ], + "pageNumbers": [ + 1 + ], + "properties": { + "representationHash": "FFFFEF1C7F78F1E78F3EFFFFF", + "position": "177.000000;470.000000;258.000000;237.000000", + "id": "aa4998f9f3418380acf643578529be00", + "imageType": "LOGO", + "transparent": "false" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 2 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 2, + 0 + ], + "atomicBlockIds": [ + 6 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 2, + 1 + ], + "atomicBlockIds": [ + 7 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 2, + 2 + ], + "atomicBlockIds": [ + 8 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 3 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 3, + 0 + ], + "atomicBlockIds": [ + 9 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 3, + 1 + ], + "atomicBlockIds": [ + 10 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SUPER_SECTION", + "treeId": [ + 4 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 4, + 0 + ], + "atomicBlockIds": [ + 11 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "SECTION", + "treeId": [ + 4, + 1 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [ + { + "type": "PARAGRAPH", + "treeId": [ + 4, + 1, + 0 + ], + "atomicBlockIds": [ + 12 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 4, + 2 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [ + { + "type": "TABLE", + "treeId": [ + 4, + 2, + 0 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 2 + ], + "properties": { + "numberOfCols": "5", + "numberOfRows": "4" + }, + "children": [ + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 0 + ], + "atomicBlockIds": [ + 13 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "0", + "bBox": "56.700001;358.049988;72.199993;17.700012", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 1 + ], + "atomicBlockIds": [ + 14 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "1", + "bBox": "128.899994;358.049988;71.700012;17.700012", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 2 + ], + "atomicBlockIds": [ + 15 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "2", + "bBox": "200.600006;358.049988;53.899994;17.700012", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 3 + ], + "atomicBlockIds": [ + 16 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "3", + "bBox": "254.500000;358.049988;201.000000;17.700012", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 4 + ], + "atomicBlockIds": [ + 17 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "4", + "bBox": "455.500000;358.049988;99.799988;17.700012", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 5 + ], + "atomicBlockIds": [ + 18 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "0", + "bBox": "56.700001;328.350006;72.199993;29.699982", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 6 + ], + "atomicBlockIds": [ + 19 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "1", + "bBox": "128.899994;328.350006;71.700012;29.699982", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 7 + ], + "atomicBlockIds": [ + 20 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "2", + "bBox": "200.600006;328.350006;53.899994;29.699982", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 8 + ], + "atomicBlockIds": [ + 21 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "3", + "bBox": "254.500000;328.350006;201.000000;29.699982", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 9 + ], + "atomicBlockIds": [ + 22 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "4", + "bBox": "455.500000;328.350006;99.799988;29.699982", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 10 + ], + "atomicBlockIds": [ + 23 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "0", + "bBox": "56.700001;298.549988;72.199993;29.800018", + "header": "false", + "row": "2" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 11 + ], + "atomicBlockIds": [ + 24 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "1", + "bBox": "128.899994;298.549988;71.700012;29.800018", + "header": "false", + "row": "2" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 12 + ], + "atomicBlockIds": [ + 25 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "2", + "bBox": "200.600006;298.549988;53.899994;29.800018", + "header": "false", + "row": "2" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 13 + ], + "atomicBlockIds": [ + 26 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "3", + "bBox": "254.500000;298.549988;201.000000;29.800018", + "header": "false", + "row": "2" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 14 + ], + "atomicBlockIds": [ + 27 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "4", + "bBox": "455.500000;298.549988;99.799988;29.800018", + "header": "false", + "row": "2" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 15 + ], + "atomicBlockIds": [ + 28 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "0", + "bBox": "56.700001;268.850006;72.199993;29.699982", + "header": "false", + "row": "3" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 16 + ], + "atomicBlockIds": [ + 29 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "1", + "bBox": "128.899994;268.850006;71.700012;29.699982", + "header": "false", + "row": "3" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 17 + ], + "atomicBlockIds": [ + 30 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "2", + "bBox": "200.600006;268.850006;53.899994;29.699982", + "header": "false", + "row": "3" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 18 + ], + "atomicBlockIds": [ + 31 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "3", + "bBox": "254.500000;268.850006;201.000000;29.699982", + "header": "false", + "row": "3" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 4, + 2, + 0, + 19 + ], + "atomicBlockIds": [ + 32 + ], + "pageNumbers": [ + 2 + ], + "properties": { + "col": "4", + "bBox": "455.500000;268.850006;99.799988;29.699982", + "header": "false", + "row": "3" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 5 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 5, + 0 + ], + "atomicBlockIds": [ + 33 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 5, + 1 + ], + "atomicBlockIds": [ + 34 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 5, + 2 + ], + "atomicBlockIds": [ + 35 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 6 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 6, + 0 + ], + "atomicBlockIds": [ + 36 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 6, + 1 + ], + "atomicBlockIds": [ + 37 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 7 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 7, + 0 + ], + "atomicBlockIds": [ + 38 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 7, + 1 + ], + "atomicBlockIds": [ + 39 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 8 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 8, + 0 + ], + "atomicBlockIds": [ + 40 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 8, + 1 + ], + "atomicBlockIds": [ + 41 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 9 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 9, + 0 + ], + "atomicBlockIds": [ + 42 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 10 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 10, + 0 + ], + "atomicBlockIds": [ + 43 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 10, + 1 + ], + "atomicBlockIds": [ + 44 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 10, + 2 + ], + "atomicBlockIds": [ + 45 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 11 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 11, + 0 + ], + "atomicBlockIds": [ + 46 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 11, + 1 + ], + "atomicBlockIds": [ + 47 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 12 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 12, + 0 + ], + "atomicBlockIds": [ + 48 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 12, + 1 + ], + "atomicBlockIds": [ + 49 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SUPER_SECTION", + "treeId": [ + 13 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 13, + 0 + ], + "atomicBlockIds": [ + 50 + ], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "SECTION", + "treeId": [ + 13, + 1 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [ + { + "type": "PARAGRAPH", + "treeId": [ + 13, + 1, + 0 + ], + "atomicBlockIds": [ + 51 + ], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 13, + 2 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [ + { + "type": "TABLE", + "treeId": [ + 13, + 2, + 0 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 5 + ], + "properties": { + "numberOfCols": "2", + "numberOfRows": "2" + }, + "children": [ + { + "type": "TABLE_CELL", + "treeId": [ + 13, + 2, + 0, + 0 + ], + "atomicBlockIds": [ + 52 + ], + "pageNumbers": [ + 5 + ], + "properties": { + "col": "0", + "bBox": "56.700001;631.049988;249.299999;19.400024", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 13, + 2, + 0, + 1 + ], + "atomicBlockIds": [ + 53 + ], + "pageNumbers": [ + 5 + ], + "properties": { + "col": "1", + "bBox": "306.000000;631.049988;249.299988;19.400024", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 13, + 2, + 0, + 2 + ], + "atomicBlockIds": [ + 54 + ], + "pageNumbers": [ + 5 + ], + "properties": { + "col": "0", + "bBox": "56.700001;397.850006;249.299999;233.199982", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 13, + 2, + 0, + 3 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 5 + ], + "properties": { + "col": "1", + "bBox": "306.000000;397.850006;249.299988;233.199982", + "header": "false", + "row": "1" + }, + "children": [ + { + "type": "PARAGRAPH", + "treeId": [ + 13, + 2, + 0, + 3, + 0 + ], + "atomicBlockIds": [ + 55 + ], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 13, + 2, + 0, + 3, + 1 + ], + "atomicBlockIds": [ + 56 + ], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SUPER_SECTION", + "treeId": [ + 14 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 14, + 0 + ], + "atomicBlockIds": [ + 57 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "SECTION", + "treeId": [ + 14, + 1 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [ + { + "type": "PARAGRAPH", + "treeId": [ + 14, + 1, + 0 + ], + "atomicBlockIds": [ + 58 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SUPER_SECTION", + "treeId": [ + 14, + 2 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 14, + 2, + 0 + ], + "atomicBlockIds": [ + 59 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 14, + 2, + 1 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [ + { + "type": "PARAGRAPH", + "treeId": [ + 14, + 2, + 1, + 0 + ], + "atomicBlockIds": [ + 60 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 14, + 2, + 2 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [ + { + "type": "TABLE", + "treeId": [ + 14, + 2, + 2, + 0 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": { + "numberOfCols": "2", + "numberOfRows": "2" + }, + "children": [ + { + "type": "TABLE_CELL", + "treeId": [ + 14, + 2, + 2, + 0, + 0 + ], + "atomicBlockIds": [ + 61 + ], + "pageNumbers": [ + 6 + ], + "properties": { + "col": "0", + "bBox": "56.700001;435.450012;249.299999;19.399994", + "header": "false", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 14, + 2, + 2, + 0, + 1 + ], + "atomicBlockIds": [ + 62 + ], + "pageNumbers": [ + 6 + ], + "properties": { + "col": "1", + "bBox": "306.000000;435.450012;249.299988;19.399994", + "header": "true", + "row": "0" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 14, + 2, + 2, + 0, + 2 + ], + "atomicBlockIds": [ + 63 + ], + "pageNumbers": [ + 6 + ], + "properties": { + "col": "0", + "bBox": "56.700001;202.250000;249.299999;233.200012", + "header": "false", + "row": "1" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "TABLE_CELL", + "treeId": [ + 14, + 2, + 2, + 0, + 3 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 6 + ], + "properties": { + "col": "1", + "bBox": "306.000000;202.250000;249.299988;233.200012", + "header": "false", + "row": "1" + }, + "children": [ + { + "type": "PARAGRAPH", + "treeId": [ + 14, + 2, + 2, + 0, + 3, + 0 + ], + "atomicBlockIds": [ + 64 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 14, + 2, + 2, + 0, + 3, + 1 + ], + "atomicBlockIds": [ + 65 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 15 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 15, + 0 + ], + "atomicBlockIds": [ + 66 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 15, + 1 + ], + "atomicBlockIds": [ + 67 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 15, + 2 + ], + "atomicBlockIds": [ + 68 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 15, + 3 + ], + "atomicBlockIds": [ + 69 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 16 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 16, + 0 + ], + "atomicBlockIds": [ + 70 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 16, + 1 + ], + "atomicBlockIds": [ + 71 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 16, + 2 + ], + "atomicBlockIds": [ + 72 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 16, + 3 + ], + "atomicBlockIds": [ + 73 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 17 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 17, + 0 + ], + "atomicBlockIds": [ + 74 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 17, + 1 + ], + "atomicBlockIds": [ + 75 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 17, + 2 + ], + "atomicBlockIds": [ + 76 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 18 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 18, + 0 + ], + "atomicBlockIds": [ + 77 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 18, + 1 + ], + "atomicBlockIds": [ + 78 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 18, + 2 + ], + "atomicBlockIds": [ + 79 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 19 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 19, + 0 + ], + "atomicBlockIds": [ + 80 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 19, + 1 + ], + "atomicBlockIds": [ + 81 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 20 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 20, + 0 + ], + "atomicBlockIds": [ + 82 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 20, + 1 + ], + "atomicBlockIds": [ + 83 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 20, + 2 + ], + "atomicBlockIds": [ + 84 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 21 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 21, + 0 + ], + "atomicBlockIds": [ + 85 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 21, + 1 + ], + "atomicBlockIds": [ + 86 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 21, + 2 + ], + "atomicBlockIds": [ + 87 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 22 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 22, + 0 + ], + "atomicBlockIds": [ + 88 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 22, + 1 + ], + "atomicBlockIds": [ + 89 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 22, + 2 + ], + "atomicBlockIds": [ + 90 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "SECTION", + "treeId": [ + 23 + ], + "atomicBlockIds": [], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [ + { + "type": "HEADLINE", + "treeId": [ + 23, + 0 + ], + "atomicBlockIds": [ + 91 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM", + "OUTLINE" + ] + }, + { + "type": "PARAGRAPH", + "treeId": [ + 23, + 1 + ], + "atomicBlockIds": [ + 92 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "IMAGE", + "treeId": [ + 23, + 2 + ], + "atomicBlockIds": [ + 93 + ], + "pageNumbers": [ + 9 + ], + "properties": { + "representationHash": "FFFAF144801140802FFFFFFFF", + "position": "68.000000;472.000000;139.000000;61.000000", + "id": "90773d6509cedfcc7131235325d510e6", + "imageType": "SIGNATURE", + "transparent": "true" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "IMAGE", + "treeId": [ + 23, + 3 + ], + "atomicBlockIds": [ + 94 + ], + "pageNumbers": [ + 9 + ], + "properties": { + "representationHash": "FF300FDF3F78F1E78F1EFCFFF", + "position": "186.000000;217.000000;198.000000;142.000000", + "id": "92c8f8d848e734c10c1376b4a97b7b26", + "imageType": "LOGO", + "transparent": "false" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "IMAGE", + "treeId": [ + 23, + 4 + ], + "atomicBlockIds": [ + 95 + ], + "pageNumbers": [ + 9 + ], + "properties": { + "representationHash": "FFFF8F3E3C70FDE9DB9FFFFFF", + "position": "319.000000;471.000000;157.000000;73.000000", + "id": "6c1fea09a2ccdca17cf7c9d903ae781e", + "imageType": "SIGNATURE", + "transparent": "true" + }, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 24 + ], + "atomicBlockIds": [ + 96 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 25 + ], + "atomicBlockIds": [ + 97 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 26 + ], + "atomicBlockIds": [ + 98 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 27 + ], + "atomicBlockIds": [ + 99 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 28 + ], + "atomicBlockIds": [ + 100 + ], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 29 + ], + "atomicBlockIds": [ + 101 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 30 + ], + "atomicBlockIds": [ + 102 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 31 + ], + "atomicBlockIds": [ + 103 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "HEADER", + "treeId": [ + 32 + ], + "atomicBlockIds": [ + 104 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 33 + ], + "atomicBlockIds": [ + 105 + ], + "pageNumbers": [ + 1 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 34 + ], + "atomicBlockIds": [ + 106 + ], + "pageNumbers": [ + 2 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 35 + ], + "atomicBlockIds": [ + 107 + ], + "pageNumbers": [ + 3 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 36 + ], + "atomicBlockIds": [ + 108 + ], + "pageNumbers": [ + 4 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 37 + ], + "atomicBlockIds": [ + 109 + ], + "pageNumbers": [ + 5 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 38 + ], + "atomicBlockIds": [ + 110 + ], + "pageNumbers": [ + 6 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 39 + ], + "atomicBlockIds": [ + 111 + ], + "pageNumbers": [ + 7 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 40 + ], + "atomicBlockIds": [ + 112 + ], + "pageNumbers": [ + 8 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + }, + { + "type": "FOOTER", + "treeId": [ + 41 + ], + "atomicBlockIds": [ + 113 + ], + "pageNumbers": [ + 9 + ], + "properties": {}, + "children": [], + "engines": [ + "ALGORITHM" + ] + } + ], + "engines": [ + "ALGORITHM" + ] + } +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_TEXT.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_TEXT.json new file mode 100644 index 000000000..f8dc483c9 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/oldDocumentData/old.DOCUMENT_TEXT.json @@ -0,0 +1,1225 @@ +[ + { + "id": 0, + "page": 1, + "searchText": "Rule 0: Expand CBI Authors with firstname initials ", + "numberOnPage": 1, + "start": 0, + "end": 51, + "lineBreaks": [] + }, + { + "id": 1, + "page": 1, + "searchText": "F. Lastname, J. Doe, M. Mustermann Lastname M., Doe J. Mustermann M. ", + "numberOnPage": 2, + "start": 51, + "end": 120, + "lineBreaks": [ + 35 + ] + }, + { + "id": 2, + "page": 1, + "searchText": "Rule 1/2: Redact CBI Authors based on Dict ", + "numberOnPage": 3, + "start": 120, + "end": 163, + "lineBreaks": [] + }, + { + "id": 3, + "page": 1, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No ", + "numberOnPage": 4, + "start": 163, + "end": 234, + "lineBreaks": [ + 36 + ] + }, + { + "id": 4, + "page": 1, + "searchText": "David Ksenia Max Mustermann Ranya Eikenboom Charalampos Schenk Tanja Schmitt ← should not be annotated, not in Dictionary ", + "numberOnPage": 5, + "start": 234, + "end": 356, + "lineBreaks": [ + 13, + 28, + 44, + 63 + ] + }, + { + "id": 5, + "page": 1, + "searchText": "", + "numberOnPage": 6, + "start": 356, + "end": 356, + "lineBreaks": [] + }, + { + "id": 6, + "page": 2, + "searchText": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", + "numberOnPage": 1, + "start": 356, + "end": 406, + "lineBreaks": [] + }, + { + "id": 7, + "page": 2, + "searchText": "Dont Redact (mark as skipped) when Vertebrate Study is No Redact when Vertebrate Study is Yes ", + "numberOnPage": 2, + "start": 406, + "end": 500, + "lineBreaks": [ + 58 + ] + }, + { + "id": 8, + "page": 2, + "searchText": "Warnsveld, 7232 CX Warnsveld, Netherlands, NL Institut Industries, 33 Rue Jean Baffier, 18000 Bourges, France, FR 4-6 Chem. des Varennes, 18300 Saint-Satur, France, FR Lesdo Industries, Chäppelisträssli, 6078 Lungern, Switzerland Shlissel'burgskaya Ulitsa, Nizhny Novgorod Oblast, Russia, 603034, RU Karl Johans Gate 11, 0154 Oslo, Norway, NOR ← should not be annotated, not in Dictionary ", + "numberOnPage": 3, + "start": 500, + "end": 889, + "lineBreaks": [ + 46, + 114, + 168, + 230, + 300 + ] + }, + { + "id": 9, + "page": 2, + "searchText": "Rule 5: Do not redact genitive CBI_authors (Entries based on Dict) ", + "numberOnPage": 4, + "start": 889, + "end": 956, + "lineBreaks": [] + }, + { + "id": 10, + "page": 2, + "searchText": "Expand to Hint Clarissa’s Donut ← not added to Dict, should be not annotated Simpson's Tower ← added to Authors-Dict, should be annotated ", + "numberOnPage": 5, + "start": 956, + "end": 1094, + "lineBreaks": [ + 15, + 77 + ] + }, + { + "id": 11, + "page": 2, + "searchText": "Rule 6-11 (Authors Table) ", + "numberOnPage": 6, + "start": 1094, + "end": 1120, + "lineBreaks": [] + }, + { + "id": 12, + "page": 2, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No ", + "numberOnPage": 7, + "start": 1120, + "end": 1191, + "lineBreaks": [ + 36 + ] + }, + { + "id": 13, + "page": 2, + "searchText": "Reference No ", + "numberOnPage": 8, + "start": 1191, + "end": 1204, + "lineBreaks": [] + }, + { + "id": 14, + "page": 2, + "searchText": "Author(s) ", + "numberOnPage": 9, + "start": 1204, + "end": 1214, + "lineBreaks": [] + }, + { + "id": 15, + "page": 2, + "searchText": "Year ", + "numberOnPage": 10, + "start": 1214, + "end": 1219, + "lineBreaks": [] + }, + { + "id": 16, + "page": 2, + "searchText": "Title ", + "numberOnPage": 11, + "start": 1219, + "end": 1225, + "lineBreaks": [] + }, + { + "id": 17, + "page": 2, + "searchText": "Laboratory ", + "numberOnPage": 12, + "start": 1225, + "end": 1236, + "lineBreaks": [] + }, + { + "id": 18, + "page": 2, + "searchText": "BR2 /2 ", + "numberOnPage": 13, + "start": 1236, + "end": 1243, + "lineBreaks": [] + }, + { + "id": 19, + "page": 2, + "searchText": "Michael N. ", + "numberOnPage": 14, + "start": 1243, + "end": 1254, + "lineBreaks": [] + }, + { + "id": 20, + "page": 2, + "searchText": "1998 ", + "numberOnPage": 15, + "start": 1254, + "end": 1259, + "lineBreaks": [] + }, + { + "id": 21, + "page": 2, + "searchText": "The role of physical education in the school system. ", + "numberOnPage": 16, + "start": 1259, + "end": 1312, + "lineBreaks": [ + 45 + ] + }, + { + "id": 22, + "page": 2, + "searchText": "Weyland Industries ", + "numberOnPage": 17, + "start": 1312, + "end": 1331, + "lineBreaks": [] + }, + { + "id": 23, + "page": 2, + "searchText": "BR3 /5 ", + "numberOnPage": 18, + "start": 1331, + "end": 1338, + "lineBreaks": [] + }, + { + "id": 24, + "page": 2, + "searchText": "Funnarie B. ", + "numberOnPage": 19, + "start": 1338, + "end": 1350, + "lineBreaks": [] + }, + { + "id": 25, + "page": 2, + "searchText": "2001 ", + "numberOnPage": 20, + "start": 1350, + "end": 1355, + "lineBreaks": [] + }, + { + "id": 26, + "page": 2, + "searchText": "It should be illegal to produce and sell tobacco ", + "numberOnPage": 21, + "start": 1355, + "end": 1404, + "lineBreaks": [ + 41 + ] + }, + { + "id": 27, + "page": 2, + "searchText": "Authentic Diagnostics ", + "numberOnPage": 22, + "start": 1404, + "end": 1426, + "lineBreaks": [] + }, + { + "id": 28, + "page": 2, + "searchText": "ZZ/12 ", + "numberOnPage": 23, + "start": 1426, + "end": 1432, + "lineBreaks": [] + }, + { + "id": 29, + "page": 2, + "searchText": "Feuer A. ", + "numberOnPage": 24, + "start": 1432, + "end": 1441, + "lineBreaks": [] + }, + { + "id": 30, + "page": 2, + "searchText": "1989 ", + "numberOnPage": 25, + "start": 1441, + "end": 1446, + "lineBreaks": [] + }, + { + "id": 31, + "page": 2, + "searchText": "Social media is the real cause of teenage depression. ", + "numberOnPage": 26, + "start": 1446, + "end": 1500, + "lineBreaks": [ + 42 + ] + }, + { + "id": 32, + "page": 2, + "searchText": "Tyrell Corporation ", + "numberOnPage": 27, + "start": 1500, + "end": 1519, + "lineBreaks": [] + }, + { + "id": 33, + "page": 3, + "searchText": "Rule 12/13: Redact/Hint if CTL or BL was found ", + "numberOnPage": 1, + "start": 1519, + "end": 1566, + "lineBreaks": [] + }, + { + "id": 34, + "page": 3, + "searchText": "Redact when Vertebrate Study is Yes Hint when Vertebrate Study is No CTL/without dictionary entry CTL without Slash BL/without dictionary entry BL without Slash ", + "numberOnPage": 2, + "start": 1566, + "end": 1727, + "lineBreaks": [ + 36, + 69, + 98, + 116, + 144 + ] + }, + { + "id": 35, + "page": 3, + "searchText": "CTL/with dictionary entry 1234 with Slash CTL with dictionary entry 5678 without Slash BL/with dictionary entry 1234 with Slash BL with dictionary entry 5678 without Slash ", + "numberOnPage": 3, + "start": 1727, + "end": 1899, + "lineBreaks": [ + 42, + 87, + 128 + ] + }, + { + "id": 36, + "page": 3, + "searchText": "Rule 14/15: Redact and add recommendation for et al. ", + "numberOnPage": 4, + "start": 1899, + "end": 1952, + "lineBreaks": [] + }, + { + "id": 37, + "page": 3, + "searchText": "Redact Term “Desiree”, “Melanie” and add to Recommendation CBI Authors if Vertebrate Study is Yes & No Lorem ipsum dolor sit amet, consectetur adipiscing elit Desiree et al sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Melanie et al. Reference No 12345 Lorem ipsum. ", + "numberOnPage": 5, + "start": 1952, + "end": 2238, + "lineBreaks": [ + 103, + 206 + ] + }, + { + "id": 38, + "page": 3, + "searchText": "Rule 16/17: Add recommendation for Addresses in Test Organism/Animals sections ", + "numberOnPage": 6, + "start": 2238, + "end": 2317, + "lineBreaks": [ + 70 + ] + }, + { + "id": 39, + "page": 3, + "searchText": "Recommend only if Vertebrate Study is Yes, else do nothing Lorem ipsum dolor sit Species: Mouse; Source: Stark Industries ", + "numberOnPage": 7, + "start": 2317, + "end": 2439, + "lineBreaks": [ + 59, + 105 + ] + }, + { + "id": 40, + "page": 3, + "searchText": "Rule 16/17 (additional) negative Test; missing first Key ", + "numberOnPage": 8, + "start": 2439, + "end": 2496, + "lineBreaks": [] + }, + { + "id": 41, + "page": 3, + "searchText": "Nothing should happen because of missing first/second keyword according to the rules Dont redact here because of missing first key; Source: Omni Consumer Products Dont redact here because missing first keyword; Source Resources Development Administration ", + "numberOnPage": 9, + "start": 2496, + "end": 2751, + "lineBreaks": [ + 85, + 163 + ] + }, + { + "id": 42, + "page": 3, + "searchText": "Rule 16/17 (additional) negative Test; missing second Key ", + "numberOnPage": 10, + "start": 2751, + "end": 2809, + "lineBreaks": [] + }, + { + "id": 43, + "page": 4, + "searchText": "Rule 18: Do not redact Names and Addresses if Published Information found ", + "numberOnPage": 1, + "start": 2809, + "end": 2883, + "lineBreaks": [ + 68 + ] + }, + { + "id": 44, + "page": 4, + "searchText": "Do not redact Names and Addresses if Published Information found Lorem ipsum dolor sit amet Oxford University Press in voluptate velit esse cillum. ", + "numberOnPage": 2, + "start": 2883, + "end": 3031, + "lineBreaks": [ + 65 + ] + }, + { + "id": 45, + "page": 4, + "searchText": "Iakovos Geiger, Julian Ritter, Asya Lyon, Carina Madsen, Alexandra Häusler, Hanke Mendel, Ranya Eikenboom. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Min Kwok, Jun K., Tu Wong, Qiang Suen, Zhou Mah, Ning Liu, Lei W. Huang, Ru X. Wu ", + "numberOnPage": 3, + "start": 3031, + "end": 3331, + "lineBreaks": [ + 96, + 197, + 291 + ] + }, + { + "id": 46, + "page": 4, + "searchText": "Rule 19/20: Redacted PII Personal Identification Information based on Dict ", + "numberOnPage": 4, + "start": 3331, + "end": 3406, + "lineBreaks": [] + }, + { + "id": 47, + "page": 4, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP Sude Halide Nurullah Özgür U. Reyhan B. Rahim C. J. Alfred Xinyi Y. Tao Clara Siegfried ← not added to Dict, should be not annotated ", + "numberOnPage": 5, + "start": 3406, + "end": 3662, + "lineBreaks": [ + 36, + 71, + 123, + 144, + 160, + 169, + 182, + 195 + ] + }, + { + "id": 48, + "page": 4, + "searchText": "Rule 21/22: Redact Emails by RegEx ", + "numberOnPage": 6, + "start": 3662, + "end": 3697, + "lineBreaks": [] + }, + { + "id": 49, + "page": 4, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Duis aute irure dolor in library@outlook.com reprehenderit in voluptate gordonjcp@msn.com velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint dinther@comcast.net occaecat cupidatat non proident, sunt in kawasaki@me.com culpa qui officia deserunt mollit anim id est laborum. ", + "numberOnPage": 7, + "start": 3697, + "end": 4056, + "lineBreaks": [ + 36, + 71, + 167, + 270 + ] + }, + { + "id": 50, + "page": 5, + "searchText": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", + "numberOnPage": 1, + "start": 4056, + "end": 4123, + "lineBreaks": [] + }, + { + "id": 51, + "page": 5, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No “Contact-Information was found should be appears” ", + "numberOnPage": 2, + "start": 4123, + "end": 4244, + "lineBreaks": [ + 36, + 71 + ] + }, + { + "id": 52, + "page": 5, + "searchText": "Description Text ", + "numberOnPage": 3, + "start": 4244, + "end": 4261, + "lineBreaks": [] + }, + { + "id": 53, + "page": 5, + "searchText": "Contact Point ", + "numberOnPage": 4, + "start": 4261, + "end": 4275, + "lineBreaks": [] + }, + { + "id": 54, + "page": 5, + "searchText": "Duis aute irure dolor in reprehenderit in voluptate velit esse cillum Contact Point dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. ", + "numberOnPage": 5, + "start": 4275, + "end": 4503, + "lineBreaks": [ + 70, + 132, + 200 + ] + }, + { + "id": 55, + "page": 5, + "searchText": "Contact point: Central Research Industry Phone: +49 2113 2311 563 Fax: +49 2113 2311 560 Tel.: +81 764770164 Tel: +81 6653 44563 E-mail: Seriknowmobil@co.uk Email: maximiliamschmitt@arcor.de e-mail: maximiliamschmitt@t-online.de E-mail address: example@mail.com Contact: Maximiliam Schmitt Telephone number: +27414328992 Telephone No: +274 1432 8991 Fax number: +274 1432 8990 Telephone: +274 34223331 Phone No. +274 1432 8933 Contact: 493 1223 4592 European contact: European Central Institute Alternative contact: Emilia Lockhart Alternative contact: ", + "numberOnPage": 6, + "start": 4503, + "end": 5056, + "lineBreaks": [ + 41, + 66, + 89, + 109, + 129, + 157, + 191, + 229, + 262, + 290, + 321, + 350, + 377, + 402, + 427, + 450, + 495, + 532 + ] + }, + { + "id": 56, + "page": 5, + "searchText": "Cyberdyne Systems Tower Defense 121a Hong Kong, BT District ", + "numberOnPage": 7, + "start": 5056, + "end": 5116, + "lineBreaks": [ + 18, + 37 + ] + }, + { + "id": 57, + "page": 6, + "searchText": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", + "numberOnPage": 1, + "start": 5116, + "end": 5198, + "lineBreaks": [ + 73 + ] + }, + { + "id": 58, + "page": 6, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No “Applicant Information was found should be appears” ", + "numberOnPage": 2, + "start": 5198, + "end": 5321, + "lineBreaks": [ + 36, + 71 + ] + }, + { + "id": 59, + "page": 6, + "searchText": "Applicant ", + "numberOnPage": 3, + "start": 5321, + "end": 5331, + "lineBreaks": [] + }, + { + "id": 60, + "page": 6, + "searchText": "Name: Soylent Corporation Contact point: Riddley Scott Address: 359-21 Huam-dong Yongsan-gu Seoul, South Korea Phone: +82 122 34188 Fax: +82 122 34180 E-mail: food-industry@korea.com Contact: This is a special case, everything between this and the next keyword should be redacted Tel.: +275 5678 1234 132 ", + "numberOnPage": 4, + "start": 5331, + "end": 5636, + "lineBreaks": [ + 26, + 55, + 81, + 92, + 111, + 132, + 151, + 183, + 253, + 280 + ] + }, + { + "id": 61, + "page": 6, + "searchText": "Description Text ", + "numberOnPage": 5, + "start": 5636, + "end": 5653, + "lineBreaks": [] + }, + { + "id": 62, + "page": 6, + "searchText": "Applicant ", + "numberOnPage": 6, + "start": 5653, + "end": 5663, + "lineBreaks": [] + }, + { + "id": 63, + "page": 6, + "searchText": "Duis aute irure dolor in reprehenderit in voluptate velit esse cillum Contact Point dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. ", + "numberOnPage": 7, + "start": 5663, + "end": 5891, + "lineBreaks": [ + 70, + 132, + 200 + ] + }, + { + "id": 64, + "page": 6, + "searchText": "Contact point: Central Research Industry Phone: +49 2113 2311 563 Fax: +49 2113 2311 560 Tel.: +81 764770164 Tel: +81 6653 44563 E-mail: Seriknowmobil@co.uk Email: maximiliamschmitt@arcor.de e-mail: maximiliamschmitt@t-online.de E-mail address: example@mail.com Contact: Maximiliam Schmitt Telephone number: +27414328992 Telephone No: +274 1432 8991 Fax number: +274 1432 8990 Telephone: +274 34223331 Phone No. +274 1432 8933 Contact: 493 1223 4592 European contact: European Central Institute Alternative contact: Emilia Lockhart Alternative contact: ", + "numberOnPage": 8, + "start": 5891, + "end": 6444, + "lineBreaks": [ + 41, + 66, + 89, + 109, + 129, + 157, + 191, + 229, + 262, + 290, + 321, + 350, + 377, + 402, + 427, + 450, + 495, + 532 + ] + }, + { + "id": 65, + "page": 6, + "searchText": "Cyberdyne Systems Tower Defense 121a Hong Kong, BT District ", + "numberOnPage": 9, + "start": 6444, + "end": 6504, + "lineBreaks": [ + 18, + 37 + ] + }, + { + "id": 66, + "page": 7, + "searchText": "Rule 27/28: Redact contact Information (contains Producer) ", + "numberOnPage": 1, + "start": 6504, + "end": 6563, + "lineBreaks": [] + }, + { + "id": 67, + "page": 7, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No “Producer was found” should be appears ", + "numberOnPage": 2, + "start": 6563, + "end": 6673, + "lineBreaks": [ + 36, + 71 + ] + }, + { + "id": 68, + "page": 7, + "searchText": "Producer of the plant production ", + "numberOnPage": 3, + "start": 6673, + "end": 6706, + "lineBreaks": [] + }, + { + "id": 69, + "page": 7, + "searchText": "Name: Umbrella Corporation Contact: Jill Valentine Address: 359-21 Huam-dong Yongsan-gu Seoul, South Korea Phone: +82 122 34188 Fax: +82 122 34180 E-mail: pharma-industry@korea.com ", + "numberOnPage": 4, + "start": 6706, + "end": 6887, + "lineBreaks": [ + 27, + 51, + 77, + 88, + 107, + 128, + 147 + ] + }, + { + "id": 70, + "page": 7, + "searchText": "Rule 29/30/31/32: If Text contains \"AUTHORS:\" and \"COMPLETION DATES\" but not \"STUDY COMPLETION DATES\", then Redact between both ", + "numberOnPage": 5, + "start": 6887, + "end": 7015, + "lineBreaks": [ + 62, + 123 + ] + }, + { + "id": 71, + "page": 7, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No ", + "numberOnPage": 6, + "start": 7015, + "end": 7086, + "lineBreaks": [ + 36 + ] + }, + { + "id": 72, + "page": 7, + "searchText": "Study Report___ AUTHOR(S): Dr. Alan Grant ", + "numberOnPage": 7, + "start": 7086, + "end": 7128, + "lineBreaks": [ + 16 + ] + }, + { + "id": 73, + "page": 7, + "searchText": "COMPLETION DATE: 02 December 1997 ", + "numberOnPage": 8, + "start": 7128, + "end": 7162, + "lineBreaks": [] + }, + { + "id": 74, + "page": 7, + "searchText": "Rule 29/30/31/32: (additional) negative Test for Study completion dates ", + "numberOnPage": 9, + "start": 7162, + "end": 7234, + "lineBreaks": [] + }, + { + "id": 75, + "page": 7, + "searchText": "No Redaction should be appears here ", + "numberOnPage": 10, + "start": 7234, + "end": 7270, + "lineBreaks": [] + }, + { + "id": 76, + "page": 7, + "searchText": "Study Report___ AUTHOR(S): Dr. Alan Grant ", + "numberOnPage": 11, + "start": 7270, + "end": 7312, + "lineBreaks": [ + 16 + ] + }, + { + "id": 77, + "page": 8, + "searchText": "Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between ", + "numberOnPage": 1, + "start": 7312, + "end": 7411, + "lineBreaks": [ + 73 + ] + }, + { + "id": 78, + "page": 8, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No ", + "numberOnPage": 2, + "start": 7411, + "end": 7482, + "lineBreaks": [ + 36 + ] + }, + { + "id": 79, + "page": 8, + "searchText": "Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 ", + "numberOnPage": 3, + "start": 7482, + "end": 7593, + "lineBreaks": [ + 16, + 60 + ] + }, + { + "id": 80, + "page": 8, + "searchText": "Rule 35/36/37/38: ?? ", + "numberOnPage": 4, + "start": 7593, + "end": 7614, + "lineBreaks": [] + }, + { + "id": 81, + "page": 8, + "searchText": "Tba ", + "numberOnPage": 5, + "start": 7614, + "end": 7618, + "lineBreaks": [] + }, + { + "id": 82, + "page": 8, + "searchText": "Rule 39: Purity Hint ", + "numberOnPage": 6, + "start": 7618, + "end": 7639, + "lineBreaks": [] + }, + { + "id": 83, + "page": 8, + "searchText": "Add Purity as Hint when Percent-Numbers is there ", + "numberOnPage": 7, + "start": 7639, + "end": 7688, + "lineBreaks": [] + }, + { + "id": 84, + "page": 8, + "searchText": "Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce ", + "numberOnPage": 8, + "start": 7688, + "end": 8415, + "lineBreaks": [ + 16, + 45, + 75, + 105, + 169, + 231, + 293, + 356, + 419, + 481, + 543, + 566, + 612, + 659, + 706 + ] + }, + { + "id": 85, + "page": 9, + "searchText": "Rule 40: Ignore Dossier-Redaction if Confidentiality is not set ", + "numberOnPage": 1, + "start": 8415, + "end": 8479, + "lineBreaks": [] + }, + { + "id": 86, + "page": 9, + "searchText": "Dont redact Dossier-Redaction if Confidentiality is not set in file attributes ", + "numberOnPage": 2, + "start": 8479, + "end": 8558, + "lineBreaks": [] + }, + { + "id": 87, + "page": 9, + "searchText": "Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. ", + "numberOnPage": 3, + "start": 8558, + "end": 8688, + "lineBreaks": [ + 102 + ] + }, + { + "id": 88, + "page": 9, + "searchText": "Rule 41/42: Redact Signatures ", + "numberOnPage": 4, + "start": 8688, + "end": 8718, + "lineBreaks": [] + }, + { + "id": 89, + "page": 9, + "searchText": "Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No ", + "numberOnPage": 5, + "start": 8718, + "end": 8789, + "lineBreaks": [ + 36 + ] + }, + { + "id": 90, + "page": 9, + "searchText": "__________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller ", + "numberOnPage": 6, + "start": 8789, + "end": 8899, + "lineBreaks": [ + 54 + ] + }, + { + "id": 91, + "page": 9, + "searchText": "Rule 43: Redact Logo ", + "numberOnPage": 7, + "start": 8899, + "end": 8920, + "lineBreaks": [] + }, + { + "id": 92, + "page": 9, + "searchText": "Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) ", + "numberOnPage": 8, + "start": 8920, + "end": 8991, + "lineBreaks": [] + }, + { + "id": 93, + "page": 9, + "searchText": "", + "numberOnPage": 9, + "start": 8991, + "end": 8991, + "lineBreaks": [] + }, + { + "id": 94, + "page": 9, + "searchText": "", + "numberOnPage": 10, + "start": 8991, + "end": 8991, + "lineBreaks": [] + }, + { + "id": 95, + "page": 9, + "searchText": "", + "numberOnPage": 11, + "start": 8991, + "end": 8991, + "lineBreaks": [] + }, + { + "id": 96, + "page": 1, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 8991, + "end": 9013, + "lineBreaks": [] + }, + { + "id": 97, + "page": 2, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9013, + "end": 9035, + "lineBreaks": [] + }, + { + "id": 98, + "page": 3, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9035, + "end": 9057, + "lineBreaks": [] + }, + { + "id": 99, + "page": 4, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9057, + "end": 9079, + "lineBreaks": [] + }, + { + "id": 100, + "page": 5, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9079, + "end": 9101, + "lineBreaks": [] + }, + { + "id": 101, + "page": 6, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9101, + "end": 9123, + "lineBreaks": [] + }, + { + "id": 102, + "page": 7, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9123, + "end": 9145, + "lineBreaks": [] + }, + { + "id": 103, + "page": 8, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9145, + "end": 9167, + "lineBreaks": [] + }, + { + "id": 104, + "page": 9, + "searchText": "This is a Page-Header ", + "numberOnPage": 0, + "start": 9167, + "end": 9189, + "lineBreaks": [] + }, + { + "id": 105, + "page": 1, + "searchText": "This is a Page-Footer ", + "numberOnPage": 7, + "start": 9189, + "end": 9211, + "lineBreaks": [] + }, + { + "id": 106, + "page": 2, + "searchText": "This is a Page-Footer ", + "numberOnPage": 28, + "start": 9211, + "end": 9233, + "lineBreaks": [] + }, + { + "id": 107, + "page": 3, + "searchText": "Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer ", + "numberOnPage": 11, + "start": 9233, + "end": 9444, + "lineBreaks": [ + 87, + 174, + 189 + ] + }, + { + "id": 108, + "page": 4, + "searchText": "This is a Page-Footer ", + "numberOnPage": 8, + "start": 9444, + "end": 9466, + "lineBreaks": [] + }, + { + "id": 109, + "page": 5, + "searchText": "This is a Page-Footer ", + "numberOnPage": 8, + "start": 9466, + "end": 9488, + "lineBreaks": [] + }, + { + "id": 110, + "page": 6, + "searchText": "This is a Page-Footer ", + "numberOnPage": 10, + "start": 9488, + "end": 9510, + "lineBreaks": [] + }, + { + "id": 111, + "page": 7, + "searchText": "STUDY COMPLETION DATE: 02 December 1997 This is a Page-Footer ", + "numberOnPage": 12, + "start": 9510, + "end": 9572, + "lineBreaks": [ + 40 + ] + }, + { + "id": 112, + "page": 8, + "searchText": "This is a Page-Footer ", + "numberOnPage": 9, + "start": 9572, + "end": 9594, + "lineBreaks": [] + }, + { + "id": 113, + "page": 9, + "searchText": "This is a Page-Footer ", + "numberOnPage": 12, + "start": 9594, + "end": 9616, + "lineBreaks": [] + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-shared-api-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/model/dossiertemplate/dossier/file/FileType.java b/persistence-service-v1/persistence-service-shared-api-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/model/dossiertemplate/dossier/file/FileType.java index 52b3f14a3..bb00f3608 100644 --- a/persistence-service-v1/persistence-service-shared-api-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/model/dossiertemplate/dossier/file/FileType.java +++ b/persistence-service-v1/persistence-service-shared-api-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/model/dossiertemplate/dossier/file/FileType.java @@ -23,10 +23,14 @@ public enum FileType { VISUAL_LAYOUT(".json"), COMPONENTS(".json"), // document is split into 4 files, all should be overridden/deleted at the same time - DOCUMENT_TEXT(".json"), - DOCUMENT_STRUCTURE(".json"), - DOCUMENT_POSITION(".json"), - DOCUMENT_PAGES(".json"), + DOCUMENT_TEXT_OLD(".json"), + DOCUMENT_STRUCTURE_OLD(".json"), + DOCUMENT_POSITION_OLD(".json"), + DOCUMENT_PAGES_OLD(".json"), + DOCUMENT_TEXT(".proto"), + DOCUMENT_STRUCTURE(".proto"), + DOCUMENT_POSITION(".proto"), + DOCUMENT_PAGES(".proto"), DOCUMENT_CHUNKS(".json"), ENTITY_LOG(".json"), ENTITY_LOG_BAK(".json"), diff --git a/persistence-service-v1/persistence-service-shared-mongo-v1/build.gradle.kts b/persistence-service-v1/persistence-service-shared-mongo-v1/build.gradle.kts index e43bad3e8..fef1647eb 100644 --- a/persistence-service-v1/persistence-service-shared-mongo-v1/build.gradle.kts +++ b/persistence-service-v1/persistence-service-shared-mongo-v1/build.gradle.kts @@ -9,7 +9,9 @@ dependencies { api(project(":persistence-service-shared-api-v1")) api("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.2") api("com.google.guava:guava:31.1-jre") - api("com.knecon.fforesight:mongo-database-commons:0.13.0+RED9348.0") + api("com.knecon.fforesight:mongo-database-commons:0.13.0+RED9348.0") { + exclude(group = "com.iqser.red.commons", module = "storage-commons") + } api("org.springframework.boot:spring-boot-starter-data-mongodb:${springBootStarterVersion}") api("org.springframework.boot:spring-boot-starter-validation:3.1.3") testImplementation("com.iqser.red.commons:test-commons:2.1.0") diff --git a/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogDocumentUpdateService.java b/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogDocumentUpdateService.java index 8519af8d9..6cd2acc34 100644 --- a/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogDocumentUpdateService.java +++ b/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogDocumentUpdateService.java @@ -1,5 +1,8 @@ package com.iqser.red.service.persistence.service.v1.api.shared.mongo.service; +import java.util.ArrayList; +import java.util.List; + import org.bson.Document; import org.springframework.data.mongodb.core.MongoTemplate; import org.springframework.data.mongodb.core.query.Criteria; @@ -9,11 +12,14 @@ import org.springframework.stereotype.Service; import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.EntityLog; import com.iqser.red.service.persistence.service.v1.api.shared.mongo.document.EntityLogDocument; +import com.iqser.red.service.persistence.service.v1.api.shared.mongo.document.EntityLogEntryDocument; import com.iqser.red.service.persistence.service.v1.api.shared.mongo.mapper.EntityLogDocumentMapper; +import com.mongodb.DBRef; @Service public class EntityLogDocumentUpdateService { + public static final String ENTITY_LOG_ENTRY_DOCUMENTS = "entityLogEntryDocuments"; private final MongoTemplate mongoTemplate; private final EntityLogDocumentMapper mapper = EntityLogDocumentMapper.INSTANCE; @@ -25,10 +31,43 @@ public class EntityLogDocumentUpdateService { Document doc = new Document(); mongoTemplate.getConverter().write(mapper.toLogDocument(dossierId, fileId, entityLog), doc); - doc.remove("entityLogEntryDocuments"); + doc.remove(ENTITY_LOG_ENTRY_DOCUMENTS); + Update update = new Update(); doc.forEach(update::set); - mongoTemplate.updateFirst(Query.query(Criteria.where("_id").is(mapper.getLogId(dossierId, fileId))), update, EntityLogDocument.class); + mongoTemplate.updateFirst(getIdQuery(mapper.getLogId(dossierId, fileId)), update, EntityLogDocument.class); + } + + + public void addEntityLogEntryReferences(String entityLogId, List newEntries) { + + List dbRefs = convertEntriesToDbRefs(newEntries); + Update update = new Update().push(ENTITY_LOG_ENTRY_DOCUMENTS).each(dbRefs.toArray()); + mongoTemplate.updateFirst(getIdQuery(entityLogId), update, EntityLogDocument.class); + } + + public void removeEntityLogEntryReferences(String entityLogId, List entriesToRemove) { + + List dbRefs = convertEntriesToDbRefs(entriesToRemove); + Update update = new Update().pullAll(ENTITY_LOG_ENTRY_DOCUMENTS, dbRefs.toArray()); + mongoTemplate.updateFirst(getIdQuery(entityLogId), update, EntityLogDocument.class); + } + + + private static List convertEntriesToDbRefs(List entriesToRemove) { + + List dbRefs = new ArrayList<>(); + for (EntityLogEntryDocument entry : entriesToRemove) { + DBRef dbRef = new DBRef("entity-log-entries", entry.getId()); + dbRefs.add(dbRef); + } + return dbRefs; + } + + + private Query getIdQuery(String mapper) { + + return Query.query(Criteria.where("_id").is(mapper)); } } diff --git a/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogMongoService.java b/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogMongoService.java index b29f699cc..0d4e1d593 100644 --- a/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogMongoService.java +++ b/persistence-service-v1/persistence-service-shared-mongo-v1/src/main/java/com/iqser/red/service/persistence/service/v1/api/shared/mongo/service/EntityLogMongoService.java @@ -19,6 +19,7 @@ import com.iqser.red.service.persistence.service.v1.api.shared.mongo.mapper.Enti import com.iqser.red.service.persistence.service.v1.api.shared.mongo.repository.EntityLogDocumentRepository; import com.iqser.red.service.persistence.service.v1.api.shared.mongo.repository.EntityLogEntryDocumentCustomRepository; import com.iqser.red.service.persistence.service.v1.api.shared.mongo.repository.EntityLogEntryDocumentRepository; +import com.knecon.fforesight.tenantcommons.TenantContext; import lombok.RequiredArgsConstructor; @@ -49,10 +50,13 @@ public class EntityLogMongoService { EntityLogDocument entityLogDocument = entityLogDocumentRepository.save(mapper.toLogDocument(dossierId, fileId, entityLog)); - entityLogEntryDocumentRepository.saveAll(entityLog.getEntityLogEntry() - .stream() - .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogDocument.getId(), entityLogEntry)) - .toList()); + String tenantId = TenantContext.getTenantId(); + entityLog.getEntityLogEntry().parallelStream() + .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogDocument.getId(), entityLogEntry)) + .forEach(entity -> { + TenantContext.setTenantId(tenantId); + entityLogEntryDocumentRepository.save(entity); + }); } @@ -102,16 +106,13 @@ public class EntityLogMongoService { String entityLogId = mapper.getLogId(dossierId, fileId); - EntityLogDocument entityLogDocument = getEntityLogDocument(entityLogId); - List entityLogEntryDocuments = entityLogEntries.stream() .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogId, entityLogEntry)) .toList(); - entityLogDocument.getEntityLogEntryDocuments().addAll(entityLogEntryDocuments); - entityLogEntryDocumentRepository.insert(entityLogEntryDocuments); - entityLogDocumentRepository.save(entityLogDocument); + + entityLogDocumentUpdateService.addEntityLogEntryReferences(entityLogId, entityLogEntryDocuments); } @@ -119,16 +120,16 @@ public class EntityLogMongoService { String entityLogId = mapper.getLogId(dossierId, fileId); - EntityLogDocument entityLogDocument = getEntityLogDocument(entityLogId); - - List entityLogEntryDocuments = entityLogEntries.stream() + String tenantId = TenantContext.getTenantId(); + List entityLogEntryDocuments = entityLogEntries.parallelStream() .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogId, entityLogEntry)) + .peek(entity -> { + TenantContext.setTenantId(tenantId); + entityLogEntryDocumentRepository.save(entity); + }) .toList(); - entityLogDocument.getEntityLogEntryDocuments().addAll(entityLogEntryDocuments); - - entityLogEntryDocumentRepository.saveAll(entityLogEntryDocuments); - entityLogDocumentRepository.save(entityLogDocument); + entityLogDocumentUpdateService.addEntityLogEntryReferences(entityLogId, entityLogEntryDocuments); } @@ -136,9 +137,13 @@ public class EntityLogMongoService { String entityLogId = mapper.getLogId(dossierId, fileId); - entityLogEntryDocumentRepository.saveAll(entityLogEntries.stream() - .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogId, entityLogEntry)) - .toList()); + String tenantId = TenantContext.getTenantId(); + entityLogEntries.parallelStream() + .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogId, entityLogEntry)) + .forEach(entity -> { + TenantContext.setTenantId(tenantId); + entityLogEntryDocumentRepository.save(entity); + }); } @@ -146,16 +151,16 @@ public class EntityLogMongoService { String entityLogId = mapper.getLogId(dossierId, fileId); - EntityLogDocument entityLogDocument = getEntityLogDocument(entityLogId); - - List entityLogEntryDocuments = entityLogEntries.stream() + String tenantId = TenantContext.getTenantId(); + List entityLogEntryDocuments = entityLogEntries.parallelStream() .map(entityLogEntry -> mapper.toLogEntryDocument(entityLogId, entityLogEntry)) + .peek(entity -> { + TenantContext.setTenantId(tenantId); + entityLogEntryDocumentRepository.delete(entity); + }) .toList(); - entityLogDocument.getEntityLogEntryDocuments().removeAll(entityLogEntryDocuments); - - entityLogEntryDocumentRepository.deleteAll(entityLogEntryDocuments); - entityLogDocumentRepository.save(entityLogDocument); + entityLogDocumentUpdateService.removeEntityLogEntryReferences(entityLogId, entityLogEntryDocuments); }